Poor WSGI connector for Python
Project description
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
Release history Release notifications | RSS feed
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.6.3.tar.gz
(102.1 kB
view hashes)
Built Distribution
PoorWSGI-2.6.3-py3-none-any.whl
(84.8 kB
view hashes)