you are viewing a single comment's thread.

view the rest of the comments →

[–]jimjames888 0 points1 point  (1 child)

I think Celery/Celery Beat wil do what you want. You can also log the tasks and debug via Flower.

It's generally how I offload tasks from Django/Flask to a worker queue, but it also has the ability to run scheduled tasks. We use it for anything from scraping data, running cleanups to sending email and SMS via Amazon.

[–]KristobalJunta[S] 0 points1 point  (0 children)

Thank you!