dynamically adding jobs #936
Answered
by
agronholm
va-fivenine
asked this question in
Q&A
-
I want to be able to read a configuration file from disk that I can construct a schedule ...initially want to be able to add_job at minimum would like to pass parameters for "cron" into the add_Job as a string. Is this possible? i.e. |
Beta Was this translation helpful? Give feedback.
Answered by
agronholm
Jul 11, 2024
Replies: 1 comment
-
I think your best bet is to create a crontab-style file and feed it to |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
va-fivenine
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think your best bet is to create a crontab-style file and feed it to
CronTrigger.from_crontab(...)
, line by line.