Re: How to call application in the background with subprocess.call

2010-04-09 Thread John Bokma
Kushal Kumaran writes: > On Thu, Apr 8, 2010 at 7:39 PM, jorma kala wrote: >> Hi, >> >> I'd like to call an external application (firefox) from a python program (a >> PyQT GUI), but I want the external application to run in the background, I >> mean I do not want my python calling program to wai

Re: How to call application in the background with subprocess.call

2010-04-08 Thread Kushal Kumaran
On Thu, Apr 8, 2010 at 7:39 PM, jorma kala wrote: > Hi, > > I'd like to call an external application (firefox) from a python program (a > PyQT GUI), but I want the external application to run in the background, I > mean I do not want my python calling program to wait till the external > subprocess

How to call application in the background with subprocess.call

2010-04-08 Thread jorma kala
Hi, I'd like to call an external application (firefox) from a python program (a PyQT GUI), but I want the external application to run in the background, I mean I do not want my python calling program to wait till the external subprocess terminates. I've tried this: call(["firefox", "http://www.py