Skip to main content

ClickHouse Database Core Driver for Python, Pandas, and Superset

Project description

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, and SAMPLE
  • 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() and certain literal-rendering behaviors. 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

Project details


Release history Release notifications | RSS feed

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.6.0.tar.gz (194.0 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.6.0-pp310-pypy310_pp73-win_amd64.whl (353.9 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-1.6.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (387.4 kB view details)

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

clickhouse_connect-1.6.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (382.2 kB view details)

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

clickhouse_connect-1.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (349.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

clickhouse_connect-1.6.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (355.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

clickhouse_connect-1.6.0-cp314-cp314t-win_arm64.whl (364.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

clickhouse_connect-1.6.0-cp314-cp314t-win_amd64.whl (386.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

clickhouse_connect-1.6.0-cp314-cp314t-win32.whl (364.6 kB view details)

Uploaded CPython 3.14tWindows x86

clickhouse_connect-1.6.0-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.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

clickhouse_connect-1.6.0-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.6.0-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.6.0-cp314-cp314t-macosx_11_0_arm64.whl (395.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

clickhouse_connect-1.6.0-cp314-cp314t-macosx_10_15_x86_64.whl (402.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

clickhouse_connect-1.6.0-cp314-cp314-win_arm64.whl (353.3 kB view details)

Uploaded CPython 3.14Windows ARM64

clickhouse_connect-1.6.0-cp314-cp314-win_amd64.whl (371.3 kB view details)

Uploaded CPython 3.14Windows x86-64

clickhouse_connect-1.6.0-cp314-cp314-win32.whl (351.3 kB view details)

Uploaded CPython 3.14Windows x86

clickhouse_connect-1.6.0-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.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

clickhouse_connect-1.6.0-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.6.0-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.6.0-cp314-cp314-macosx_11_0_arm64.whl (373.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

clickhouse_connect-1.6.0-cp314-cp314-macosx_10_15_x86_64.whl (384.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

clickhouse_connect-1.6.0-cp313-cp313-win_arm64.whl (348.5 kB view details)

Uploaded CPython 3.13Windows ARM64

clickhouse_connect-1.6.0-cp313-cp313-win_amd64.whl (366.7 kB view details)

Uploaded CPython 3.13Windows x86-64

clickhouse_connect-1.6.0-cp313-cp313-win32.whl (348.4 kB view details)

Uploaded CPython 3.13Windows x86

clickhouse_connect-1.6.0-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.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

clickhouse_connect-1.6.0-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.6.0-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.6.0-cp313-cp313-macosx_11_0_arm64.whl (372.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

clickhouse_connect-1.6.0-cp313-cp313-macosx_10_13_x86_64.whl (384.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

clickhouse_connect-1.6.0-cp312-cp312-win_arm64.whl (349.1 kB view details)

Uploaded CPython 3.12Windows ARM64

clickhouse_connect-1.6.0-cp312-cp312-win_amd64.whl (368.1 kB view details)

Uploaded CPython 3.12Windows x86-64

clickhouse_connect-1.6.0-cp312-cp312-win32.whl (349.1 kB view details)

Uploaded CPython 3.12Windows x86

clickhouse_connect-1.6.0-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.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

clickhouse_connect-1.6.0-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.6.0-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.6.0-cp312-cp312-macosx_11_0_arm64.whl (374.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

clickhouse_connect-1.6.0-cp312-cp312-macosx_10_13_x86_64.whl (385.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

clickhouse_connect-1.6.0-cp311-cp311-win_arm64.whl (350.9 kB view details)

Uploaded CPython 3.11Windows ARM64

clickhouse_connect-1.6.0-cp311-cp311-win_amd64.whl (368.4 kB view details)

Uploaded CPython 3.11Windows x86-64

clickhouse_connect-1.6.0-cp311-cp311-win32.whl (348.0 kB view details)

Uploaded CPython 3.11Windows x86

clickhouse_connect-1.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

clickhouse_connect-1.6.0-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.6.0-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.6.0-cp311-cp311-macosx_11_0_arm64.whl (376.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

clickhouse_connect-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl (387.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

clickhouse_connect-1.6.0-cp310-cp310-win_arm64.whl (351.1 kB view details)

Uploaded CPython 3.10Windows ARM64

clickhouse_connect-1.6.0-cp310-cp310-win_amd64.whl (368.1 kB view details)

Uploaded CPython 3.10Windows x86-64

clickhouse_connect-1.6.0-cp310-cp310-win32.whl (348.7 kB view details)

Uploaded CPython 3.10Windows x86

clickhouse_connect-1.6.0-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.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

clickhouse_connect-1.6.0-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.6.0-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.6.0-cp310-cp310-macosx_11_0_arm64.whl (378.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

clickhouse_connect-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl (389.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for clickhouse_connect-1.6.0.tar.gz
Algorithm Hash digest
SHA256 e4eb8b83b848f4ca4b984899acd62b0a60f310cbaa559d83519b7477968392ed
MD5 b3efc59744fb66b629082f243a27bf2a
BLAKE2b-256 ac31aeda81546adc2004742933ed7b741716e3581fea5e4fd6c4dd8a196f82cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0.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.6.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 691782a911a0696bb1ff644a309f4c6940473ee48d6c5171b13dab96d8cf8ecd
MD5 ee3208b1d84b7253d280483b1d1f11e6
BLAKE2b-256 e644a8175274dfdb76126539d76f0a72f07fedb33a0a1bd03f8d96a7fd6250ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-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.6.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6570d07223ea5e4c4c21fece323cc8741b7711d31c6cb3fda8d1a62fa2d5b8d4
MD5 a5d2252f15ca068c0c55b7fb2541bb38
BLAKE2b-256 a8fc792d7afea48d7da018e0042efa0ffcb6453319f2f528d971c4120a2e4208

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 743787fd9d1505f55854b333b81b3fa92bf950d988b66a553aaa55c7bfd2f70c
MD5 78508f4f29d663d53465bc178782d7b6
BLAKE2b-256 1632b4e587af62a569d870398c30be9774666b567efbc48c6c0a3dfacbcc0c2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fdea3ba73b77c636a30fc74c7f2c4c53ed0fcbf0da13498ff4122c701f10362
MD5 a467a035b434ce32f38a1b997476b8e4
BLAKE2b-256 c91fd12813f900d0e81467f4047611aeca00fcfd1e8ba997c274b1e4be39933b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e02c6abbfe777f4d0afdf7726ac30168514c46390b15e12ecf95d873c7b20969
MD5 b439e35c1a9ffa82d46ae0c2f8e11241
BLAKE2b-256 1fc55bfdf84c047b2bd96750c70a2f75b7d0e0ddb641c89ff4486001f1b24c25

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fe4bdd4e09f52bff46c2f920877a08a26a44d91fdb5fc0be76edb67395440192
MD5 bbe8672fc7af24b4570e1905ead800db
BLAKE2b-256 a8741fcd2854aed712204d62eb1365e42962cb1dfd6ecfad8948bf30742cda13

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 79caafbd2b1364d4b63c2e7c625cb424c8572b9cedc62b4ac2289cfbdf875487
MD5 fd391be9df02037c5b4b69b045ee69b1
BLAKE2b-256 2fa8c90ea156f7753ce1034c44a2cddcbac3ca7e0bcc0c5e18a12f52ff286cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 30a183095bc367dcc4695869754e36ce2177264d0ef79421990ee24700810ee0
MD5 1c8bbb0534dc61f90e4cd94c23ceb424
BLAKE2b-256 2183016567c0212d9684789d2d9d2565feaf03a4fe5bb3a8127be57a37ab6263

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 508d3b7cc893b5d889b92702cc7dc4a1c975f59ee8da383054076969e4cb17c3
MD5 2d7f1d77e4a031049d38d89da0538e00
BLAKE2b-256 8b0c7021c7227df21bdce7059e7fd8275c70452d364987b8ace945366289eb39

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01367cc75ddd3081f750ccba65c252385feff72f38f68613ea02dd056d047922
MD5 a98daf5569df42314e636aa0593ac496
BLAKE2b-256 3726818d83db4d5b5a208956c600737d3d1e987eca8c104d3b25e6450c42aada

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-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.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9dac7ce419ced91f035bd26a86dd49067461547cb9e3b9b1d7c5975b460b650c
MD5 642aa4411663c4ad344156e024ab62ab
BLAKE2b-256 22bfc85f78c4063b51b454ccd071b8d703c46a869a6edb77b718a558b05f5500

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c793706c87ab04b29a58e5bc2c0f53806c257859e9ceb859b2840c5aabe56402
MD5 12079a466a3cc5aa67ce1a8eb24fcb7a
BLAKE2b-256 2ce78594f336a47f39ea801c4d3bedf949f1ed50277fafe40edf4e58e62153f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e64e332983fb268350abc76119c14da7b0640373a77ecf4f310240c3fdb4b6d
MD5 a8099b8bb5c5a091373c6906048cddda
BLAKE2b-256 5a01544eb85b743556328d596a8ac11f115ae1192a0378c82e25d42d3b960525

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9090c972f3d3ab40fc046913cf51c611345d603c922483e3239633f2cda16a3c
MD5 27a4ac83aca28e34966db5047c7fe247
BLAKE2b-256 e18bc4d9a9e1bb21132323caab2784f1e04595c37945b6f3acb1644914dbba6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3cc6bdeafc743739f809671eb3c8fe9af1701981a43c624d9f5bea1e1409e5c4
MD5 fae8d44cd6fd375f88543b4d648add8a
BLAKE2b-256 02a26355a74d18bc79d8c5ba9bb5886689b93fc9c67380d2eda06c267bd339ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9a7af9bf7b992e5098ed9a0c2edf18d19c6acb2ccc77ee1d2da4e7e5d9dc7ddc
MD5 628fc2c042fee16d6a3acb8b5ffe5825
BLAKE2b-256 72360843ddb2bd27c4b2412895a6fd951ec3fd9cf674f058cae90fa678650e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bdd153037df79b684a30372395681bd673b562e9d6c5159c3a08bffc38ad8185
MD5 3bfc81c9e087025d037502149d120744
BLAKE2b-256 2e1231f99f76437dca6fbbb33f064a36b2ba3b621d2a317e6770a46b2868b90f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bcdb6039bb55870229ec46784840f1420362e3979c74abdc6a53d1ae95718eb
MD5 c53d77b7b4055c782640f14b8ccbbb1a
BLAKE2b-256 7caa06e5d48c902af21d08a8a1162e50ce6aae510cac0d8bf6c1dc1c03ac618f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34969b2a57d9372921aef2b0b51fb858d81ce952c5249b6cb5a0d459e846854c
MD5 53c71d64ed889a947928f93d2390bb52
BLAKE2b-256 1d47b4ed658107e42ff6168428dbc2f02ecf6466dd8f810411038a834de4799f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-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.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 163eb12e7aaeefe9e51a483d3ad40502e15ac2ef94cf1f5b7fe8e9f5303d161b
MD5 a1997ce568af068c8aa31880b55fbb5b
BLAKE2b-256 11c82c59851c115242556d1b10629dde02b19f3fd232ab69654e483aa5a809e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c924a2dea34578eda62e99a95988134ddaf4f66aa3f842ebd0980973b6acad56
MD5 13b72f0fe75e2845a9ff9b8e21fcbdb1
BLAKE2b-256 874f853d131e34cd85cf66ac5a9fdbaef80920c359873e216ac2310417d042e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51905921e7c98a11e7551663d263f28a715b14fdda191569fc71ddcde964ce52
MD5 6e6e5cc43eed79c4bcfa4c33be45fb04
BLAKE2b-256 d1384ea401d123541348f90026f7e0387e324fe624a880773c318c30d30832b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c62bd3cc58aa0f6d4cac7012d6e5698cdc23111e3938a809596a5af8459470bd
MD5 33a8220ad724376529a378462d22803b
BLAKE2b-256 ba2a4d4c036fcea08ed797991d3e74eb8550d8c10219d095867cb8a6030cd90d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cd4c1dee496ad3a811237ff8066084c18cdaa46a046f9e0eeacce107ac29c83c
MD5 8212dc7f90a9c22df8a45aa745c880a1
BLAKE2b-256 204675a37ee92929327870ab371e3186074cd4806ed16cd5ae604cfd0f54f674

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 483e34a7841dbf3d2863e784a129503cc37a910a05464f2f48ce3e9b2f0fc007
MD5 b977faac3a3c22fc66eb0788e91c6ec7
BLAKE2b-256 428a0f13f9f02af1c564fab34346c1496a8254eaa5cb81f10111e72550ea5472

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1a84eb6d545e2647a51b3b4ffa0da4a49f308aaaa096e58c44fb749c171a7d4a
MD5 04cfc192f2e48f9532ca60726040858d
BLAKE2b-256 931e6569d51fea552e69af33feec06f3236c450329ef8f9d19b107888ca574fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75390e6ff6b398a88e0cac4907f785763fc9e476314cbafcfb24553bdbd92d28
MD5 851ff2a391b42f579cdf7007a6abb01e
BLAKE2b-256 c5539613b4b70b66d662e1a0cffecd55fce5eedc398c3aefd08422298c3e88ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 794735a62d0a46688d50652876bcb50116c5e912577e9a469ef6ed1aa52b4d7b
MD5 4fc67889ea29e493e110259be341cb03
BLAKE2b-256 330c31ce83989fa10606c7108c04caf1d9b662048918e9f2ac0aa2a4fa407929

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-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.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 444564bad257b8923005431d661e347e5360cd686aae67091de3796a465cfec1
MD5 3677352888cf28ba949caef4e73ba76d
BLAKE2b-256 1a123a6d1b11c01bf936af1168868a2d953e72494537ef142d247fe1fa62d1da

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a34e72d1ae6f71be491b2d44bd10d082d04c9e2e2a04d4774498e965d933b21d
MD5 33a4bef21978b1cc4cc87a53c9e41136
BLAKE2b-256 8aebafc65f349ef9b38a865ffe58b8fcc9e5bcb14e5a0aa1fb663f07e9c71f99

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d4303987b36ca075cbbe2cff3439ad017f56e1cf2bd936f83b2e6be222ae62f
MD5 034362932296c5abfd90a336bfada9fb
BLAKE2b-256 f56eabc3575964f6f737274619362cdf83a9c1f21d75febff9eda6301167c15e

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8128dfe4a17aef265d5ba2bb5f2f5a0d5fa76e6aca357c71a17da378c1b30ea6
MD5 d7e232629052c11fc820c5d49911915d
BLAKE2b-256 e0586daab3e2c2e5e12bb3f658a665c8b36b635b45bf2bb879c429ab736455ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cf66e5bcfba8a183e40485efcfc80329ec75104e22dd02485fe73c0ab9073b19
MD5 a2c38763cf03ce2b57c219b220584ae5
BLAKE2b-256 fe4ec5bf9989371204cfeca68b7f1663509b62662fd25134cd31b81be3cae2cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2f8b8060a8277509db77b14a01ed70683a0d9becba7a9994a5e59e42e9f98b37
MD5 06a66d46f88d51f5cdea46ab021bcd3a
BLAKE2b-256 4572e939a153b6266a4ae4ef32820567a5cc5aa4069b3adbc59b02b861fd140f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bd8de68d176a807fd16b85c3c5639c25bbdc81c203217f9e985e9560357fecd5
MD5 60f82b90622e523fb2e6c0d961a82cfc
BLAKE2b-256 121e793672cd06e32ba16d09e11b687651bda05c9e82e8a64c34c5ebb9f0a7a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5285b9005d5a3ba41d6f148c957e4df8e37a38ad27835a4ad9c31fe21083149
MD5 23ddf41d8c6b33da747d5c6066bde9bd
BLAKE2b-256 666b3cf46e7c270852673307f61d5206875beb6a367853b4d0787bd6d97fb01a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4372dbcbd7b1c897c8d7062832468f82af27fa731c7488421ec7f0a882e1580b
MD5 5a51f7884f37a74182ed691208bda3cd
BLAKE2b-256 9091e809ac0953394009137eba72bb2f727c6a63e55a1c019a07a8f834589ae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-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.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 30bb77e7aa842550d5265c4aaa3e432b01440fd116d63e7e79ae79c380971ade
MD5 d6dfe0d1d07ec0fe2d416c51ba5710ce
BLAKE2b-256 c7bb78a23f75d3750e10a6740c9643505f4b5c5e2cdb2fee558b3f2af4803b39

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 069f105173cd04263d3bb710381edae341dc9a3aa42fb4673017a617a5a1237a
MD5 367e34f5ce8c8bf75eb6cd4e789b313a
BLAKE2b-256 ea1f66ed0c9fa39be881f6e1b5b0f570564f6a03b5ee938c614a9e7aa967f63b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 064144e1a7f6075ade3c13b8ce49517ca92f86c0c4842bd2abb52a475c026025
MD5 ea828da57c69f0c93db197cd87ae52a9
BLAKE2b-256 ea8d11521bebc3c89c8f47e94bdaa5abea49b15946c1d0b9d1464e0efd6623d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7043480f1459ddd791480e3ea560a1def81dfd6462eab0c9ada54946e72918af
MD5 75112528bb3b31ba27b0bac0cdc31d82
BLAKE2b-256 230e9c6a165ecfd0708df9bec011b6adedb2e627b5778b041f7e35ca4bf942b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 fe2736f4cb520c4403f1f6b078ed3ed6f41a6ee8972328082240001853d8639e
MD5 2c38fe58c2f04ddc465efe1c8db96e0c
BLAKE2b-256 0bea0c1eaafcb78d5e33d13b0ca531f5f4ee0e1101ea2eb8bfd8a22dde2bdd0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5135f91841e9df5827faa24f3b2436d4ac8242e74a88a8d47922e31a4383b712
MD5 03ea4d56bbc4b1b525e3f025680d4ba7
BLAKE2b-256 12e1ebe765c6d4173f20ccee002e41289d30f2e40203cedee9e3ee0450ee4cd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2d5888d76be3bf1ddea5a210522572d66abcaf651b45ff7c5a1014ec08fe7565
MD5 08961239394bee233536ea8d9a60772d
BLAKE2b-256 791d10f1d37e1feb8840e959dc554ca8cfb5c8b2b0eea93c3e2c0b55a38f43a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d541a1a75f08d62b7e0059f77efeff26f2b0829fa0d543e1e1edcce270c78a06
MD5 5b54573c641818d3c87a5f76fbe2e50d
BLAKE2b-256 febd24b758e548e34a3a0e661ddd43ffb981629b4ca9b1d0bbf89567bb261a75

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d56348f1a39c8bd872106c4af92faa532fbdd8d66e72c588e9b4dd676ca2dbbd
MD5 c39363caa3205912bd0833dcb4a0044e
BLAKE2b-256 a403004af313f0edb521b12967f3d80cb8ac465c1a06c964f3ba305297b7872e

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-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.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed28787dd00a34b003fe24de4953e15b172058d875279336d4ee5d8f585acc50
MD5 9433f438017f484a7dd092a6ee10857e
BLAKE2b-256 c2f1dda7de7bce2f72f263a725bf3e3cabcf81f13608cd6f1a71152f59d005e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca3d4b70d1fa92e62ab130dec495b470de6e0e56a944cd3c8ea049cb0f137c20
MD5 b995fd66b4fd2eb18d2735ef28b7c2c1
BLAKE2b-256 f6e812acfd15c40c9c3ac4d1c6fc413eec3ca3782adb70cf00ecf021abc12556

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8957fa2fd400d1f002dded822b3e667b7941e48107d8d2470e1935a12af9937
MD5 9c6ec632a90bc1773ab6d7c63cab85f8
BLAKE2b-256 a185ec9f6359dfcf0a918c6926b948f079bbda02f95be06a7f6762aa352ecd5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 effd020411e4669f21d8b9f7f95d2342145ff6a2e32b49eae416fbd733334e53
MD5 62a6da24a8caee5054af65b885fb1286
BLAKE2b-256 5f9e80810656d9d5ce1357222ad5a326a9c569030ebec5b46351e86716227e96

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 cc03b0dd248faca290bced68a575e41331752bfd5863e3ab126382caa547aa1b
MD5 a96072f6e4434863a0e07c0a38f1d505
BLAKE2b-256 5f50a160809e570a275b74cc5bfb1eb4b275b26a853146dcae6678cc7b85fe21

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a337751b60c9d15eb9865cfaa32caeb6d81497a9fd3dad248ae112765e97c7f1
MD5 8e6cc00dedb7c8924ee38948b6a49233
BLAKE2b-256 843124213e229c2a39647edc36404207f2f7cd4fd6a3dd81b26cd2cebd7882fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 06bd2e045a7ec1406f9bd39c92bcc77027258d8969128033cea5adb8602111bd
MD5 719d2da07aea05902e0d45de254af860
BLAKE2b-256 2d50e29bacc4c08b2f097c949f2493bb5e203c55246833576bf6194809190088

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b94bf383735abb90b1a6dc9e89a44f09b84a71a73348be0f01c7c2fb8500fdea
MD5 6ba93478aa218cb32b1563068530eaf2
BLAKE2b-256 1871a81e4d8680248da8250b4adcf79c3ccc25c728e4f4abc00680a4dd625da8

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a5c244a31dd2f2d512c7b306e41e592dcaf9550926a96e05bd3222c6a44dacc
MD5 3fd64766b9499557487e609b97430038
BLAKE2b-256 800ef8ea58ed46e7cbe783ba1df7a4c84a12aa043bcc2ba80bc0ad29a97ec21d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-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.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8bdef691c6c66a28301cb1f070f633dfbd60ccdca9580df96984325f1f79e803
MD5 72fd30f2068f13e4b167adc9587799b8
BLAKE2b-256 2b456ff2b9473ac50b7c438321702fea8e9b7b7b63b54b863303eb8db156960a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0856f42be01ab4957789b8cec99e91311d88bfe82be37ef2d230d36a6a111cff
MD5 514e349b23f4d26b4a82b57b26c1c59c
BLAKE2b-256 dd08f89c75493733ca317403e199a0e7d3e506c2f5e46316c93dc074b2988bf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80ca5778ce35d1f658741b993a9e7e17457d3f7a854e904aff72354b29990079
MD5 35301927f98fa563020066dff3fc54a4
BLAKE2b-256 5d42378bda0464637b9d34d094ca63138a21f99e0fd01b874f6b250de653876d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.6.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7cf3b7ddffbf0b0bb77cb65935561ae48c49b4e6d0db11188279b068c297862
MD5 37ced5afcc1196f43606f1b5f182953d
BLAKE2b-256 aa760af70145f86d1b81a2a5f142ae4eda3256dd565219a063d0432a5dd7c1a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_connect-1.6.0-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.

Supported by

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