A collection of tools and utilities for working with ClickHouse databases, including data loading, schema management, and query helpers. Current version 0.37.dev0 (development), with regular releases. Targets Python >=3.8, <3.14.
pip install clickhouse-toolsetNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize a client and run a simple query.
Pin to a stable release like 0.36.x when available, or use a fork.
client.execute('SELECT 1', as_dict=True)For v0.36+: load_dataframe(client, table='my_table', dataframe=df). For older: load_dataframe(df, client, 'my_table').