I'm trying to run multiple scripts to maintain the running speed.
I'm using two scripts that need each other to work, so I want another Python script like setup.py to run them:
import os
os.system('python script1.py && python script2.py')
But that doesn't work at the same time.