Class MultiPartParser
A rfc2388 multipart/form-data parser.
Declaration
class MultiPartParser
source linkDocumentation
``MultiValueDict.parse()`` reads the input stream in ``chunk_size`` chunks
and returns a tuple of ``(MultiValueDict(POST), MultiValueDict(FILES))``.
Methods
▷ def IE_sanitize(self, filename) Cleanup filename from Internet Explorer full paths.
▶ def __init__(self, META, input_data, upload_handlers, encoding=None) Initialize the MultiPartParser object.
:META:
The standard ``META`` dictionary in Django request objects.
:input_data:
The raw post data, as a file-like object.
:upload_handlers:
A list of UploadHandler instances that perform operations on the
uploaded data.
:encoding:
The encoding with which to treat the incoming data.
▷ def handle_file_complete(self, old_field_name, counters) Handle all the signaling that takes place when a file is complete.
▶ def parse(self) Parse the POST data and break it into a FILES MultiValueDict and a POST MultiValueDict.
Return a tuple containing the POST and FILES dictionary, respectively.
Reexports