🦆DuckDB mysql extension as python package

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