Small fix to S3 download script
#3
by
luciaquirke
- opened
Hey all, the download script initially failed for me with botocore.exceptions.NoCredentialsError: Unable to locate credentials
and I fixed it by updating this line:
- s3 = boto3.client('s3')
+ s3 = boto3.client("s3", config=Config(signature_version=UNSIGNED))
Thanks for all your work on this amazing dataset!