pip install duckdb-extensions duckdb-extension-excel
You are ready to install the extension for duckdb.
from duckdb_extensions import extension_importer
extension_importer.import_extension("excel")
Verify that the extension is installed.
import duckdb
print(
duckdb.sql("""SELECT installed
FROM duckdb_extensions() where
extension_name='excel' or
list_contains(aliases, 'excel')""")
.fetchone()[0]
)
duckdb-extension-excel
is distributed under the terms of the MIT license.