EnvironHeaders

An object that represents the headers as present in a WSGI environment.

This object is a wrapper (with no internal state) for a WSGI request object, representing the CGI-style HTTP_* keys as a dictionary. Because a CGI environment can only hold one value for each key, this dictionary is single-valued (unlike outgoing headers).


Methods

f __init__(self, environ) ...

f __getitem__(self, item) ...

f __setitem__(self, item, value) ...

f __delitem__(self, item) ...

f __iter__(self) ...

f keys(self) ...

f __contains__(self, item) ...

f __cmp__(self, other) ...

f __len__(self) ...

See the source for more information.