add py-daemon

This commit is contained in:
ziggi
2020-05-25 06:32:53 +00:00
parent 30ff26ffd6
commit 7bb103ce22
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
Library to implement a well-behaved Unix daemon process.
This library implements the well-behaved daemon specification of PEP 3143,
"Standard daemon process library".
A well-behaved Unix daemon process is tricky to get right, but the required
steps are much the same for every daemon program. A DaemonContext instance holds
the behaviour and configured process environment for the program; use the
instance as a context manager to enter a daemon state.
WWW: https://pypi.org/project/python-daemon/