I have a cron which I have written using django-cron:
from django_cron import CronJobBase, Schedule
class MyCronJob(CronJobBase):
RUN_EVERY_MINS = 1
schedule = Schedule(run_every_mins=RUN_EVERY_MINS)
code = 'statuscheck.my_cron_job'
def do(self):
print ("hello")
It works, as when the command python manage.py runcrons
is run twice in a row, only one output is provided unless the 1 minute has lapsed
My question is, how do i then schedule that command to be executed for example 3 times a week?
Thank you
Just change the number of minutes, given there are 60 minutes in an hour, 24 hours in a day and 7 days in a week, you could do something like :
About the issue mentioned in your comment, I think you should use CRON.
https://en.wikipedia.org/wiki/Cron
You could add this line in
/etc/crontab
(replace/path/to
by real path) :This will run your script every minute.
Note that you won't see "hello" on your terminal's session. If you want to see the CRON output you could redirect it to a file :