How to store image file or file temporary using python or django rest_framework without saving in the database?
In dajngo rest_framework I did these things in a function based view.
temp_file = request.FILES['document_file']
Then, how I store this file temporary without saving in the database?