Metadata-Version: 1.0
Name: daemonized
Version: 0.2.4
Summary: A Module to help you daemonize your program in Unix-like system
Home-page: https://github.com/yueyoum/daemonize
Author: Wang Chao
Author-email: yueyoum@gmail.com
License: UNKNOWN
Description: # A Simple Class to make your program daemonize in Unix-like system
        
        
        Usage:
        
            from daemonized import Daemonize
        
            @Daemonize()
            def my_func():
                # this func will be daemonize
                pass
        
            my_func()
        
            # or, this
            d = Daemonize()
            d.stdout = '/tmp/d_out'  # MUST BE ABSOLUTE PATH
            d.stderr = '/tmp/d_err'
        
            def my_func():
                pass
        
            d.make_daemon()
            my_func()
        
        
Platform: UNKNOWN
