0

I need to schedule the custom management django command. I am using windows. I tried django-crontab but that's not working. Can someone please help me with this?

In my_app here is the file "check_links" :

enter image description here

check_links.py

class Command(BaseCommand):
    help = 'Check broken links'
    
    def handle(self, *args, **options):
        print("function executed")
Jasmeet Pabla
  • 123
  • 10
  • 3
    Does this answer your question? [Set up a scheduled job?](https://stackoverflow.com/questions/573618/set-up-a-scheduled-job) – rob Feb 22 '22 at 18:38
  • It has useful information. I already tried crontab but it has no support for windows. But I need some way to schedule custom command on windows. – Jasmeet Pabla Feb 22 '22 at 19:06

0 Answers0