معرفی شرکت ها


a2wsgi-1.6.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Convert WSGI app to ASGI app or ASGI app to WSGI app.
ویژگی مقدار
سیستم عامل -
نام فایل a2wsgi-1.6.0
نام a2wsgi
نسخه کتابخانه 1.6.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده abersheeran <me@abersheeran.com>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/a2wsgi/
مجوز Apache-2.0
# 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 Convert WSGI app to ASGI app: ```python from a2wsgi import WSGIMiddleware ASGI_APP = WSGIMiddleware(WSGI_APP) ``` Convert ASGI app to WSGI app: ```python from a2wsgi import ASGIMiddleware WSGI_APP = ASGIMiddleware(ASGI_APP) ``` ## 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.


زبان مورد نیاز

مقدار نام
>=3.6.2 Python


نحوه نصب


نصب پکیج whl a2wsgi-1.6.0:

    pip install a2wsgi-1.6.0.whl


نصب پکیج tar.gz a2wsgi-1.6.0:

    pip install a2wsgi-1.6.0.tar.gz