is there a way to call an external program inside python and don\'t wait for its execution to finish?
I tried this, but no luck:
os.system(\"external
Yes, use the subprocess module. For example:
p = subprocess.Popen(['external_program', 'arg1', 'arg2']) # Process is now running in the background, do other stuff... ... # Check if process has completed if p.poll() is not None: ... ... # Wait for process to complete p.wait()