Is it only me? I cant figure out, how to run job for example every minute on friday with Schedule module
import schedule
import time
def job(x):
print("{} Amigo".format(x))
schedule.every(1).minutes.friday.do(job,'Hello')
while True:
schedule.run_pending()
time.sleep(1)
This code doesnt throw any error nor expected result. It just do nothing. Am I the only one who needs this kind of scheduling? Because I didnt see any example on this, nothing is in the documentation or in git repository as an example.
Could you please advice me, how to do this time logic with this library?
Thanks in advnce