Skip to main content

Poor WSGI connector for Python

Project description

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PoorWSGI-2.2.0.tar.gz (69.8 kB view hashes)

Uploaded Source

Built Distribution

PoorWSGI-2.2.0-py3-none-any.whl (56.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page