vote up 2 vote down star

I have a simple python program that I'd like to daemonize.

Since the point of my doing this is not to demonstrate mastery over the spawn, fork, disconnect , etc, I'd like to find a module that would make it quick and simple for me. I've been looking in the std lib, but can not seem to find anything.

Is there?

flag

2 Answers

vote up 3 vote down check

Here's a library for making well behaved unix daemons: http://pypi.python.org/pypi/python-daemon/

And another one that appears more lightweight: http://code.activestate.com/recipes/278731/

link|flag
vote up -1 vote down
subprocess

is an (almost) platform-independent module to work with processes.

link|flag

Your Answer

Get an OpenID
or

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