Upload CSV file into Microsoft Azure storage account using python
I am trying to upload a .csv file into Microsoft Azure storage account using python. I have found C-sharp code to write a data to blob storage. But, I don't know C# language. I need to upload .csv file using python. Is there any example of python to upload contents of CSV file to Azure storage? I found the solution using this reference link. My following code perfectly work for uploading and downloading .csv file. #!/usr/bin/env python from azure.storage.blob import BlockBlobService from azure.storage.blob import ContentSettings block_blob_service = BlockBlobService(account_name='<myaccount>',