-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy paths3download.py
57 lines (46 loc) · 1.53 KB
/
s3download.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# s3download.py
# It is an example that handles S3 buckets on AWS.
# It uses Client API (low-level) of Boto3.
# Download an object from a S3 bucket to a local file.
# You must provide 3 parameters:
# BUCKET_NAME = Name of the bucket
# OBJECT_NAME = Object file name in the bucket
# LOCAL_FILE_NAME = Local file name
import sys
import boto3
import botocore
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 s3download.py '\
'<BUCKET_NAME> <OBJECT_NAME> <LOCAL_FILE_NAME>')
sys.exit(1)
bucket_name = args[0]
key_name = args[1]
local_file_name = args[2]
print('Bucket: ' + bucket_name)
print('Object/Key: ' + key_name)
print('Local file: ' + local_file_name)
# Create an S3 Client
s3_client = boto3.client('s3')
# Download object
try:
print('Downloading object ...')
s3_client.download_file(bucket_name, key_name, local_file_name)
print('Downloaded')
except botocore.exceptions.ClientError as e:
if e.response['Error']['Code'] == "404":
print("Error: Not Found, problem with the parameters!!")
elif e.response['Error']['Code'] == "400":
print("Error: Bad request, problem with the bucket!!")
else:
raise
return
# This is the standard boilerplate that calls the main() function.
if __name__ == '__main__':
main()