[Django]-How to run a function with parameters periodicaly?

5👍

Celery periodic tasks will is good choice for running periodic tasks.

You can then use Django-celery-beat to control in database exactly when the functions are executed.

Specifically I draw attention to the cron tab scheduler

Leave a comment