#!/usr/bin/python3 import boto3 s3 = boto3.resource('s3') bucket = s3.Bucket('prosnapshot') for obj in bucket.objects.all(): print(obj)