what is the best way to send files to Google cloud storage with django.
this moment I'm getting the file with a post method
file = request.FILES['image']
but when I try to send to GCS
from google.cloud import storage
client = storage.Client(projectName)
bucket = client.get_bucket(bucketName)
blob = bucket.blob(fileName)
blob.upload_from_filename(file)
I get this erros InMemoryUploadedFile so I have to save the file in a temp and after that send to GCS, but it is slow.