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-sqlite3

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-sqlite3

Duckdb sqlite3 extension

1.3.0
Source
pipPyPI
Maintainers
1

🦆DuckDB sqlite3 extension as python package

PyPI - Version PyPI - Python Version

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.

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