-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscore.py
63 lines (49 loc) · 1.75 KB
/
score.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python3
import json
import operator
from pprint import pprint
'''
Reads results.json
Prints the vote count sorted and human readable to stdout
Writes the vote count unsorted to a json file
'''
with open("results.json",'r') as f:
ballots = json.load(f)
score = {}
score['entertainment'] = {}
score['gastsprekers'] = {}
score['workshops'] = {}
for key in ballots:
if 'entertainment' in ballots[key]:
for item in ballots[key]['entertainment']:
try:
score['entertainment'][item] += 1
except KeyError:
score['entertainment'][item] = 1
if 'gastsprekers' in ballots[key]:
for item in ballots[key]['gastsprekers']:
try:
score['gastsprekers'][item] += 1
except KeyError:
score['gastsprekers'][item] = 1
if 'workshops' in ballots[key]:
for item in ballots[key]['workshops']:
try:
score['workshops'][item] += 1
except KeyError:
score['workshops'][item] = 1
# print highscore
gastsprekers = sorted(score['gastsprekers'].items(), key=operator.itemgetter(1),reverse=True)
workshops = sorted(score['workshops'].items(), key=operator.itemgetter(1),reverse=True)
entertainment = sorted(score['entertainment'].items(), key=operator.itemgetter(1),reverse=True)
print("Gastsprekers:")
for item in gastsprekers:
print (str(item[1]) + " votes\t" + item[0].split("(")[0] )
print ("\nWorkshops:")
for item in workshops:
print (str(item[1]) + " votes\t" + item[0].split("(")[0] )
print ("\nEntertainment:")
for item in entertainment:
print (str(item[1]) + " votes\t" + item[0].split("(")[0] )
with open("score.json",'w') as f:
print (json.dumps(ballots), file=f)