Skip to content

santosh-d3vpl3x/duckdb_extensions

Repository files navigation

DuckDB extensions on pypi

PyPI - Version PyPI - Python Version


Table of Contents

Available extensions

  • 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

Installation

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]
)

License

duckdb-extensions is distributed under the terms of the MIT license.

About

pip installable duckdb extensions published to pypi

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages