I've looked everywhere and I'm sorry if I'm missing the obvious, but I'm irritated out of my mind trying to find this solution.
All I want to do is start an application with arguments in a new window (cmd.exe or linux terminal). I don't care about piping the data from the window to python or vice versa...all I want is a new independent window running the application.
I've tried subprocess, os.system, os.popen, os.execvp, and many others, but they all seem to start the process in the background. I want to SEE the window...just start the application continue through the python script.
Any ideas?