I'm using a pair of python programs, one of which should call the second.

But this should be done in a way that the first program makes the second one a daemon (or running in the background process), then exits, without waiting for the second program to end.

Is this possible in Python?

I've been looking at os.fork, subprocess module, but I'm quite confused as the correct way to achieve this...

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You can use subprocess.Popen for this:

import subprocess

cmd = ['/usr/bin/pyton', '/path/to/my/second/pythonscript.py']
subprocess.Popen(cmd)

You might want to redirect stdout and stderr somewhere, you can do that by passing stdout=<file_obj> to the Popen constructor.

link|improve this answer
So, according to this, 'daemon_process' should be made equal to something like '/usr/bin/pyton /path/to/my/second/pythonscript.py' ? – Javier Novoa C. Jan 20 at 21:01
@JavierNovoaC. Popen takes a list of arguments. I'll edit my answer to clarify. – Rob Wouters Jan 20 at 21:03
thanks! that worked ;) – Javier Novoa C. Jan 20 at 21:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.