class documentation

All parsers should extend `BaseParser`, specifying a `media_type` attribute, and overriding the `.parse()` method.

Method parse Given a stream to read from, return the parsed representation. Should return parsed data, or a `DataAndFiles` object consisting of the parsed data and files.
Class Variable media_type Undocumented
def parse(self, stream, media_type=None, parser_context=None): (source)

Given a stream to read from, return the parsed representation. Should return parsed data, or a `DataAndFiles` object consisting of the parsed data and files.