Metadata-Version: 1.1
Name: x100daemon
Version: 0.1.0
Summary: Make daemon for your program
Home-page: https://github.com/WayneZhouChina/x100daemon
Author: Wayne Zhou
Author-email: cumtxhzyy@gmail.com
License: MIT
Description: NAME
        ====
        
            x100daemon - Make daemon for your program
        
        
        SYNOPSIS
        ========
        
        .. code-block::
        
        
            from x100daemon import Daemon
        
            pidfile = '/var/pid/hello.pid'
            d = Daemon(pidfile)
            d.daemonize()
        
            #your program district
        
        
        DESCRIPTION
        ===========
        
            x100daemon make daemon for your program 
        
        
        METHODS
        =======
        
        pidfile
        ---------
           Assgin your pidfile path 
        
        daemonize
        ----------
            make daemon 
        
        
        SUPPORTED PYTHON VERSIONS
        =========================
        
            daemonize only supports python 3.3 or newer.
        
        
        EXAMPLES
        ========
        
        example
        -----------
        
        .. code-block::
        
            from x100daemon import Daemon
        
            pidfile = '/var/pid/hello.pid'
            d = Daemon(pidfile)
            d.daemonize()
        
            #your program district
        
Keywords: x100 daemon lite
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3 :: Only
