Skip to content

Latest commit

 

History

History

client

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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)