Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
import boto3
s3_resource = boto3.resource("s3")
list(i for i in s3_resource.Bucket("annageller").objects.all()
if i.get()["ContentType"] == "text/csv")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment