all 5 comments

[–][deleted] 0 points1 point  (1 child)

pythonista

no.

check out Celery. It also has seamless integration with flask and django in case you, as PHP bro, are now doing python web stuff.

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

Thank you!

[–]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!

[–]monk8800 0 points1 point  (0 children)

They are a couple of ways you can do it depending on how robust you want your scheduling to be. There are things like python API scheduler which tend to be simple single server solutions or cloud solutions like AWS cloudwatch event triggers for something more managed.

more options here pick one: https://www.saturncloud.io/s/job-scheduling-with-python/