I'm wish to use the schedule
module, as shown here, in a way that code read schedule parameters from a text file, for example:
start_day=1,2,3,4
start_time=09:00
module's syntax is as follows (wish to change days, and job
):
schedule.every().monday.do(job)
schedule.every().wednesday.at("13:15").do(job)
my first get was to use getattr()
- but it is for a more simple uses, such as shown here
Appreciate any help