Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Schdule Jobs in Python
Tips and Traps¶
- If you schedule a job $J_1$ using
schedule
in IPython shell, and then interrupt the following loop that checks and runs pending jobs,the scheduled job $J_1$ is still there unless you stop the current IPython shell. The effective consequence of this is that if you schedule another job $J_2$, and start to run it using the following loop,while True: schedule.run_pending()