Library to implement a well-behaved Unix daemon process.
Project Links
Meta
Author: Ben Finney
Maintainer: Ben Finney
Requires Python: >=3.7
Classifiers
Development Status
- 5 - Production/Stable
License
- OSI Approved :: Apache Software License
Operating System
- POSIX
Programming Language
- Python :: 3
Intended Audience
- Developers
Topic
- Software Development :: Libraries :: Python Modules
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.
Simple example of usage::
import daemon
from spam import do_main_program
with daemon.DaemonContext():
do_main_program()
Customisation of the steps to become a daemon is available by
setting options on the `DaemonContext` instance; see the
documentation for that class for each option.
: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.
Simple example of usage::
import daemon
from spam import do_main_program
with daemon.DaemonContext():
do_main_program()
Customisation of the steps to become a daemon is available by
setting options on the `DaemonContext` instance; see the
documentation for that class for each option.
Dec 03, 2024
3.1.2
Dec 01, 2024
3.1.1
Dec 01, 2024
3.1.1a1
Oct 25, 2024
3.1.0
Jul 27, 2024
3.0.2
Mar 08, 2023
3.0.1
Mar 04, 2023
3.0.0
Oct 23, 2022
2.3.2
Jul 19, 2022
2.3.1
Feb 21, 2021
2.3.0
Oct 27, 2019
2.2.4
Jan 21, 2019
2.2.3
Jan 19, 2019
2.2.2
Jan 17, 2019
2.2.1
Aug 15, 2018
2.2.0
Oct 26, 2016
2.1.2
Jan 30, 2016
2.1.1
Nov 26, 2015
2.1.0
Aug 30, 2015
2.0.6
Feb 02, 2015
2.0.5
Jan 23, 2015
2.0.4
Jan 14, 2015
2.0.3
Jan 13, 2015
2.0.2
Jan 10, 2015
2.0.1
Jan 10, 2015
2.0
Aug 04, 2014
1.6.1
May 10, 2010
1.6
Dec 19, 2014
1.5.7
Dec 10, 2014
1.5.6
Mar 02, 2010
1.5.5
Feb 27, 2010
1.5.4
Feb 26, 2010
1.5.3
Oct 24, 2009
1.5.2
Sep 26, 2009
1.5.1
Sep 24, 2009
1.5
Sep 17, 2009
1.4.8
Sep 03, 2009
1.4.7
Jun 21, 2009
1.4.6
May 17, 2009
1.4.5
Mar 25, 2009
1.4.4
Mar 19, 2009
1.4.3
Mar 18, 2009
1.4.2
Mar 18, 2009
1.4.1
Mar 17, 2009
1.4
Mar 12, 2009
1.3
Jan 25, 2009
1.2
Jul 19, 2022
0.0.0