Package wsgitools :: Module middlewares :: Class SubdirMiddleware
[hide private]
[frames] | no frames]

Class SubdirMiddleware

source code


Middleware choosing wsgi applications based on a dict.

Instance Methods [hide private]
 
__init__(self, default, mapping={})
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, default, mapping={})
(Constructor)

source code 

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

Parameters:
  • mapping ({str: wsgi app})
  • default (wsgi app)
Overrides: object.__init__

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

source code 

wsgi interface

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