-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy paths3move.py
78 lines (68 loc) · 2.61 KB
/
s3move.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# s3move.py
# It is an example that handles S3 buckets on AWS.
# It uses Resource API (high-level) of Boto3.
# Move an object from a S3 bucket to another S3 bucket.
# You must provide 3 parameters:
# SOURCE_BUCKET = Source bucket name
# SOURCE_OBJECT = Source file name
# DESTINATION_BUCKET = Destination bucket 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 s3move.py '\
'<SOURCE_BUCKET> <SOURCE_OBJECT> <DESTINATION_BUCKET>')
sys.exit(1)
source_bucket_name = args[0]
source_key = args[1]
destination_bucket_name = args[2]
destination_key = source_key
print('From - bucket: ' + source_bucket_name)
print('From - object: ' + source_key)
print('To - bucket: ' + destination_bucket_name)
print('To - object: ' + destination_key)
# Instantiate the service resource object
s3_resource = boto3.resource('s3')
try:
print('Moving object ...')
# Instantiate the destination bucket
dest_bucket = s3_resource.Bucket(destination_bucket_name)
# Copy the object
copy_source = {
'Bucket': source_bucket_name,
'Key': source_key
}
dest_bucket.copy(copy_source, destination_key)
# Instantiate the source bucket
source_bucket = s3_resource.Bucket(source_bucket_name)
# Delete the object from source bucket
source_obj = source_bucket.Object(source_key)
response = source_obj.delete()
print(response)
print('\nMoved')
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!!")
elif e.response['Error']['Code'] == "403":
print("Error: Forbidden, bucket forbidden!!")
elif e.response['Error']['Code'] == "AccessDenied":
print("Error: Access denied!!")
elif e.response['Error']['Code'] == "InvalidBucketName":
print("Error: Invalid bucket name!!")
elif e.response['Error']['Code'] == "NoSuchBucket":
print("Error: No such bucket!!")
else:
raise
return
# This is the standard boilerplate that calls the main() function.
if __name__ == '__main__':
main()