class documentation

class LocalResponse(BaseResponse):

View In Hierarchy

A thread-local subclass of BaseResponse with a different set of attributes for each thread. There is usually only one global instance of this class (response). Its attributes are used to build the HTTP response at the end of the request/response cycle.
Class Variable body Undocumented
Class Variable ​_cookies Undocumented
Class Variable ​_headers Undocumented
Class Variable ​_status​_code Undocumented
Class Variable ​_status​_line Undocumented

Inherited from BaseResponse:

Method add​_header Add an additional response header, not removing duplicates.
Method copy Returns a copy of self.
Method delete​_cookie Delete a cookie. Be sure to use the same domain and path settings as used to create the cookie.
Method get​_header Return the value of a previously defined header. If there is no header with that name, return a default value.
Method iter​_headers Yield (header, value) tuples, skipping headers that are not allowed with the current response status code.
Method set​_cookie Create a new cookie or replace an old one. If the secret parameter is set, create a Signed Cookie (described below).
Method set​_header Create a new response header, replacing any previously defined headers with the same name.
Class Variable content​_length Undocumented
Class Variable content​_type Undocumented
Class Variable expires Undocumented
Instance Variable status Undocumented
Method __contains__ Undocumented
Method __delitem__ Undocumented
Method __getitem__ Undocumented
Method __init__ Undocumented
Method __iter__ Undocumented
Method __repr__ Undocumented
Method __setitem__ Undocumented
Method ​_get​_status Undocumented
Method ​_set​_status Undocumented
Method close Undocumented
Class Variable bad​_headers Undocumented
Class Variable default​_content​_type Undocumented
Class Variable default​_status Undocumented
Property charset Return the charset specified in the content-type header (default: utf8).
Property headerlist WSGI conform list of (header, value) tuples.
Property headers An instance of HeaderDict, a case-insensitive dict-like view on the response headers.
Property status​_code The HTTP status code as an integer (e.g. 404).
Property status​_line The HTTP status line as a string (e.g. 404 Not Found).
body =

Undocumented

_cookies =

Undocumented

_headers =

Undocumented

_status_code =

Undocumented

_status_line =

Undocumented