You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

duckdb-extension-mysql

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

duckdb-extension-mysql

Duckdb mysql extension

1.3.0
Source
pipPyPI
Maintainers
1

🦆DuckDB mysql extension as python package

PyPI - Version PyPI - Python Version

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.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts