baize.wsgi.Request

Here are the examples of the python api baize.wsgi.Request taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : application.py
with Apache License 2.0
from abersheeran

    def __call__(
        self, environ: Environ, start_response: StartResponse
    ) -> typing.Iterable[bytes]:
        request = WsgiRequest(environ)
        response = self.preprocess(request) or self.on_call(request)
        return response(environ, start_response)


class AsgiRPC(RPC):