Metadata-Version: 1.0
Name: DaemonCxt
Version: 1.5.6
Summary: Library to implement a well-behaved Unix daemon process
Home-page: https://github.com/ewiger/daemoncxt
Author: Yauhen Yakimovich
Author-email: eugeny.yakimovitch@gmail.com
License: PSF
Download-URL: https://github.com/ewiger/daemoncxt/tarball/master
Description: daemoncxt
        =========
        
        Library to implement a well-behaved Unix daemon process
        
        Provides DaemonContext (see PEP 3143 and multiple discussions on the net).
        
        Example:
        
            from daemoncxt import DaemonContext
        
            from spam import do_main_program
        
            with DaemonContext():
                do_main_program()
        
        
        Installation
        ------------
        
        pip install daemoncxt
        
        
        Links
        -----
        This version is an unofficial mirror of 
        
        https://github.com/arnaudsj/python-daemon
        
        and
        
        https://pypi.python.org/pypi/python-daemon/
        
        
        
Platform: UNKNOWN
