class documentation

class GunzipFilter:

Constructor: GunzipFilter(application)

View In Hierarchy

WSGI middleware that unzips gzip-encoded requests before passing on to the underlying application.

Method __call__ Handle WSGI request with gzip decompression.
Method __init__ Initialize GunzipFilter with WSGI application.
Instance Variable app Undocumented
def __call__(self, environ: WSGIEnvironment, start_response: StartResponse) -> Iterable[bytes]:

Handle WSGI request with gzip decompression.

def __init__(self, application: WSGIApplication):

Initialize GunzipFilter with WSGI application.

app =

Undocumented