[Django]-How to allow users to dynamically set the scheduled time for email reports within a web framework?

5👍

If you’re using Django you can use celery instead of crontab to run your scheduled tasks. You can then write views that will allow your users to manage their own schedules.
http://www.celeryproject.org/

You can start your own Celery Task Manager view from imitating Celery’s Django admin page
Django Celery admin page

👤AzMoo

Leave a comment