Skip to content

Instantly share code, notes, and snippets.

@giridharmb
Forked from pratik-choudhari/python_crontab.py
Created October 21, 2021 19:10
Show Gist options
  • Select an option

  • Save giridharmb/371b331d8f28ab500fa6fa5ee1851d77 to your computer and use it in GitHub Desktop.

Select an option

Save giridharmb/371b331d8f28ab500fa6fa5ee1851d77 to your computer and use it in GitHub Desktop.
schedule with python crontab
from crontab import CronTab
cron = CronTab(user='root')
job = cron.new(command='my_script.sh')
job.hour.every(1)
cron.write()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment