This repository was archived by the owner on Apr 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathextra_credit_new.py
executable file
·126 lines (94 loc) · 3.91 KB
/
extra_credit_new.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/usr/bin/env python
# Usage: python extra_credit.py <results.tsv> <courses.csv>
"""
Output files explained:
- If a student has a number at the end of their line, it means they
competed in this division, and earned that score.
- If a student has 0, it means they either didn’t compete in that
division, or didn’t solve any questions.
- If an fsuid doesn’t have a score, firstname, or last name, it
means they completed the survey but did not show up to the contest
(or made some sort of mistake while registering)
orphans.csv explained at the bottom.
"""
from app.models import Team, Account, Course
import csv
import click
@click.command()
@click.argument('results_tsv', type=click.File('r'))
@click.argument('output_folder', type=str)
@click.argument('division', type=int)
def extra_credit(results_tsv, output_folder, division):
team_scores, user_scores = dict(), dict()
student_classes = dict()
class_files = dict()
names = dict()
def format_fsuid(account):
# Try and grab fsuid or email
fsuid = account.fsuid or account.email
# See if user is an idiot and put their fsu email in the 'fsuid' field
if 'my.fsu.edu' in fsuid:
fsuid = fsuid.split('@')[0]
# Make extra sure fsuids from accounts are lower case (see issue #37)
return fsuid.lower()
# Read the score for each team
print("Reading results_tsv...")
tsv = csv.reader(results_tsv, delimiter='\t')
next(tsv)
for row in tsv: # skip header line
teamid, solved = row[0], row[3]
team_scores[teamid] = solved
# Match competitors with questions solved
print("Matching teams to scores...")
for teamid, score in team_scores.items():
team = Team.objects(teamID=teamid).first()
if not (team and team.members):
continue
for account in team.members:
if not account.signin:
continue
fsuid = format_fsuid(account)
user_scores[fsuid] = team_scores[teamid]
names[fsuid] = account.first_name, account.last_name
# Get student classes
print("Reading extra credit survey...")
def open_class_file(c):
name = str(c).replace(' ', '_').replace('/', '_')
fd = open('{}/{}.csv'.format(output_folder, name), 'w')
csv_writer = csv.writer(fd)
return csv_writer
courses = Course.objects.all()
for course in courses:
students = Account.objects(courses=course)
course_students = []
for student in students:
fsuid = format_fsuid(student)
score = user_scores.get(fsuid, '0')
first, last = names.get(fsuid, ('', ''))
if type(score) != str:
score = '0'
if not student.team or student.team.division != division:
continue
course_students.append((fsuid, last, first, score,))
if len(course_students) > 0:
course_file = open_class_file(course)
for s in sorted(course_students, key=lambda x: x[1]):
course_file.writerow(s)
# Put all students in 'all_students.csv'
all_students = []
students = Account.objects.all()
for student in students:
fsuid = format_fsuid(student)
score = user_scores.get(fsuid, '0')
first, last = names.get(fsuid, ('', ''))
if type(score) != str:
score = '0'
if not student.team or student.team.division != division:
continue
all_students.append((fsuid, last, first, score,))
all_students_file = open_class_file('all_students')
for s in sorted(all_students, key=lambda x: x[1]):
print(s)
all_students_file.writerow(s)
if __name__ == '__main__':
extra_credit() #pylint: disable=E1120