Amazon web services – Reading whole S3 bucket in one request
i have a bucket with 100,000 images(pngjpg) and i want to read them all in one s3 request. this is my code: # geting connection to s3 s3 = boto3.resource('s3') bucket = s3.Bucket(bucket_name) # geting list of all objectsummery in…