Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 339 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 339 Bytes

gduck Python client

Client implementation to utilize remove gduck server.

Usage

from gduck import Connection

conn = Connection("localhost:50051")

with conn.transaction(database_file="database.duckdb", mode="read_write") as trans:
    counts = trans.query_value("SELECT COUNT(*) FROM videos WHERE comments > ?", 10)