Azure Python Sdk For Blobs - Importerror: Cannot Import Name 'blobclient'
I'm writing code to download a Blob from Azure but I can't import BlobClient. from azure.storage.blob import BlobClient cs = 'CONNECTION_STRING' blob = BlobClient.from_connection
Solution 1:
I was using stable version whereas the BlobClient
only exists in pre-release.
This solved my problem:
pip3 install azure-storage-blob --pre
Post a Comment for "Azure Python Sdk For Blobs - Importerror: Cannot Import Name 'blobclient'"