view.run.wsgi¶
Functions
|
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.