Package wsgitools :: Module filters :: Class WSGIFilterMiddleware
[hide private]
[frames] | no frames]

Class WSGIFilterMiddleware

source code


This wsgi middleware can be used with specialized BaseWSGIFilters to modify wsgi requests and/or reponses.

Instance Methods [hide private]
 
__init__(self, app, filterclass)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
gen([bytes])
__call__(self, environ, start_response)
wsgi interface
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, app, filterclass)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Parameters:
  • app - is a wsgi application.
  • filterclass (BaseWSGIFilters subclass) - is a subclass of BaseWSGIFilter or some class that implements the interface.
Overrides: object.__init__

__call__(self, environ, start_response)
(Call operator)

source code 

wsgi interface

Parameters:
  • environ ({str, str})
Returns: gen([bytes])