Created
June 29, 2015 21:52
-
-
Save amatthies/280621dac95c6222ba3a to your computer and use it in GitHub Desktop.
Access a public s3 resource (anonymously) using boto3 https://github.com/boto/boto3/issues/134#issuecomment-116766812
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
from botocore.handlers import disable_signing | |
resource = boto3.resource('s3') | |
resource.meta.client.meta.events.register( | |
'choose-signer.s3.*', disable_signing) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment