Skip to main content

ClickHouse Connect

A high performance core database driver for connecting ClickHouse to Python, Pandas, and Superset

  • Pandas DataFrames (numpy and arrow-backed). Requires pandas 2.0 or later.
  • Numpy Arrays
  • PyArrow Tables
  • Polars DataFrames
  • Superset Connector
  • SQLAlchemy Core (select, joins, lightweight deletes; limited feature set)

ClickHouse Connect uses the ClickHouse HTTP interface for maximum compatibility. An experimental chDB backend is also available for running queries against an embedded in-process engine with get_client(interface='chdb'). Install it with pip install clickhouse-connect[chdb].

Installation

pip install clickhouse-connect

ClickHouse Connect requires Python 3.10 or higher.

Upgrading from 0.x

The 1.0 release includes breaking changes. If you are upgrading from a 0.15.x or earlier release, see MIGRATION.md for a guide to the changes and their replacements.

Superset Connectivity

ClickHouse Connect is fully integrated with Apache Superset. Previous versions of ClickHouse Connect utilized a dynamically loaded Superset Engine Spec, but as of Superset v2.1.0 the engine spec was incorporated into the main Apache Superset project and removed from clickhouse-connect in v0.6.0. If you have issues connecting to earlier versions of Superset, please use clickhouse-connect v0.5.25.

When creating a Superset Data Source, either use the provided connection dialog, or a SqlAlchemy DSN in the form clickhousedb://{username}:{password}@{host}:{port}.

SQLAlchemy Implementation

ClickHouse Connect includes a lightweight SQLAlchemy dialect implementation focused on compatibility with Superset and SQLAlchemy Core. Both SQLAlchemy 1.4 and 2.x are supported. SQLAlchemy 1.4 compatibility is maintained because Apache Superset currently requires sqlalchemy>=1.4,<2.

Supported features include:

  • Basic query execution via SQLAlchemy Core
  • SELECT queries with JOINs (including ClickHouse-specific strictness, USING, and GLOBAL modifiers), ARRAY JOIN (single and multi-column), FINAL, SAMPLE, and materialized CTEs
  • VALUES table function syntax
  • Lightweight DELETE statements
  • Alembic schema migrations (autogenerate, upgrade/downgrade, ClickHouse engine support)

A small number of features require SQLAlchemy 2.x. Values.cte() specifically requires SQLAlchemy 2.0.42 or later. Certain literal-rendering behaviors also require SQLAlchemy 2.x. All other dialect features, including those used by Superset, work on both 1.4 and 2.x.

Basic ORM usage works for insert-heavy, read-focused workloads: declarative model definitions, CREATE TABLE, session.add(), bulk_save_objects(), and read queries all function correctly. However, full ORM support is not provided. UPDATE compilation, foreign key/relationship reflection, autoincrement/RETURNING, and cascade operations are not implemented. The dialect is best suited for SQLAlchemy Core usage and Superset connectivity.

Alembic Migrations

ClickHouse Connect supports Alembic for schema migrations, including autogeneration of migration scripts from SQLAlchemy metadata. ClickHouse table engines (MergeTree, ReplacingMergeTree, etc.) and dictionaries are preserved through the migration lifecycle.

Supported operations include create/drop table, add/alter/drop/rename column, type and nullability changes, defaults, comments, and ClickHouse-specific features like IF EXISTS guards, column placement with AFTER, and operation-level clickhouse_settings on column add/alter/drop.

To get started, install the Alembic extra:

pip install clickhouse-connect[alembic]

See the Alembic worked example for a full end-to-end walkthrough covering setup, autogeneration, upgrades, downgrades, and manual migration operations.

Asyncio Support

ClickHouse Connect provides native async support using aiohttp. To use the async client, install the optional async dependency:

pip install clickhouse-connect[async]

Then create a client with clickhouse_connect.get_async_client(). See the run_async example for more details.

Complete Documentation

The documentation for ClickHouse Connect has moved to ClickHouse Docs

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

clickhouse_connect-1.7.1.tar.gz (205.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

clickhouse_connect-1.7.1-pp310-pypy310_pp73-win_amd64.whl (366.8 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-1.7.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (400.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

clickhouse_connect-1.7.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

clickhouse_connect-1.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (362.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

clickhouse_connect-1.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (368.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

clickhouse_connect-1.7.1-cp314-cp314t-win_arm64.whl (376.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

clickhouse_connect-1.7.1-cp314-cp314t-win_amd64.whl (398.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

clickhouse_connect-1.7.1-cp314-cp314t-win32.whl (377.3 kB view details)

Uploaded CPython 3.14tWindows x86

clickhouse_connect-1.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

clickhouse_connect-1.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

clickhouse_connect-1.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

clickhouse_connect-1.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

clickhouse_connect-1.7.1-cp314-cp314t-macosx_11_0_arm64.whl (407.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

clickhouse_connect-1.7.1-cp314-cp314t-macosx_10_15_x86_64.whl (415.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

clickhouse_connect-1.7.1-cp314-cp314-win_arm64.whl (366.4 kB view details)

Uploaded CPython 3.14Windows ARM64

clickhouse_connect-1.7.1-cp314-cp314-win_amd64.whl (384.1 kB view details)

Uploaded CPython 3.14Windows x86-64

clickhouse_connect-1.7.1-cp314-cp314-win32.whl (364.1 kB view details)

Uploaded CPython 3.14Windows x86

clickhouse_connect-1.7.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

clickhouse_connect-1.7.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

clickhouse_connect-1.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

clickhouse_connect-1.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

clickhouse_connect-1.7.1-cp314-cp314-macosx_11_0_arm64.whl (386.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

clickhouse_connect-1.7.1-cp314-cp314-macosx_10_15_x86_64.whl (397.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

clickhouse_connect-1.7.1-cp313-cp313-win_arm64.whl (361.7 kB view details)

Uploaded CPython 3.13Windows ARM64

clickhouse_connect-1.7.1-cp313-cp313-win_amd64.whl (379.4 kB view details)

Uploaded CPython 3.13Windows x86-64

clickhouse_connect-1.7.1-cp313-cp313-win32.whl (361.2 kB view details)

Uploaded CPython 3.13Windows x86

clickhouse_connect-1.7.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

clickhouse_connect-1.7.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

clickhouse_connect-1.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

clickhouse_connect-1.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

clickhouse_connect-1.7.1-cp313-cp313-macosx_11_0_arm64.whl (385.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

clickhouse_connect-1.7.1-cp313-cp313-macosx_10_13_x86_64.whl (396.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

clickhouse_connect-1.7.1-cp312-cp312-win_arm64.whl (362.3 kB view details)

Uploaded CPython 3.12Windows ARM64

clickhouse_connect-1.7.1-cp312-cp312-win_amd64.whl (381.0 kB view details)

Uploaded CPython 3.12Windows x86-64

clickhouse_connect-1.7.1-cp312-cp312-win32.whl (361.8 kB view details)

Uploaded CPython 3.12Windows x86

clickhouse_connect-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

clickhouse_connect-1.7.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

clickhouse_connect-1.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

clickhouse_connect-1.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

clickhouse_connect-1.7.1-cp312-cp312-macosx_11_0_arm64.whl (387.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

clickhouse_connect-1.7.1-cp312-cp312-macosx_10_13_x86_64.whl (398.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

clickhouse_connect-1.7.1-cp311-cp311-win_arm64.whl (364.0 kB view details)

Uploaded CPython 3.11Windows ARM64

clickhouse_connect-1.7.1-cp311-cp311-win_amd64.whl (381.2 kB view details)

Uploaded CPython 3.11Windows x86-64

clickhouse_connect-1.7.1-cp311-cp311-win32.whl (361.0 kB view details)

Uploaded CPython 3.11Windows x86

clickhouse_connect-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

clickhouse_connect-1.7.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

clickhouse_connect-1.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

clickhouse_connect-1.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

clickhouse_connect-1.7.1-cp311-cp311-macosx_11_0_arm64.whl (389.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

clickhouse_connect-1.7.1-cp311-cp311-macosx_10_9_x86_64.whl (400.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

clickhouse_connect-1.7.1-cp310-cp310-win_arm64.whl (364.2 kB view details)

Uploaded CPython 3.10Windows ARM64

clickhouse_connect-1.7.1-cp310-cp310-win_amd64.whl (380.9 kB view details)

Uploaded CPython 3.10Windows x86-64

clickhouse_connect-1.7.1-cp310-cp310-win32.whl (361.8 kB view details)

Uploaded CPython 3.10Windows x86

clickhouse_connect-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

clickhouse_connect-1.7.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

clickhouse_connect-1.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

clickhouse_connect-1.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

clickhouse_connect-1.7.1-cp310-cp310-macosx_11_0_arm64.whl (391.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

clickhouse_connect-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl (402.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file clickhouse_connect-1.7.1.tar.gz.

File metadata

  • Download URL: clickhouse_connect-1.7.1.tar.gz
  • Upload date:
  • Size: 205.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for clickhouse_connect-1.7.1.tar.gz
Algorithm Hash digest
SHA256 b981e9596b59492602a949e5729fe91d01cda8aca08f561e4be43626a2e4e636
MD5 80f25026c7341830603eb0d7717f24c2
BLAKE2b-256 dfc1cc03097a4c8065be1d2de06a428938e06b0a4af4ae9c243984e2926d4625

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1.tar.gz:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 beea22f30a68abe45f4e9925b65b3e38bcc8b18fd5fd88f03824d112b4dbab19
MD5 f1017a49c77d17077a679715ce8d56d7
BLAKE2b-256 a803a47a40bd4cd9c413b81ebc58af3a7ac713e5de51e9ed676de80cb93b37e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cae7c4c09f8ec24256208e5d92816bfb0bab8f7ef20e2854483622a14a9a9f59
MD5 33019e4133c3cc8a9c6a91f5ecf3d288
BLAKE2b-256 9f8b979d126fb2c25d591cbd8483947b1056453c7685118bf0ae9a4cdea183d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aec2a032bfe05178f449d68dfb956d98f9fb05aa8f1c543c785de51acf966d30
MD5 0929c93ecbccda2375595714056ff169
BLAKE2b-256 f81d68a96038887fb599374a904e2b30bf66ac808b8a7aa95e8b9e3cb4040cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0ad82bc7cb714511efd6774e6f4833d1152c9eb1154be201596c88aab2b0193
MD5 611a6783af7c5c2dc2b328b649cc5da1
BLAKE2b-256 4388723dc6fd81d286a27422093cdf87c5bc0a6256af3310a8b71d14abc7c7d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 15c812ab50ee62644080e937ecd34e8652e2946909bbacdfacfad716f8ea2634
MD5 b91eda616a3b4a57a683248b1294aa18
BLAKE2b-256 73a461a6d73ee01862c5979ee86d7b0304f91d24d40787e79f5d9e58aa3a6192

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ec358ac90085d6c5aee7537448873ab3b816b4355f379e454f1d7826c5a1bc6a
MD5 9171c2cb0540052f125dc08475cf0721
BLAKE2b-256 6b126adccbfbae30af382e484832c720c54307416406dccc651e0ffbd3da6036

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314t-win_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a378516124913e51571cb3f0ee4bb945b452d37beea705494a22255f0dda6dc7
MD5 18d23c418a2fdfaf1c60ac64fc88bfc5
BLAKE2b-256 f2f9e01332b72e052e0d7df4f0230b29a9649dbea5d4d633aec13adba017b7a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8be2d4155bdc800f7d397c95a4b04bbe41a20d3030ef78f910fbc7d474960198
MD5 3e683259d52f77c042bbca34cc9f696d
BLAKE2b-256 c3a3609b140bc884f4c0081e3f52e10beeea35446fbc58ac0a892ecbc0f724ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314t-win32.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf3e5ad5f621667d728b02c5fd83615db4d791c378bc810703bbb8eef81d587c
MD5 56e28e4d98cd71b634c954d586031086
BLAKE2b-256 e64d6a971084666ae6eba6bc0c7c71aea9e56da65af9a6972c4cac9e0ef5508d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d30126c777998f0cf24d1be6f0406d5b4c142def2f42584c885389b06af2e8e8
MD5 1ac973a38d023d2f8a9b733a09f0be00
BLAKE2b-256 f2c88aa0c95038361c3f07130de4b44841e62b74a98f20236e8138b2da7c56c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 edb162a44b092558ed1d90f8320c73360f707093af36082bff12566febed6aab
MD5 0720f2afd20ba5c26869e2d284380158
BLAKE2b-256 e1e8d30976531aa2c38e973be71c019f8af71d6118965fc62b9119e1e7237a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd4849c9fb6b547054d54fce85f28f34bb9cf9364bb6c04c3a6bfd86a8ebf8fd
MD5 5708f126ccffb938058ade7f0e5fb7be
BLAKE2b-256 c910bc41b0b59321ad3edb5fafe172c4f5f988389d4e9f6d8d9e556f9b44f18b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ca31723271617d8155b5ec0e18a4c9db1dc8de5093f6727d8024c627c3a5fbd
MD5 e58f6e8fe22fbd41da19f48c8b8a1bae
BLAKE2b-256 b7baa47ff1e34640556c2f3306546d8d90648cd647276df574053928f330ad33

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e3ff12817be3d2eead59dafd6c325504ceeda83ca4a43d2d09c21cba88abfba0
MD5 450760e6ac433c05edb8a9762088e3f6
BLAKE2b-256 2c49abcabe1c50fc55f942b24cbee3ea3d4a15fa10bc537127df24b57e40c88c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 35bae1d3c9fcae36e0273bd06e7f2babe53e8387c26da48bcc0ff873a5b75af5
MD5 799c1174bd85e4d629c325fdb6b86914
BLAKE2b-256 1bc529e419c9bbb3b5c970b884d4fb8a0df62580b46cb33fc01af313440f9e3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dffb0fc85ec77b73baac2d23e65ce22d11444166305169de7b5f53c5ef72176a
MD5 fefec42499f5dd615d6996c0e1140c09
BLAKE2b-256 14e6f6897d9256fbd9c7f23c5ad2612386aab0411c91f4093862ff902b1f3f69

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f51871394164d92c49d8aa2a12c0e93cf3668df92a56bd76977fba7211b341a5
MD5 8d69cf551d80a9c6c0a61537253ebae3
BLAKE2b-256 7c091e64032a975d5aab82b85b1697911836437ab1f61d8db858f6f4950aefeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314-win32.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 761bce91e688c2e57afd0e1643a814c7749e9cc53a30ef2a32f36898d372cf48
MD5 912e605abf2aef09bdffdcbfc67ce176
BLAKE2b-256 6214dc0e6a9f701b0824d7b3b5343fb779a8993caf1082fc992ecfa6224c65b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec076e1fe00c704e6767623c540918d89a69dfb7a8a6fb9bc0fccef77f7ea640
MD5 c6693367897f2b3b863c2d52cd85ed9d
BLAKE2b-256 c34bdc687139b92cdf1849c06fd537dcb5d1b7906b4ce450b0ef05cb00df126c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2b3f7018be5dcefabb306cf32ad0ab62d1fb85f9c20a1e6a043af4808a73f96
MD5 6e5c783f17c03c32d5de249cf0bd5333
BLAKE2b-256 caaf48b06be0e21824a79d14eada80ea332445a28b15a2b9fc515338aa864e07

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 691c44ebed0ba909563751fff47f7f8dba204dd2fcd5e62cb956debd2f3ea743
MD5 5981fa23abc621a7ee5c88abe474c811
BLAKE2b-256 b03df264a459c575f066a2607997fc032c62037d6394174c04a0ac2373ff0d48

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e7d483775f0a3b27fc571112a52c157513123930663faecd010686977d82c31
MD5 2c0866ba888780e72e4d4dff40e67926
BLAKE2b-256 dd2c5f97e2dd508cc0e79a568fad7dfa8de548e38cffc1c04bef6085fe257f0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 706082fbd9f6cbf300f2f284310cfdeb7bbe21fcf87f04eeb8e1e40d7da1272a
MD5 2f813037d25a567828490c1a65ca4fc3
BLAKE2b-256 9c98d84730fe44de3a5f42d0d52e227569513a006dbdb4d1101ecca7341f32cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9c089c7f1998d76a584d40354df42d951ff125f659338a1c2d8145cab20982d6
MD5 a776c129ca6c37a753eb22462168d552
BLAKE2b-256 85b2e61ae2f473d9c1a1c24f8d94a5f95b5fecac86f0bbf3e19b17216b153124

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 482dd96c25e906a9bb3f1a5232b6a66c46d5ed66ed96a83f74a5aad2d9822b5d
MD5 bc6c1b753fb466fb2108378c8b513bce
BLAKE2b-256 bd45a995b93549a3082c9ffb67b6374c9885745469eb624670e75a7696ed7f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c9ce4576845b5b401026ade9083e2f62665141961e6183c5fce14b2db2b92bef
MD5 466e727ed5b80fdc9363d70511ea29c4
BLAKE2b-256 4568e1d5eecf9fc47f1c6c0954dc7088b1b8926bb97ee683bd6f26d4f08718e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp313-cp313-win32.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df7aeb227bb7d1316bf4f9ddbc672cf23041d9cef52aab52e6ceceef745f7287
MD5 8ad9c114df3e29e7246eca8d609509c9
BLAKE2b-256 2bc79da1ffa1f2765cc7c75f62a270ea43bf662e95aee19e53ecedd40f1cb608

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb6980378a4ab41fe7e8b3bc1b821cffce7913da38f92815ec9ee285113b8aae
MD5 297adc3b65612e0d7bd2421de9e16f42
BLAKE2b-256 f9861f25eba32e7dcc74a30df222728c960c7f5a99a9b4f5225acff572222476

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23bfa3efd57096c3df3c7924f0d41aaa4ac6c5da80f1dda1148ea49da61ccdd4
MD5 27247ebfbee0247d18d1dde70baa2f43
BLAKE2b-256 ea0c3af9dcc33c220b126af65e38df46113e7062732fdc18984cb6b18ba9bf91

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e768c6d87ef546f61d628623df94c51c3b3cb0d3baae3dce163e23ba9a056e2f
MD5 4330bb905ca7d916bbd27f2a751dac78
BLAKE2b-256 73e8b6bf7ad7e47d0f7ba475a6c0c63bd06b0dd77f795491cc6e4bd0361b5291

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3fc61f42468f90807d41b3cc7025ae1b405a7ab2c1e5f0944cc09c690496ead
MD5 6ec0e59c829acc373bba660e6075ddde
BLAKE2b-256 7b87ffa3ab90c4d08c83686ac0e102788f18b3045ffbc1bf23b3caafecbea635

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4fb8b974ced274cdce113c4d4fcd6cf068c0dd1a3fc26e52ea0af08b23d6758c
MD5 395a973d30ddd9d71f42deafa64d3c51
BLAKE2b-256 227dec7f30fc41786bb1faaeca11d827c510c89acddcb29a286a58583e089be1

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b4bb84387d1b4b2cc5e58bb1a789d985a96627cec1d4a1ca65fcda9bdccddbb1
MD5 cc4f9c94cb68064d5f13c93d52bd1f6e
BLAKE2b-256 c8399a54b1e8236b982f79e14dd1f38e0cfc9986dc8717b5d02306f3c8d16ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b7e82f9d481cc8527d6aafbd4b7bfecaa28c79e6fe6e1b7c525624552d6b0511
MD5 cffac8267a33508f2e2d3ef7786078d9
BLAKE2b-256 951f1f5e0c4616fd1441539ff6dd585984d6a2d7863b617ef99d94f9c02dfd9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 eaafea096922835cfeb18f22e892e2d810e3b6e070d72dd45c7cc368cfa0c69e
MD5 03efee5092db1a2da237cef224b3e86d
BLAKE2b-256 ef9708387db3206cc0ebc7fcdcb7ae30d2d5449b335649d0bcf769af02c1ba2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp312-cp312-win32.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d82c93fced971dc08a438fd9c7b9eac55cba4fa61985db993051423a81dd4505
MD5 c52b7e66816d6db4bdab704fe1fef4f9
BLAKE2b-256 16c0e4d318a9871b3307c94a44c1f262128c9f8362ccb05fcdab33188d2d103b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e359f12fe90421919f709a4264e14027044ee1a35d62a39d66b14b65a949d0c
MD5 847817d7312648879f4eec538cee413b
BLAKE2b-256 7d1d879a6a4495cf1ddfa1cad9ce9a24e5d11f27bad1c9cf511edfdcaf9d44aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f99b10207111f008bb90763a6816124f6e5b81d1e50f964de75a4196e840378
MD5 72a4f21964ab3ce3257c5ba1aed90a67
BLAKE2b-256 64f39e1aa7b3b4dac1a200ccf432adabaca86ac2ce2fd301212911644ab65f8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87739228651a19a4f3b7bf5b9ff936facafafed687a9a0ed22b787b4cfb2aebc
MD5 54e58eb9aca175e6e4daff94e42f3716
BLAKE2b-256 c2c9c2e6d67826b29be40ee2a7b56aa1058686458c3695b4b7fe555215397c5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7913d6084216e0d3614c60ca9c5e4b2b8f5d94e872b29aba2d0935cba20e890a
MD5 cade216c4667903afaf81e312ffa3bf6
BLAKE2b-256 41cec737f7da1334847366120d59ecaca0db5fcfbe1dd5b1a53dafe747488bb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 22816ea20ea40ef93594a8fe7e6ff1c93ecb0f41090a3346a37c6e2e5dd56c7e
MD5 e01119aae6dbf24aa98f072b8ef3c10a
BLAKE2b-256 2e7599a5f7c4a8feb5e6aec09a63b7d676650c114c340aefeb6e90891ec638d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 23764939ee48c935561c141fdce4eed3249db3690acb0a962e62c2ffda6f848c
MD5 5202d100bbbf35e56bd4ea79dd79295c
BLAKE2b-256 8a14acc69b5baaf4e74cd1734867470b0d5b2e1c2d1ad3df58dbedf63eadde49

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dab9e09de6b305f960db915b553c8a451969083539f90445ebc2dfef90617bbe
MD5 05feda64ec1816de3517c838d419976b
BLAKE2b-256 2a8644e8fa1bb774176e29c8e66297ed74ab769930b1dd19997b4f30b9194a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 04298da9602deadd4be973182abbc3f48d0a27d87c9e2d7c156f448a307f3e53
MD5 3308f96fc193a0e55ab62882bbfae139
BLAKE2b-256 06dace4f8b073b3bc0e746b60fa77a664d73266b7b74a619b21641aabc30ef5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp311-cp311-win32.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06a38ae09d25b3d1e8874a6ba7912ec99d0cb6346b9a8c7fd67e7b586e6c5335
MD5 8bb89c4af8ec424551855c611a9511bf
BLAKE2b-256 6053454afadaa67b74234fec0cf6755d70eff06b4b18026b6051ad05fba673d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66f6a60e435b1c6a5521e0e9c0c6aed8c3cda17a34e8947bd60ab5cd21e9e4b8
MD5 514eca5cde01078bfc7af0518022a67f
BLAKE2b-256 dc951e0a502f99f06703944e02fc62dd4b14e3e8912d5cd93b1e4f72982cba3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5581698f1328b43069d1eb4c754fbd73c25472b6791a345f723bf678bba662c7
MD5 d5199d9919ff0327c9d5d7386875a84e
BLAKE2b-256 9f1185e1c347be1705592afe68dff05fd8a1b2672d0ad2ca5206eadfef905938

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94ee190aebdc7823634ab161b52eb8886a71b34e5c70627cc2aeebb1978eb123
MD5 db5744dd6c88a6326fdeb838cf3455ba
BLAKE2b-256 df4bc116e26dd706ff23218d25c6dcc3ebb6e8e2124a8fb55cdf7bc8cfa46a55

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79d5e52c831b3c2d325fe2a7b997fd246a48e430e362d9ada847d36174ecaf7d
MD5 d88c1944bfe3c9ce998314b662ede09a
BLAKE2b-256 6872d8720b065f4af5263c01fb5b15dacb163c4945d78967ceaf37732ac7a70c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f595e7bf98ae47d2acc41708de798f978cf503e9ae982659b323ab1cdf21fb9
MD5 88c00ed384f5f52a2b60722a342f09cd
BLAKE2b-256 906dc18d2ee6593b2c63fc83463e9d26cc4e621b98e67f8fd629236069672003

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 fd3cfafd0f055ef19e3b366aa01634542a57f66fe7b3847f95bd84ed72446d81
MD5 8d5e6f4488c504fde9a5962bae5a8070
BLAKE2b-256 7b2121548c7f89b4cabf0694bbd9e811a45a529e9351da65d13bfc110bad6433

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp310-cp310-win_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 493debe5c67a8a741cda348f3fa14b4f9a807d2bce679585d19535d630f09066
MD5 78f748f431b4172c7aafbe9afde76841
BLAKE2b-256 718906018123bf8777675b39917811afa9db97ddbc2f88ad5c34119706a4e589

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2d20fc013ad64c805a628d67322e620bb28eebda10e357be0b3a0d1f5929bfab
MD5 52eee4509d0d52772e396f9ee530009b
BLAKE2b-256 1acd7cbc309872c73aa287505fca19c59d8c6abf4f227b735ef31c6716b60097

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp310-cp310-win32.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea28ea15011c2494c1978ddd6a21edaa8b12b276ef521ea45cfa5ee76722cf79
MD5 3387fe5207f64f35be9e13169e6e4e0e
BLAKE2b-256 9c67c80fe17d3d143ec2eb4c3cc25da141223ce35546d67aa4bbc63f7548749b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35f5693ec77d0e6113f694a5d04d930487afbfb1b26839c183077d0e1ca718b9
MD5 146381153b02ba4089c24689c1b0dd08
BLAKE2b-256 4fe92075a82deda5bf021f11c3e623f7ec6b44f47cf081d72c60e61c36f73d86

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4088105ce8dc16195bc418e7a7a93600182d210e00b661bc27cc907126eaafe
MD5 6f29889f359750e739e79ec6e4a2c531
BLAKE2b-256 74c8f0224bc43ed93ea47d622b2c14c485548d3ccad9ff4da05b2fd63c6b8383

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9d9d292ef99bd696a525922e393a3de3b53c9664a2d97753b2466f5e2e40110
MD5 7614376175872d2062885904d03b9879
BLAKE2b-256 ec850b3f56507fa20d8802d30bc918bf08feb592bea695283999e9f8aae9c6d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03ae3add633153e07dac29f0051afa7115cbf58374b16f160391bf9184d2a7e0
MD5 efff80dbd528ecb074ceb2ff02fe2093
BLAKE2b-256 52cb7e4bd6746f8c8126a3fd8819a18c67cb5a500a44c2f6a083a9da89b6c70f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickhouse_connect-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 044a028e1769930deae10bf7e00dbcf76e25f312245237dbb8fcb04a642dead7
MD5 0913137e63a7338c6cdbfe4e2089c01b
BLAKE2b-256 f9b1eebef39b14cd9160d54618a899ef81665d0f25c7bfc83d2ea512b602b83a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on ClickHouse/clickhouse-connect

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page