InMemoryUploadedFile
January 14, 2023 |
django
Summary #
file_object = request.FILES[“uploadedfile”]
file_object is the instance of InMemoryUploadedFile. ref: link
Details #
They are used to store submitted files through forms in memory(RAM).
file_object = request.FILES[“uploadedfile”]
file_object is the instance of InMemoryUploadedFile. ref: link
They are used to store submitted files through forms in memory(RAM).