-
Notifications
You must be signed in to change notification settings - Fork 2
/
getacl.py
executable file
·32 lines (26 loc) · 1015 Bytes
/
getacl.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
#!/usr/bin/env python
import boto.exception
import boto.s3.connection
import boto.s3.acl
import argparse
import os
s3_access_key=os.environ['S3_ACCESS_KEY_ID']
s3_secret_key=os.environ['S3_SECRET_ACCESS_KEY']
parser = argparse.ArgumentParser(description='get bucket acl')
parser.add_argument('--port', type=int, action='store', default=8000 )
parser.add_argument('--host', type=str, action='store', default='localhost')
parser.add_argument('--name', type=str, action='store', default='mybucket')
parser.add_argument('--key',type=str, action='store', default=s3_access_key)
parser.add_argument('--secret',type=str, action='store', default=s3_secret_key)
args = parser.parse_args()
connection = boto.s3.connection.S3Connection(
aws_access_key_id= args.key,
aws_secret_access_key= args.secret,
is_secure=False,
port=args.port,
host=args.host,
calling_format=boto.s3.connection.OrdinaryCallingFormat(),
)
bucket = connection.get_bucket(args.name)
result = bucket.get_xml_acl()
print result