I have a python script that needs to start a .bat file. The .bat file runs indefinitely, and, ideally, never returns.
There's no problem running a foreign executable or .bat from within a python script, but all the implementations I've found run it as a child and wait for it to return.
Can I run an external script and detach from it, allowing it to run merrily, and have the python script continue to run?
*Edit: * using Popen runs the batch file in the same command prompt window - as the batch file never returns, the python app us unable to continue running. Is there a way to run a batch file in a new command prompt window?