Convert WSGI app to ASGI app or ASGI app to WSGI app.
Project description
a2wsgi
Convert WSGI app to ASGI app or ASGI app to WSGI app.
Pure Python. No dependencies. High performance.
Install
pip install a2wsgi
How to use
Convert WSGI app to ASGI app:
from a2wsgi import WSGIMiddleware
ASGI_APP = WSGIMiddleware(WSGI_APP)
Convert ASGI app to WSGI app:
from a2wsgi import ASGIMiddleware
WSGI_APP = ASGIMiddleware(ASGI_APP)
Benchmark
Run python benchmark.py
to compare the performance of a2wsgi
and uvicorn.middleware.wsgi.WSGIMiddleware
/ asgiref.wsgi.WsgiToAsgi
.
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
a2wsgi-0.3.3.tar.gz
(10.1 kB
view hashes)
Built Distribution
a2wsgi-0.3.3-py3-none-any.whl
(11.0 kB
view hashes)