I want to setup cronjob
in my Django
project, but I am using windows
.
I tried django-cron
, but it is not working with windows
.
How can I use cronjob
scheduling in my project?
I want to setup cronjob
in my Django
project, but I am using windows
.
I tried django-cron
, but it is not working with windows
.
How can I use cronjob
scheduling in my project?
Using django-cron is not the case and cannot be used on Windows, because Windows do not support cron job scheduling. You can use Windows analog of the Unix cron command called "schtasks" to schedule execution of your script or Windows Task Scheduler.
See more in SO Questions What is the Windows version of cron? and Schedule Python Script - Windows 7