view.run.wsgi

Functions

wsgi_for_app(app, /[, loop, chunk_size])

Generate a WSGI-compliant callable for a given app, allowing it to be executed in an ASGI server.

wsgi_for_app(app: BaseApp, /, loop: asyncio.AbstractEventLoop | None = None, chunk_size: int = 512) WSGIProtocol

Generate a WSGI-compliant callable for a given app, allowing it to be executed in an ASGI server.

Don’t use this directly; prefer the view.core.app.BaseApp.wsgi() method instead.