Module uploadhandler
Base file upload handler classes, and the built-in concrete subclasses
source linkClasses
-
Base class for streaming upload handlers.
-
File upload handler to stream uploads into memory (used for small files).
-
This exception is raised by an upload handler that wants to skip a given file.
-
Upload handlers that have handled a file and do not want future handlers to run should raise this exception instead of returning None.
-
This exception is raised when an upload must abort.
-
Upload handler that streams data into a temporary file.
-
Any error having to do with uploading files.
Functions
▶ def load_handler(path, *args, **kwargs) Given a path to a handler, return an instance of that handler.
E.g.::
>>> from django.http import HttpRequest
>>> request = HttpRequest()
>>> load_handler('django.core.files.uploadhandler.TemporaryFileUploadHandler', request)
<TemporaryFileUploadHandler object at 0x...>