I have been searching for a way to start and terminate a long-running \"batch jobs\" in python. Right now I\'m using \"os.system()\" to launch a long-running batch job insid
If you want control over start and stop of child processes you have to use threading. In that case, look no further than Python's threading module.