I've created a python code that automatically join zoom classes at a specific time using the schedule module. This is an example code below:
schedule.every().monday.do(join_zoom)
Is there a way that i can run the code like this
date = "monday"
schedule.every().[date].do(join_zoom)
Thanks