Skip to content

JPilarr/PoorWSGI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Download this month

Latest version

Supported Python versions

Development 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

About

Light WSGI connector with uri routing support.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%