class documentation

class LimitedInputFilter:

Constructor: LimitedInputFilter(application)

View In Hierarchy

WSGI middleware that limits the input length of a request to that specified in Content-Length.

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

Handle WSGI request with input length limiting.

def __init__(self, application: WSGIApplication):

Initialize LimitedInputFilter with WSGI application.

app =

Undocumented