I'm trying to list the containers under an azure account using the python sdk - why do I get the following?
>>> azure.storage.blob.baseblobservice.BaseBlobService(account_name='x', account_key='x').list_containers()
>>> <azure.storage.models.ListGenerator at 0x7f7cf935fa58>
Surely the above is a call to the function and not a reference to the function itself.
you get the following according to source code it return ListGenerator(resp, self._list_containers, (), kwargs)
you can access what you want as follow:
python2:
>>> from azure.storage.blob.baseblobservice import BaseBlobService
>>> blob_service = BaseBlobService(account_name='x', account_key='x')
>>> containers = blob_service.list_containers()
>>> for c in containers:
print c.name
python3
>>> from azure.storage.blob.baseblobservice import BaseBlobService
>>> blob_service = BaseBlobService(account_name='x', account_key='x')
>>> containers = blob_service.list_containers()
>>> for c in containers:
print(c.name)
for python 3 and more recent distribution of azure
libraries, you can do:
from azure.storage.blob import BlockBlobService
block_blob_service = BlockBlobService(account_name=account_name, account_key=account_key)
containers = block_blob_service.list_containers()
for c in containers:
print(c.name)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With