Home > Software design >  How shoud i schedule my Views templates in django?
How shoud i schedule my Views templates in django?

Time:09-30

I need to run my view for specific time in my schedule days. how I can make it ?

CodePudding user response:

You could for example use a Cron Job oder Celery Beat for this.

CodePudding user response:

APScheduler is quick and easy https://apscheduler.readthedocs.io/en/3.x/

  • Related