module documentation

Parsers are used to parse the content of incoming HTTP requests. They give us a generic way of being able to handle various media types on the request, such as form content or json encoded data.

Class BaseParser All parsers should extend `BaseParser`, specifying a `media_type` attribute, and overriding the `.parse()` method.
Class DataAndFiles Undocumented
Class FileUploadParser Parser for file upload data.
Class FormParser Parser for form data.
Class JSONParser Parses JSON-serialized data.
Class MultiPartParser Parser for multipart form data, which may include file data.