PKG-INFO 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Metadata-Version: 1.0
  2. Name: python-daemon
  3. Version: 1.5.1
  4. Summary: Library to implement a well-behaved Unix daemon process.
  5. Home-page: http://pypi.python.org/pypi/python-daemon/
  6. Author: Ben Finney
  7. Author-email: ben+python@benfinney.id.au
  8. License: PSF-2+
  9. Description: This library implements the well-behaved daemon specification of
  10. :pep:`3143`, "Standard daemon process library".
  11. A well-behaved Unix daemon process is tricky to get right, but the
  12. required steps are much the same for every daemon program. A
  13. `DaemonContext` instance holds the behaviour and configured
  14. process environment for the program; use the instance as a context
  15. manager to enter a daemon state.
  16. Simple example of usage::
  17. import daemon
  18. from spam import do_main_program
  19. with daemon.DaemonContext():
  20. do_main_program()
  21. Customisation of the steps to become a daemon is available by
  22. setting options on the `DaemonContext` instance; see the
  23. documentation for that class for each option.
  24. Keywords: daemon,fork,unix
  25. Platform: UNKNOWN
  26. Classifier: Development Status :: 4 - Beta
  27. Classifier: License :: OSI Approved :: Python Software Foundation License
  28. Classifier: Operating System :: POSIX
  29. Classifier: Programming Language :: Python
  30. Classifier: Intended Audience :: Developers
  31. Classifier: Topic :: Software Development :: Libraries :: Python Modules