Getting object has no attribute 'read' when trying to download file from Azure not public blob storage with Azure Storage SDK for Python
blob_service = BlockBlobService(account_name = account_name, account_key = blob_key)
blob_service.get_blob_to_path(container_name,remote_file_name,local_file_name)
I generated SAS token with expiration date but there is no information how to use it with BlockBlobService ? It works fine for public files.
