]> code.communitydata.science - coldcallbot-discord.git/blob - coldcallbot-manual.py
75a88dcabef3ec30b5a08c0ea7ad228d1bfdd351
[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 import json
7
8 current_time = datetime.today()
9 with open("configuration.json") as config_file:
10     config = json.loads(config_file.read())
11
12 ## create the coldcall object
13 cc = ColdCall(record_attendance=False)
14
15 def get_missing(d=current_time):
16     date_string = f'{d.month}/{d.day}/{d.year}'
17     with open(config["optout_file"], 'r') as f:
18         for row in DictReader(f, delimiter="\t"):
19             if row["Date of class session you will be absent"] == date_string:
20                 yield(row[config["unique_name_rowname"]])
21
22 full_names = {}
23 registered_students = []
24 with open(config["roster_file"], 'r') as f:
25     for row in DictReader(f, delimiter=","):
26         student_no = row["StudentNo"].strip()
27         registered_students.append(student_no)
28         full_names[student_no] = f"{row[config['roster_firstname_rowname']]} {row[config['roster_lastname_rowname']]}"
29 # print("Registered:", registered_students) # useful for debug
30
31 missing_today = [x for x in get_missing(current_time)]
32 # print("Missing Today: ", missing_today)  # useful for debug
33
34 preferred_names = cc.get_preferred_names()
35 # print("Preferred names:", preferred_names)  # useful for debug
36
37 students_present = [s for s in registered_students if s not in missing_today]
38 # print("Students present:", students_present)  # useful for debug
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?