I'm trying to get my head around schedule. I've looked at How do I get a Cron like scheduler in Python? and have altered the code but cannot figure out why
import schedule
import time
def job():
print("I\'m doing the job")
schedule.every().minute.at(":17").do(job)
while True:
schedule.run_pending()
time.sleep(1)
is giving me.
I'm doing the job
I'm doing the job
I'm working...
I'm working...
I'm doing the job
I'm working!
I'm working...
I'm working...
I'm working...
I'm working!
I'm working!
I'm working...