Metadata-Version: 1.0
Name: fserve
Version: 0.1.1
Summary: serve static file.
Home-page: http://github.com/benoitc/fserve
Author: Benoit Chesneau
Author-email: benoitc@e-engura.com
License: MIT
Description: fserve
        ------
        
        Simple and efficient way to serve static file. used as a pistil
        demonstration. Handle sendifle api is available on your system.
        
        Requirements
        ++++++++++++
        
        - Python 2.5 or sup.
        - Gevent > 0.13
        - Pistil >= 0.1.0
        - http-parser >= 0.6.3
        
        
        Installation
        ++++++++++++
        
        Do one of this command to install it from pypi
        
        ::
        
            pip install fserve
        
        or::
        
            easy_install fserve
        
        From source do::
        
            $ git clone git://github.com/benoitc/fserve.git
            $ cd fserve && python setup.py install
        
        
        Usage
        +++++
        
        ::
        
            $ fserve [-h] [--bind BIND] [--workers WORKERS] [--debug] [path]
        
            serve a static file folder
        
            positional arguments:
              path               Folder to serve
        
            optional arguments:
              -h, --help         show this help message and exit
              --bind BIND        The socket to bind. A string of the form: 'HOST',
                                 'HOST:PORT', 'unix:PATH'. An IP is a valid HOST.
              --workers WORKERS  Number of workers
            --debug            Debug mode
        
        Example:
        
        In your source folder::
        
            $ cd examples/static
            $ fserve
        
        And go on http://127.0.0.1:5000 url .
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Environment :: Other Environment
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP
