Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.7k views
in Technique[技术] by (71.8m points)

python 3.x - List all Objects in DigitalOcean Bucket

I need to list all of the objects in a bucket on my digital ocean space. Here is my code as of now.

s3 = boto3.resource('s3', region_name=region_name, endpoint_url=endpoint_url, aws_access_key_id=key, aws_secret_access_key=secret)

bucket = s3.Bucket(bucket_name)

for object in bucket.objects.all():
    print(object)

Raises the following Exception

NoSuchKey: An error occurred (NoSuchKey) when calling the ListObjects operation: Unknown

Any ideas on what could be going wrong or what I need to add. Thanks!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I do not see any syntax or semantical issue with your code. You might be facing issue due to If the path to the object contains any spaces or the object name with any special characters or URL-encoded characters.

Please refer troubleshoot the 404 "NoSuchKey" error document from AWS. I would suggest to check for last three bullet items from this document.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...