]> code.communitydata.science - coldcallbot-discord.git/blob - coldcallbot-manual.py
minor changes to finalize case grades
[coldcallbot-discord.git] / coldcallbot-manual.py
1 #!/usr/bin/env python3
2
3 from coldcall import ColdCall
4 from datetime import datetime
5 from csv import DictReader
6
7 current_time = datetime.today()
8
9 ## create the coldcall object
10 cc = ColdCall(record_attendance=False, preferred_name_field="Name you'd like to go by in class")
11
12 def get_missing(d=current_time):
13     date_string = f'{d.month}/{d.day}/{d.year}'
14     with open("data/absence_poll_data.tsv", 'r') as f:
15         for row in DictReader(f, delimiter="\t"):
16             if row["Date of class session you will be absent"] == date_string:
17                 yield(row["Your UW student number"])
18
19 full_names = {}
20 registered_students = []
21 with open("data/2022_winter_COM_481_A_students.csv", 'r') as f:
22     for row in DictReader(f, delimiter=","):
23         student_no = row["StudentNo"].strip()
24         registered_students.append(student_no)
25         full_names[student_no] = f"{row['FirstName']} {row['LastName']}"
26 ## print("Registered:", registered_students)
27
28 missing_today = [x for x in get_missing(current_time)]
29 ## print("Missing Today: ", missing_today)
30
31 preferred_names = {}
32 with open("data/student_information.tsv", 'r') as f:
33     for row in DictReader(f, delimiter="\t"):
34         preferred_names[row["Your UW student number"]] = row["Name you'd like to go by in class"]
35 ## print("Preferred names:", preferred_names)
36
37 students_present = [s for s in registered_students if s not in missing_today]
38 ## print("Students present:", students_present)
39
40 for i in range(100):
41     selected_student = cc.select_student_from_list(students_present)
42
43     try:
44         preferred_name = preferred_names[selected_student]
45     except KeyError:
46         preferred_name = "MISSING PREFERRED NAME"
47
48     print(f"{i + 1}.",
49           preferred_name, "::",
50           selected_student, "::",
51           full_names[selected_student])
52     cc.record_coldcall(selected_student)
53

Community Data Science Collective || Want to submit a patch?