Posted on • Edited on • Originally published atxtrp.io
How to Schedule Cronjobs in Python
Cronjobs are tasks that can be run periodically, such as every five minutes, or every day at midnight, or even every Friday at noon.
Cronjobs have a number of different use cases, and are widely used in many notable codebases.
Many hosting servers have existing ways to set up cronjobs, but if you don't have that capability, you may want to go for a different solution.
I'll explain how you would go about creating cronjobs in Python, in which a Python function, program, or command can be run periodically, whether that be every day, every few minutes, or even every month or year.
- Check if you have Python 3 installed:
If the following command does not yield a version number,download Python 3 from python.org.
python3 -V
- Install the
schedule
package from Pypi
Run this command to install theschedule
package:
pip install schedule
Or if you're usingpip3
:
pip3 install schedule
- Set up and run a cronjob with the
.do
method
To schedule a cronjob, use the.do
method combined with the.every
method and others to choose when the cronjob should be run.
The methods for scheduling cronjobs are pretty intuitively named, and more information on them can be found ontheschedule
package documentation.
After setting up your cronjob(s), create an infinite loop to run the cronjob(s) that are scheduled.
You can also schedule multiple cronjobs if you'd like by adding them with the.do
method, just like how the initial cronjob was created.
importschedulefromtimeimportsleepdefcronjob():print("Hello, World!")# create the cronjobschedule.every(5).minutes.do(cronjob)# runs cronjob every 5 minutes# run the cronjobwhileTrue:schedule.run_pending()sleep(10)# check to run the cronjob every 10 seconds
More.do
Method Examples
schedule.every(15).minutes.do(cronjob)# every 15 minutesschedule.every().hour.do(cronjob)# every 1 hourschedule.every().day.at("07:00").do(cronjob)# every day at 7:00 AMschedule.every(2).days.at("18:30").do(cronjob)# every other day at 6:30 PMschedule.every().friday.at("17:00").do(cronjob)# every Friday at 5:00 PMschedule.every().minute.at(":17").do(cronjob)# every minute at 17 secondsschedule.every(10).seconds.do(cronjob)# every 10 seconds
Conclusion
I hope this helps. I've found Python cronjobs like these particularly useful in a few of my projects. For example, I use cronjobs to periodically update data on the COVID-19 pandemic for my siteCoronavirus Live Monitor, and daily cronjobs are used to publish new posts forDaily Developer Jokes, a project of mine which publishes programming humor every day at 8 AM (ET).
Thanks for scrolling.
— Gabriel Romualdo, December 12, 2020
Top comments(0)
For further actions, you may consider blocking this person and/orreporting abuse