Is possible to launch a script in background FROM ANOTHER PYTHON SCRIPT?
I have one script: awesome.py .This must be executed every minute
But it must be launched from a UI python script (miniApp.py) on click button, this is the function:
def startScript(self,e)
//code to launch awesome.py script in background and repeat every minute
How can I do this?