Poor WSGI connector for Python


Keywords
web, wsgi, development
License
BSD-3-Clause
Install
pip install PoorWSGI==2.6.1

Documentation

Latest version Supported Python versions Development Status Build Status 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 Application

app = Application('test')

@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