Tivix / django-cron

Write cron business logic as a Python class and let this app do the rest! It enables Django projects to schedule cron tasks, tracks their success / failures, manages contention (via a cache) etc. Basically takes care of all the boring work for you :-)
www.tivix.com
MIT License
900 stars 193 forks source link

Can I update cron frequency based on a database value? #137

Closed jacksonofalltrades closed 6 years ago

jacksonofalltrades commented 6 years ago

Would love to be able to do this. Thanks!

maxim-kht commented 6 years ago

Hi @jacksonofalltrades Yes, RUN_EVERY_MINS or RUN_AT_TIMES can be calculated values. They don't have to be constants.

jacksonofalltrades commented 6 years ago

Awesome, thanks!