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!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…