Category: schedule

Problem

Run functions on a schedule.

Solution

  schedule.every().day.at("09:00").do(job)
while True:
    schedule.run_pending(); time.sleep(1)
  

Notes

  • Adapt variable names and paths to your project
  • Add error handling for production use
  • See related chapters in the Learning Path