class InMemoryUploadedFile [source] A file uploaded into memory (i.e. stream-to-memory).
UploadedFile.content_type The content-type header uploaded with the file (e.g. text/plain or
UploadedFile.name The name of the uploaded file (e.g. my_file.txt).
class UploadedFile [source] During file uploads, the actual file data is stored in
UploadedFile.read() Read the entire uploaded data from the file. Be careful with this method: if the uploaded file is huge it
class MemoryFileUploadHandler [source] File upload handler to stream uploads into memory
TemporaryUploadedFile.temporary_file_path() [source] Returns the full path to the temporary
FileUploadHandler.handle_raw_input(input_data, META, content_length, boundary, encoding) [source] Allows
FileUploadHandler.receive_data_chunk(raw_data, start) [source] Receives a “chunk” of data
FileUploadHandler.upload_complete() [source] Callback signaling that the entire upload (all
Page 2 of 3