-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathblobstoragedownload.py
88 lines (68 loc) · 2.74 KB
/
blobstoragedownload.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/python
# -*- coding: utf-8 -*-
# blobstoragedownload.py
# It is an example that handles Blob Storage containers on Microsoft Azure.
# Download a file from a Blob Storage container in an Azure storage account.
# You must provide 3 parameters:
# CONTAINER_NAME = Name of the container
# BLOB_NAME = Blob name in the container
# LOCAL_FILE_NAME = Local file name
import sys
import os
import configparser
from azure.storage.blob import BlobServiceClient
def load_cfg():
"""
Read storage account authentication information from a config file
and return the values in a dictionary.
"""
config_file = 'app.cfg'
if os.path.exists(config_file):
config = configparser.RawConfigParser()
config.read(config_file)
else:
print('Config file "' + config_file + '" does not exist')
sys.exit(1)
return dict(config.items('Configuration'))
def download_blob(storage_account_conn_str, container_name, blob_name, local_file_name):
"""
Download a Blob from a blob storage container.
"""
try:
# Create the BlobServiceClient object which will be used to create a blob client
blob_service_client = BlobServiceClient.from_connection_string(storage_account_conn_str)
# Create a blob client using the blob name
blob_client = blob_service_client.get_blob_client(container=container_name, blob=blob_name)
# Download the local file from the Blob container
print('Downloading the Blob from the Blob Storage container to the local file ...')
with open(local_file_name, "wb") as download_file:
download_file.write(blob_client.download_blob().readall())
print("\nDownloaded")
except Exception as e:
print("\nError:")
print(e)
return
def main():
# Make a list of command line arguments, omitting the [0] element
# which is the script itself.
args = sys.argv[1:]
if len(args) < 3:
print('Not enough parameters.\n'\
'Proper Usage is: python blobstoragedownload.py '\
'<CONTAINER_NAME> <BLOB_NAME> <LOCAL_FILE_NAME>')
sys.exit(1)
container_name = args[0]
print('Container: ' + container_name)
blob_name = args[1]
print('Blob: ' + blob_name)
local_file_name = args[2]
print('Local file: ' + local_file_name)
# Read storage account authentication information
config_dict = load_cfg()
cfg_storage_account_conn_str = config_dict['storageaccountconnectionstring']
# Download a Blob from a blob storage container
download_blob(cfg_storage_account_conn_str, container_name, blob_name, local_file_name)
return
# This is the standard boilerplate that calls the main() function.
if __name__ == '__main__':
main()