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

Class NoWriteCallableMiddleware

source code


This middleware wraps a wsgi application that needs the return value of start_response function to a wsgi application that doesn't need one by writing the data to a BytesIO and then making it be the first result element.

Instance Methods [hide private]
 
__init__(self, app)
Wraps wsgi application app.
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)
(Constructor)

source code 

Wraps wsgi application app.

Overrides: object.__init__

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

source code 

wsgi interface

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