Azure Blob - Read using Python
Can someone tell me if it is possible to read a csv file directly from Azure blob storage as a stream and process it using Python? I know it can be done using C#.Net (shown below) but wanted to know the equivalent library in Python to do this. CloudBlobClient client = storageAccount.CreateCloudBlobClient(); CloudBlobContainer container = client.GetContainerReference("outfiles"); CloudBlob blob = container.GetBlobReference("Test.csv");* Yes, it is certainly possible to do so. Check out Azure Storage SDK for Python from azure.storage.blob import BlockBlobService block_blob_service =