Re: Questions regarding the daemon module.

2012-01-28 Thread Ben Finney
David Lambert writes: > I was looking for a simple way to daemonize a Python process, and found: > > http://www.python.org/dev/peps/pep-3143/ > > I used easy_install to add this package (I thought), but when I attempted > to use the example in the above link, I got the error: > > > AttributeError

Re: Questions regarding the daemon module.

2012-01-28 Thread Chris Rebert
On Sat, Jan 28, 2012 at 5:54 AM, David Lambert wrote: > I was looking for a simple way to daemonize a Python process, and found: > > http://www.python.org/dev/peps/pep-3143/ > > I used easy_install to add this package (I thought), but when I attempted to > use the example in the above link, I got

Questions regarding the daemon module.

2012-01-28 Thread David Lambert
I was looking for a simple way to daemonize a Python process, and found: http://www.python.org/dev/peps/pep-3143/ I used easy_install to add this package (I thought), but when I attempted to use the example in the above link, I got the error: AttributeError: 'module' object has no attribute

Re: Daemon module

2005-02-07 Thread Diez B. Roggisch
Did you see the daemonize recipe in the cookbook? Don't forget to checkout the comments section. -- Regards, Diez B. Roggisch -- http://mail.python.org/mailman/listinfo/python-list

Daemon module

2005-02-07 Thread paul
Hi, I find myself writing quite a few daemons in Python and have finally gotten round to abstracting out a lot of the common code. You can find my first attempt at a generic daemon module at: http://www.westpoint.ltd.uk/dist/daemon.py It's not perfect, but it does work reliably f