18
0

renamed manual coldcall bot script

it's a /bot/, not a boy
This commit is contained in:
2021-04-20 11:24:50 -07:00
parent d8e662b5c3
commit 914f5973c3

15
coldcallbot-manual.py Executable file
View File

@@ -0,0 +1,15 @@
#!/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")