Last active
May 4, 2016 20:01
-
-
Save nenodias/e40d9390f06c701d922a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# *-* coding:utf-8 *-* | |
# pip install python-crontab croniter | |
from crontab import CronTab | |
#init cron | |
cron = CronTab() | |
#add new cron job | |
job = cron.new(command='python /home/horacio/Downloads/teste.py') | |
#job settings | |
job.setall(job.minutes.every(1)) | |
job.enable(True) | |
job.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment