Poor WSGI connector for Python
Project description
Poor WSGI for Python
Poor WSGI for Python is a lightweight WSGI connector with URI routing between the WSGI server and your application. The simplest way to run and test it looks like this:
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’s wsgiref.simple_server to 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.8.0.tar.gz
(151.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
poorwsgi-2.8.0-py3-none-any.whl
(136.2 kB
view details)
File details
Details for the file poorwsgi-2.8.0.tar.gz.
File metadata
- Download URL: poorwsgi-2.8.0.tar.gz
- Upload date:
- Size: 151.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
128a2c2187d5247e3b0ff42922c7b2b59000a68590e873ac59a4f51f3db39641
|
|
| MD5 |
7d6aa0c3d97671eeb47cb3603a0ddaa1
|
|
| BLAKE2b-256 |
81f1de36ee48a9c0e96d74369da7f97ea86f33221ed6e69bd6345ef2e3bb5e3b
|
File details
Details for the file poorwsgi-2.8.0-py3-none-any.whl.
File metadata
- Download URL: poorwsgi-2.8.0-py3-none-any.whl
- Upload date:
- Size: 136.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11802a11c359e4719a725c44e6b8fbe47a5879a7ad215fa4be896626c8eab9ea
|
|
| MD5 |
574edeb32ef1c3f8eecff7adce7dc205
|
|
| BLAKE2b-256 |
ef6efaf2c4f0529cb2255a9b3c77c787e04157fca199f044f67f2cf2287f21c9
|