[Django]-Django scheduled Tasks – Alternative to Cron or Independent Daemon

5👍

You can use Celery to run periodic tasks but depending on what are you trying to do it could be overkill.

If your use case it’s simple, cron+management command it’s way easier. You can use Kronos, django-cron or any of this libraries for this

Leave a comment