Somehow in everyday development, there are some times when spinning up airflow is overkill to run a simple job. That is when cron jobs do the trick. However, using cron-related expressions is sometimes quite hard to understand. Schedule library aims to solve that by using a more human-readable way of scheduling. This is how to get started.
Install
pip install schedule
Basic structure
It requires 3 things to get started
- Job to run
- Scheduler trigger
- Scheduler checker
2 and 3 have been provided by the library. 1 is the program that you want to run.
import schedule
import time
from datetime import datetime
# Job to run
def job():
print('This job run on {}'.format(datetime.now()))
if __name__ == "__main__":
# Schedule trigger
schedule.every(3).seconds.do(job)
while True:
# Scheduler checker
schedule.run_pending()
time.sleep(1)
Done! That’s it. You can also run it with decorators.
Explore various use cases from the documentation https://schedule.readthedocs.io/en/stable/examples.html