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
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
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
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
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