Created
September 23, 2016 17:04
-
-
Save JacobFischer/dac5a991f9378453b87683415590b067 to your computer and use it in GitHub Desktop.
SIG-GAME Game vote formater
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This takes csv output from a Google Forms asking for game Rankings, and puts them into format for this website: | |
# http://www.cs.wustl.edu/~legrand/rbvote/calc.html | |
import csv | |
games = [] | |
first = True | |
ignore_columns = 2 | |
with open("data.csv", "r") as csvfile: | |
reader = csv.reader(csvfile) | |
for row in reader: | |
ballot = None | |
if not first: # we have read the first row, time to make a ballot | |
ballot = [[] for game in games] # a list of list, nested list is for equal preference levels | |
for j, col in enumerate(row): | |
col = col.replace(" ", "") | |
if j < ignore_columns: # first two rows are timestamp, and email | |
continue | |
if first: # first column, which is the games | |
game = col[col.find("[") + 1:col.find("]")] | |
games.append(game) | |
else: # it's a ballot | |
place = int(col[:-2]) - 1 # "1st" -> 0, , "2nd" -> 1, and so on | |
ballot[place].append(games[j - ignore_columns]) | |
if ballot: | |
formatted = [] | |
for choices in ballot: | |
if choices: | |
formatted.append(" = ".join(choices)) | |
print(" > ".join(formatted)) | |
first = False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment