We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c7b2f2 + 8663dab commit 22b3ee5Copy full SHA for 22b3ee5
fiboa_sda/ingest.py
@@ -5,6 +5,8 @@
5
import tempfile
6
7
import boto3
8
+from botocore import UNSIGNED
9
+from botocore.config import Config
10
import geopandas as gpd
11
import pandas as pd
12
import pyarrow as pa
@@ -18,7 +20,7 @@
18
20
settings = get_settings()
19
21
logger = get_logger(__name__)
22
BUCKET_NAME = "us-west-2.opendata.source.coop"
-S3_CLIENT = boto3.client('s3', region_name="us-west-2")
23
+S3_CLIENT = boto3.client('s3', region_name="us-west-2", config=Config(signature_version=UNSIGNED))
24
25
# pyarrow schema used when writing out parquet
26
# files to BQ
0 commit comments