Using subprocess.Popen give more fine-grained control over launched processes than subprocess.call.
Launching a subprocess
process = subprocess.Popen([r'C:\path\to\app.exe', 'arg1', '--flag', 'arg'])
The signature for Popen is very similar to the call function; however, Popen will return immedi...