Metadata-Version: 1.1
Name: PoorWSGI
Version: 1.0.1
Summary: Poor WSGI connector for Python
Home-page: http://poorhttp.zeropage.cz/poorwsgi.html
Author: Ondrej Tuma
Author-email: mcbig@zeropage.cz
License: BSD
Description: .. image:: https://pypip.in/download/poorwsgi/badge.png
            :target: https://pypi.python.org/pypi/poorwsgi/
            :alt: Download this month
        
        .. image:: https://pypip.in/version/poorwsgi/badge.png
            :target: https://pypi.python.org/pypi/poorwsgi/
            :alt: Latest version
        
        .. image:: https://pypip.in/py_versions/poorwsgi/badge.png
            :target: https://pypi.python.org/pypi/poorwsgi/
            :alt: Supported Python versions
        
        .. image:: https://pypip.in/status/poorwsgi/badge.svg
            :target: https://pypi.python.org/pypi/poorwsgi/
            :alt: Development Status
        
        .. image:: https://pypip.in/license/poorwsgi/badge.png
            :target: https://pypi.python.org/pypi/poorwsgi/
            :alt: License
        
        Poor WSGI for Python
        ====================
        
        Poor WSGI for Python is light WGI connector with uri routing between WSGI server
        and your application. The simplest way to run and test it looks like that:
        
        ::
        
            from wsgiref.simple_server import make_server
            from poorwsgi import *
        
            @app.route('/test')
            def root_uri(req):
                return 'Hello world'
        
            if __name__ == '__main__':
                httpd = make_server('127.0.0.1', 8080, app)
                httpd.serve_forever()
        
        You can use python wsgiref.simple_server for test it:
        
        ::
        
            ~$ python simple.py
        
        For more information see
        `Project homepage <http://poorhttp.zeropage.cz/poorwsgi.html>`_
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Natural Language :: Czech
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: BSD :: NetBSD
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Classifier: Topic :: Software Development :: Libraries :: Python Modules
