Index of the format module
-
m
httpencode.format
...
- Implements Format objects, which represent different formats and
serializations. Concrete implementations instantiate Format.
-
C
Format
...
- Instances of this class represent some particular format. This is
the entry point for both response and request handling for the
format.
- f parse_request ... - Takes the WSGI environment and parses the request for this format, possibly using a shortcut to avoid decoding.
- f choose_mimetype ...
- f responder ... - Returns a WSGI application that serves the given data, with an optional explicit content_type and optional additional headers.
- f parse_wsgi_response ... - Parses the app_iter.
- f parse_response ... - Parses the HTTPResponse-like object
-
f
__init__
...
-
- name:
- A nice readable name for the format.
- f make_wsgi_input_length ...
- C RPCResponder ...
-
C
Format
...
- Instances of this class represent some particular format. This is
the entry point for both response and request handling for the
format.