Python Forum
Shceduling jobs - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Shceduling jobs (/thread-31248.html)



Shceduling jobs - GrahamL - Nov-30-2020

Hi

I need to run some tasks for different periods and to be able to detect when the job has finished.
I have seen a few libraries but wondered which is the best way to achieve this.
Some guidance would be appreciated
Thanks


RE: Shceduling jobs - Larz60+ - Nov-30-2020

These packages are arranged in order of most downloaded first.
Sorry, I haven't used any of them, so cannot vouch for any.
https://pypi.org/search/?q=cron&o=-zscore

I also wrote a simple scheduler some time back, it worked well for what I needed, you may (or may not) be able to use it for your project . It's located here: https://python-forum.io/Thread-Multi-threaded-Timer-Class


RE: Shceduling jobs - Superjoe - Dec-02-2020

Our company use celery in production.