How can I run a python definition now, but do more stuff after a certain time. So it's kind of running the script silently in the background until certain condition is met?
Thank you
How can I run a python definition now, but do more stuff after a certain time. So it's kind of running the script silently in the background until certain condition is met?
Thank you
You can use cron job to execute a python script at a certain time. You can find a similar answer here. If you looking for a pure python implementation, this answer will help.