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
Forget about os.system(). It is deprecated in favour of the subprocess module.
os.system()
It provides a way to execute subprograms for almost every thinkable use case.