Lines 1-11
Link Here
|
1 |
Library to implement a well-behaved Unix daemon process. |
|
|
2 |
|
3 |
This library implements the well-behaved daemon specification of PEP 3143, |
4 |
"Standard daemon process library". |
5 |
|
6 |
A well-behaved Unix daemon process is tricky to get right, but the required |
7 |
steps are much the same for every daemon program. A DaemonContext instance holds |
8 |
the behaviour and configured process environment for the program; use the |
9 |
instance as a context manager to enter a daemon state. |
10 |
|
11 |
WWW: https://pypi.python.org/pypi/python-daemon/ |