WSGI fastagency.base.WSGI # Bases: Protocol handle_wsgi # handle_wsgi( app: Runnable, environ: dict[str, Any], start_response: Callable[..., Any], ) -> list[bytes] Source code in fastagency/base.py 241 242 243 244 245 246def handle_wsgi( self, app: "Runnable", environ: dict[str, Any], start_response: Callable[..., Any], ) -> list[bytes]: ...