add script for listing files

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-09-20 01:01:18 +03:00
parent 61ddbc4d5b
commit 45237a0dc3
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 21 additions and 0 deletions

21
s3utils/list_bucket_files.py Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env python3
import os
import boto3
import botocore
bucket_name = 'status-im'
s3 = boto3.resource(
's3',
region_name='ams3',
endpoint_url='https://ams3.digitaloceanspaces.com',
aws_access_key_id=os.environ['DO_ID'],
aws_secret_access_key=os.environ['DO_SECRET']
)
bucket = s3.Bucket(bucket_name)
for obj in bucket.objects.all():
if obj.key == 'index.html':
continue
print('{:<30}'.format(obj.key))