Skip to main content

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. Only depend on the standard library.

Compared with other converters, the advantage is that a2wsgi will not accumulate the requested content or response content in the memory, so you don't have to worry about the memory limit caused by a2wsgi. This problem exists in converters implemented by uvicorn/startlette or hypercorn.

Install

pip install a2wsgi

How to use

WSGIMiddleware

Convert WSGI app to ASGI app:

from a2wsgi import WSGIMiddleware

ASGI_APP = WSGIMiddleware(WSGI_APP)

WSGIMiddleware executes WSGI applications with a thread pool of up to 10 threads by default. If you want to increase or decrease this number, just like WSGIMiddleware(..., workers=15).

ASGIMiddleware

Convert ASGI app to WSGI app:

from a2wsgi import ASGIMiddleware

WSGI_APP = ASGIMiddleware(ASGI_APP)

ASGIMiddleware will wait for the ASGI application's Background Task to complete before returning the last null byte. But sometimes you may not want to wait indefinitely for the execution of the Background Task of the ASGI application, then you only need to give the parameter ASGIMiddleware(..., wait_time=5.0), after the time exceeds, the ASGI task corresponding to the request will be tried to cancel, and the last null byte will be returned.

You can also specify your own event loop through the loop parameter instead of the default event loop. Like ASGIMiddleware(..., loop=faster_loop)

Access the original Scope/Environ

Sometimes you may need to access the original WSGI Environ in the ASGI application, just use scope["wsgi_environ"]; it is also easy to access the ASGI Scope in the WSGI Application, use environ["asgi.scope"].

Benchmark

Run pytest ./benchmark.py -s to compare the performance of a2wsgi and uvicorn.middleware.wsgi.WSGIMiddleware / asgiref.wsgi.WsgiToAsgi.

Why a2wsgi

Convert WSGI app to ASGI app

You can convert an existing WSGI project to an ASGI project to make it easier to migrate from WSGI applications to ASGI applications.

Convert ASGI app to WSGI app

There is a lot of support for WSGI. Converting ASGI to WSGI, you will be able to use many existing services to deploy ASGI applications.

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

a2wsgi-1.8.0.tar.gz (13.8 kB view details)

Uploaded Source

Built Distribution

a2wsgi-1.8.0-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

Details for the file a2wsgi-1.8.0.tar.gz.

File metadata

  • Download URL: a2wsgi-1.8.0.tar.gz
  • Upload date:
  • Size: 13.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.9.0 CPython/3.8.18

File hashes

Hashes for a2wsgi-1.8.0.tar.gz
Algorithm Hash digest
SHA256 b20436b92f33db9ff1436be64b86e82e187096ebb5d1a52de2794a70db981510
MD5 4cc5dcb9d1455e7e3719b9227dd56c51
BLAKE2b-256 28d3aabcfb2023a589cc91fc908729d3b0e3836b54918fd71c8741636fc61d81

See more details on using hashes here.

File details

Details for the file a2wsgi-1.8.0-py3-none-any.whl.

File metadata

  • Download URL: a2wsgi-1.8.0-py3-none-any.whl
  • Upload date:
  • Size: 12.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.9.0 CPython/3.8.18

File hashes

Hashes for a2wsgi-1.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f7c6f9adf4b6a6a6b0a557f48d0615e20a1581f543b133dc83f116365e52c1fb
MD5 d2efa31f022564809037dedc084cedb9
BLAKE2b-256 dedd9ed5da0e6e50aa6471379bb41ee6e3b910a2d5579d1d3b16cd3fac5b81f6

See more details on using hashes here.

Supported by

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