Metadata-Version: 1.0
Name: BottleDaemon
Version: 0.1.0
Summary: A simple tool to help daemonize bottle applications.
Home-page: UNKNOWN
Author: Jonathan Hood
Author-email: me@jonathanhood.org
License: UNKNOWN
Description: Bottle Daemon
        =============
        
        A simple tool to help make bottle appliations run in the background a unix/linux daemon.
        
        Usage is pretty straighforward:
        
        .. sourcecode:: python
        
          from bottledaemon import daemon_run
          from bottle import route
        
          @route("/hello")
          def hello():
            return "Hello World"
        
          if __name__ == "__main__":
            daemon_run()
        
        The above application will launch in the background. This top-level script can be used to start/stop the background process easily::
        
          jonathans-air:bottle-daemon jhood$ python bottledaemon/bottledaemon.py
          usage: bottledaemon.py [-h] {start,stop}
        
        The daemon library guarantees that your application will only be lauched a single time - so multiple "start" commands are OK. 
        
        
Platform: UNKNOWN
