I have three python scripts: schedule.py
, script1.py
and script2.py
.
I want to start running script1.py
and script2.py
by schedule.py
. Moreover, I want to run script1.py
first, and then activate script2.py
after script1.py
has finished.
I found a similar question here, but I think this person wants to do this via Terminal, or a similar program. I want to do this via Python.
For the moment, I have,
import script1.py
import script2.py
How do I go about?