Metadata-Version: 1.1
Name: larus
Version: 0.1.0
Summary: Larus is a simplified Gunicorn clone
Home-page: https://github.com/wong2/larus
Author: wong2
Author-email: wonderfuly@gmail.com
License: BSD
Description: Larus: A WSGI Server [WIP]
        --------------------------
        
        ### Introduction
        
        Larus is a simplified Gunicorn clone, wrote cause I'm boring.
        
        ### Install
        
        From PyPI:
        
            $ pip intsall larus
        
        From source:
        
            $ python setup.py install
        
        ### Usage
        
            Usage: larus [OPTIONS] MODULE_APP
        
            Options:
              -w, --workers INTEGER  number of workers, default: 1
              -b, --bind TEXT        address to bind: host:port, default: 127.0.0.1:8000
              -c, --chdir TEXT       change the working director
              --help                 Show this message and exit.
        
        For example, if `myapp.py` contains the wsgi app `app`, we can serve it with larus with:
        
            larus myapp:app
        
        with `4` workers and bind to `0.0.0.0:5000`:
        
            larus -w 4 -b 0.0.0.0:5000 myapp:app
        
        ### Signals
        
        You can use signals to dynamically increment or decrement the number of workers while serving:
        
        * `TTIN`: Increment the number of workers by one
        * `TTOU`: Decrement the number of workers by one
        
Keywords: larus,gunicorn,wsgi
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
