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?

1

1 Answer

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

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy