1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
# coding: utf-8
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
"""
FILE: blob_sammples_enumerate_blobs.py
DESCRIPTION:
This sample demos how to enumerate a container and print all blobs.
USAGE: python blob_sammples_enumerate_blobs.py
Set the environment variables with your own values before running the sample:
1) STORAGE_CONNECTION_STRING - the connection string to your storage account
"""
import os
import sys
from azure.storage.blob import ContainerClient
def main():
try:
CONNECTION_STRING = os.environ['STORAGE_CONNECTION_STRING']
except KeyError:
print("STORAGE_CONNECTION_STRING must be set.")
sys.exit(1)
container = ContainerClient.from_connection_string(CONNECTION_STRING, container_name="mycontainerenumerate")
container.create_container()
blob_list = container.list_blobs()
for blob in blob_list:
print(blob.name + '\n')
if __name__ == "__main__":
main()
|