At the moment I have 3 scripts:
executecript.py
script1.py
script2.py
script1
and script2
both constantly repeat (Sends emails every 60 seconds). There is no way I can combine the scripts (Because the are looping at different times.)
When I try exec
or import
it starts one script, then doesn't continue with the rest of the script.
If there is a way to get it to just two scripts that would be fine (e.g. start script1 which starts script2 at the start).
How can I execute both scripts at once (or with a minor delay)?