-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencode_questions.py
45 lines (36 loc) · 1.05 KB
/
encode_questions.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
import csv
import json
import sys
questions_notballin = []
questions_ballin = []
with open(sys.argv[1], newline="") as csvfile:
reader = csv.reader(csvfile)
next(reader)
index = 0
for row in reader:
if len(row[-1]) > 0:
if len(row[0]) > 0:
question = {
"question": row[0],
"sortOrder": int(row[5]) if len(row[5]) > 0 else 0,
"shuffleAnswers": len(row[6]) > 0,
"index": index,
}
answers = []
points = next(reader)[1:5]
for ans in enumerate(row[1:5]):
if len(ans[1]) > 0:
answers.append({
"answer": ans[1],
"points": [point.strip().lower() for point in points[ans[0]].split(",")],
})
question["answers"] = answers
if row[-1] == "ballin":
questions_ballin.append(question)
else:
questions_notballin.append(question)
index += 1
with open("src/data/questions_notballin.json", "w") as file_notballin:
file_notballin.write(json.dumps(questions_notballin))
with open("src/data/questions_ballin.json", "w") as file_ballin:
file_ballin.write(json.dumps(questions_ballin))