17
0
coldcallbot/coldcallboy-manual.py
Benjamin Mako Hill d8e662b5c3 reworking the script to work with COMMLD570A (editted)
this commit was editted to not include student details

- new manual version of the coldcallbot
- minor tweaks to make things less discord specific
- changes for new URLs, filenames, and such
2022-01-05 11:27:59 +09:00

16 lines
275 B
Python
Executable File

#!/usr/bin/env python3
from coldcall import ColdCall
import re
## create the coldcall object
cc = ColdCall(record_attendance=False)
student_list = cc.preferred_names
# print out 100 students
for i in range(100):
print(f"{i}. {cc.coldcall(student_list)} [ ] [ ]\n")