Skip to content

Commit debb416

Browse files
committed
Updated Azure SDK version and refactoring
1 parent 9bad1a9 commit debb416

File tree

4 files changed

+52
-46
lines changed

4 files changed

+52
-46
lines changed

azureblobstoragedownload/README.md

+16-18
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ Download a file from a Blob Storage container in an Azure storage account.
1414
* Python 3
1515
* Azure SDKs for Python
1616

17-
* Install the Azure SDKs for Python.
17+
* You install individual Azure library packages on a per-project basis depending on your needs. It is recommended using Python virtual environments for each project. There is no standalone "SDK" installer for Python.
1818

19-
Install the latest stable version (supports Python 2.7 and 3.x) via pip:
19+
* Install the specified python packages.
2020

2121
```bash
22-
pip install azure
22+
pip install -r requirements.txt
2323
```
2424

2525
## Using the code
@@ -95,41 +95,39 @@ Download a file from a Blob Storage container in an Azure storage account.
9595
9696
1. Navigate to `Storage Account`.
9797
2. Select your storage account.
98-
3. Select `Access keys` and you can see your Storage account name, connection strings and account keys.
98+
3. Select `Access keys` and you can see your Storage account connection string.
9999
100100
The connection string looks like this:
101101
102-
```bash
103-
DefaultEndpointsProtocol=https;AccountName=<ACCOUNT_NAME>;AccountKey=<ACCOUNT_KEY>;EndpointSuffix=core.windows.net
104-
```
102+
```bash
103+
DefaultEndpointsProtocol=https;AccountName=<ACCOUNT_NAME>;AccountKey=<ACCOUNT_KEY>;EndpointSuffix=core.windows.net
104+
```
105105
106106
The application configuration is stored in the `app.cfg` file. The file content is:
107107
108108
```bash
109-
[StorageAuthentication]
110-
AccountName=<ACCOUNT_NAME>
111-
AccountKey=<ACCOUNT_KEY>
109+
[Configuration]
110+
StorageAccountConnectionString=<STORAGE_ACCOUNT_CONNECTION_STRING>
112111
```
113112
114-
You must edit the `app.cfg` file and replace the values of:
113+
You must edit the `app.cfg` file and replace the value of:
115114
116-
* `<ACCOUNT_NAME>` by the account name of your storage account.
117-
* `<ACCOUNT_KEY>` by the account key of your storage account.
115+
* `<STORAGE_ACCOUNT_CONNECTION_STRING>` by the connection string of your storage account.
118116
119117
The application uses this information for accessing your Azure storage account.
120118
121119
* Run the code.
122120
123-
You must provide 3 parameters:
121+
You must provide 3 parameters, replace the values of:
124122
125-
* `<CONTAINER_NAME>` = Name of the container
126-
* `<BLOB_NAME>` = Blob name in the container
127-
* `<LOCAL_FILE_NAME>` = Local file name
123+
* `<CONTAINER_NAME>` by name of the container.
124+
* `<BLOB_NAME>` by blob name in the container.
125+
* `<LOCAL_FILE_NAME>` by local file name.
128126
129127
Run application:
130128
131129
```bash
132-
python blobstoragedownload.py container-example blob-example local-file-example
130+
python blobstoragedownload.py <CONTAINER_NAME> <BLOB_NAME> <LOCAL_FILE_NAME>
133131
```
134132
135133
* Test the application.

azureblobstoragedownload/app.cfg

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
[StorageAuthentication]
2-
AccountName=<ACCOUNT_NAME>
3-
AccountKey=<ACCOUNT_KEY>
1+
[Configuration]
2+
StorageAccountConnectionString=<STORAGE_ACCOUNT_CONNECTION_STRING>

azureblobstoragedownload/blobstoragedownload.py

+33-25
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
import sys
1313
import os
1414
import configparser
15-
from azure.storage.blob import BlockBlobService, PublicAccess
15+
from azure.storage.blob import BlobServiceClient
1616

1717

18-
def loadcfg():
18+
def load_cfg():
1919
"""
20-
Read storage authentication information from a config file
20+
Read storage account authentication information from a config file
2121
and return the values in a dictionary.
2222
"""
2323
config_file = 'app.cfg'
@@ -28,7 +28,31 @@ def loadcfg():
2828
print('Config file "' + config_file + '" does not exist')
2929
sys.exit(1)
3030

31-
return dict(config.items('StorageAuthentication'))
31+
return dict(config.items('Configuration'))
32+
33+
34+
def download_blob(storage_account_conn_str, container_name, blob_name, local_file_name):
35+
"""
36+
Download a Blob from a blob storage container.
37+
"""
38+
try:
39+
# Create the BlobServiceClient object which will be used to create a blob client
40+
blob_service_client = BlobServiceClient.from_connection_string(storage_account_conn_str)
41+
42+
# Create a blob client using the blob name
43+
blob_client = blob_service_client.get_blob_client(container=container_name, blob=blob_name)
44+
45+
# Download the local file from the Blob container
46+
print('Downloading the Blob from the Blob Storage container to the local file ...')
47+
with open(local_file_name, "wb") as download_file:
48+
download_file.write(blob_client.download_blob().readall())
49+
print("\nDownloaded")
50+
51+
except Exception as e:
52+
print("\nError:")
53+
print(e)
54+
55+
return
3256

3357

3458
def main():
@@ -49,28 +73,12 @@ def main():
4973
local_file_name = args[2]
5074
print('Local file: ' + local_file_name)
5175

52-
# Read storage authentication information
53-
config_dict = loadcfg()
54-
cfg_account_name = config_dict['accountname']
55-
cfg_account_key = config_dict['accountkey']
56-
57-
# Create the BlockBlockService that is used to call the Blob service for the storage account
58-
block_blob_service = BlockBlobService(account_name=cfg_account_name, account_key=cfg_account_key)
76+
# Read storage account authentication information
77+
config_dict = load_cfg()
78+
cfg_storage_account_conn_str = config_dict['storageaccountconnectionstring']
5979

60-
try:
61-
if block_blob_service.exists(container_name):
62-
if block_blob_service.exists(container_name, blob_name):
63-
# Download the blob to a local file
64-
print('Downloading a Blob from a Blob Storage to a local file ...')
65-
block_blob_service.get_blob_to_path(container_name, blob_name, local_file_name)
66-
print("\nDownloaded")
67-
else:
68-
print('\nError: Blob "' + blob_name + '" does NOT exist.')
69-
else:
70-
print('\nError: Blob Storage container "' + container_name + '" does NOT exist.')
71-
except Exception as e:
72-
print("\nError:")
73-
print(e)
80+
# Download a Blob from a blob storage container
81+
download_blob(cfg_storage_account_conn_str, container_name, blob_name, local_file_name)
7482

7583
return
7684

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
azure-storage-blob

0 commit comments

Comments
 (0)