Django Azure upload file to blob storage
问题 I've got an application that needs to upload a file to an Azure Blob Storage container. I've been trying for a very long time and followed every tutorial to no avail. I have installed the following: pip3 install django-storages[azure] Here is my settings.py file: DEFAULT_FILE_STORAGE = 'backend.custom_azure.AzureMediaStorage' STATICFILES_STORAGE = 'backend.custom_azure.AzureStaticStorage' STATIC_LOCATION = "static" MEDIA_LOCATION = "http://{AZURE_ACCOUNT_NAME}.blob.core.windows.net/media"