We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ba36a4 commit 2fc088dCopy full SHA for 2fc088d
1 file changed
timdex_dataset_api/metadata.py
@@ -161,6 +161,14 @@ def _configure_duckdb_s3_secret(
161
If a scope is provided, e.g. an S3 URI prefix like 's3://timdex', set a scope
162
parameter in the config. Else, leave it blank.
163
"""
164
+ # install httpfs extension
165
+ conn.execute(
166
+ """
167
+ install httpfs;
168
+ load httpfs;
169
170
+ )
171
+
172
# establish scope string
173
scope_str = f", scope '{scope}'" if scope else ""
174
0 commit comments