Table of Contents
A Naive Thread Safe clickhouse-client-pool based on clickhouse_driver.
clickhouse-client-pool is distributed on PyPI as a universal wheel and is available on Linux/macOS and Windows and supports Python 2.7/3.6+.
$ pip install clickhouse-client-pool
from clickhouse_client_pool import Client
client = Client('127.0.0.1', 9000, max_connections=10)
client.execute("select 1")
clickhouse-client-pool is distributed under the terms of
at your option.