I have script1.py and script2.py...how can I run script1.py and have that automatically execute script2.py in parallel? (I do not want to wait for script2 to finish before continuing on with script1.). Thanks!
Asked
Active
Viewed 36 times
1
-
Have a look at the [multiprocessing package](https://docs.python.org/3/library/multiprocessing.html) – Chang Qian Aug 21 '18 at 14:54
-
Does [this](https://stackoverflow.com/a/546024/1717828) answer your question? – user1717828 Aug 26 '18 at 01:10