🦆DuckDB sqlite3 extension as python package

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