Class FileUploadHandler
Base class for streaming upload handlers.
Declaration
class FileUploadHandler
source linkDocumentation
Methods
▶ def file_complete(self, file_size) Signal that a file has completed. File size corresponds to the actual size accumulated by all the chunks.
Subclasses should return a valid ``UploadedFile`` object.
Overrides
This method is overriden in:
▶ def handle_raw_input(self, input_data, META, content_length, boundary, encoding=None) Handle the raw input from the client.
▶ def new_file(self, field_name, file_name, content_type, content_length, charset=None, ...) Signal that a new file has been started.
def new_file(
self,
field_name,
file_name,
content_type,
content_length,
charset=None,
content_type_extra=None,
)
Warning: As with any data from the client, you should not trust
content_length (and sometimes won't even get it).
Overrides
This method is overriden in:
▶ def receive_data_chunk(self, raw_data, start) Receive data from the streamed upload parser. ``start`` is the position in the file of the chunk.
Overrides
This method is overriden in:
▷ def upload_complete(self) Signal that the upload is complete. Subclasses should perform cleanup that is necessary for this handler.
▶ def upload_interrupted(self) Signal that the upload was interrupted. Subclasses should perform cleanup that is necessary for this handler.
Overrides
This method is overriden in:
Subclasses