Hello,
I’m looking to make an app that runs Python scripts based on individual schedules. For example, I would like to run hello.py
every day at 08:00 UTC and goodbye.py
every other day at 15:00 UTC.
While it would be possible to run another Python script that just checks every few seconds if a certain time has passed, this feels hugely wasteful and inefficient to have this machine running 24/7.
What would your approach be to orchestrating this situation?
Thank you for your help!