- duckdb-extension-httpfs
- duckdb-extension-spatial
- duckdb-extension-parquet
The architectures supported:
- linux_amd64_gcc4
- osx_arm64
- osx_amd64
- windows_amd64
Compatible with duckdb==1.0.0
First install duckdb-extensions
.
pip install duckdb-extensions
Then one of the extensions.
pip install duckdb-extension-httpfs
You are ready to install the extension for duckdb.
from duckdb_extensions import extension_importer
extension_importer.import_extension("httpfs")
Verify that the extension is installed.
import duckdb
print(
duckdb.sql("""SELECT installed
FROM duckdb_extensions() where extension_name='httpfs'""")
.fetchone()[0]
)
duckdb-extensions
is distributed under the terms of the MIT license.