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
16 lines
275 B
Python
Executable File
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")
|
|
|