We can import the azure.storage file but not access the BlobService attribute
The documentation says to use the following import statement:
from azure.storage import BlobService
But this will result in the following error:
ImportError: cannot import name BlobService
We tried the following:
import azure.storage ... foo = azure.storage.BlobService(...)
But this got the following error:
AttributeError: 'module' object has no attribute 'BlobService'
We also tried all of the above with "azure.storage.blob" instead of "azure.storage"
We tried to update the azure-storage package, but it was updated (version 0.30.0)
We also tried to remove azure-storage and install the entire azure package, but we got the same results. We tried to install them with both pips and condos, but with the same results both times.
I know that the output assumes that this version of azure.storage does not have a BlobService attribute, but the documentation explicitly states that it is imported.
https://azure.microsoft.com/en-us/documentation/articles/machine-learning-data-science-create-features-blob/
python azure azure-storage-blobs
user3664942
source share