Skip to main content

Python driver with native interface for ClickHouse

Project description

ClickHouse Python Driver

https://img.shields.io/pypi/v/clickhouse-driver.svg https://coveralls.io/repos/github/mymarilyn/clickhouse-driver/badge.svg?branch=master https://img.shields.io/pypi/l/clickhouse-driver.svg https://img.shields.io/pypi/pyversions/clickhouse-driver.svg https://img.shields.io/pypi/dm/clickhouse-driver.svg https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml/badge.svg

ClickHouse Python Driver with native (TCP) interface support.

Asynchronous wrapper is available here: https://github.com/mymarilyn/aioch

Features

  • External data for query processing.

  • Query settings.

  • Compression support.

  • TLS support.

  • Types support:

    • Float32/64

    • [U]Int8/16/32/64/128/256

    • Date/Date32/DateTime(‘timezone’)/DateTime64(‘timezone’)

    • String/FixedString(N)

    • Enum8/16

    • Array(T)

    • Nullable(T)

    • Bool

    • UUID

    • Decimal

    • IPv4/IPv6

    • LowCardinality(T)

    • SimpleAggregateFunction(F, T)

    • Tuple(T1, T2, …)

    • Nested

    • Map(key, value)

    • JSON

  • Query progress information.

  • Block by block results streaming.

  • Reading query profile info.

  • Receiving server logs.

  • Multiple hosts support.

  • Python DB API 2.0 specification support.

  • Optional NumPy arrays support.

Documentation

Documentation is available at https://clickhouse-driver.readthedocs.io.

Usage

There are two ways to communicate with server:

  • using pure Client;

  • using DB API.

Pure Client example:

>>> from clickhouse_driver import Client
>>>
>>> client = Client('localhost')
>>>
>>> client.execute('SHOW TABLES')
[('test',)]
>>> client.execute('DROP TABLE IF EXISTS test')
[]
>>> client.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
[]
>>> client.execute(
...     'INSERT INTO test (x) VALUES',
...     [{'x': 100}]
... )
1
>>> client.execute('INSERT INTO test (x) VALUES', [[200]])
1
>>> client.execute(
...     'INSERT INTO test (x) '
...     'SELECT * FROM system.numbers LIMIT %(limit)s',
...     {'limit': 3}
... )
[]
>>> client.execute('SELECT sum(x) FROM test')
[(303,)]

DB API example:

>>> from clickhouse_driver import connect
>>>
>>> conn = connect('clickhouse://localhost')
>>> cursor = conn.cursor()
>>>
>>> cursor.execute('SHOW TABLES')
>>> cursor.fetchall()
[('test',)]
>>> cursor.execute('DROP TABLE IF EXISTS test')
>>> cursor.fetchall()
[]
>>> cursor.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
>>> cursor.fetchall()
[]
>>> cursor.executemany(
...     'INSERT INTO test (x) VALUES',
...     [{'x': 100}]
... )
>>> cursor.rowcount
1
>>> cursor.executemany('INSERT INTO test (x) VALUES', [[200]])
>>> cursor.rowcount
1
>>> cursor.execute(
...     'INSERT INTO test (x) '
...     'SELECT * FROM system.numbers LIMIT %(limit)s',
...     {'limit': 3}
... )
>>> cursor.rowcount
0
>>> cursor.execute('SELECT sum(x) FROM test')
>>> cursor.fetchall()
[(303,)]

License

ClickHouse Python Driver is distributed under the MIT license.

Project details


Download files

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

Source Distribution

clickhouse_driver-0.2.11.tar.gz (434.1 kB view details)

Uploaded Source

Built Distributions

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

clickhouse_driver-0.2.11-pp311-pypy311_pp73-win_amd64.whl (220.4 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_driver-0.2.11-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (248.2 kB view details)

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

clickhouse_driver-0.2.11-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (245.2 kB view details)

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

clickhouse_driver-0.2.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl (221.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

clickhouse_driver-0.2.11-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (221.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

clickhouse_driver-0.2.11-pp310-pypy310_pp73-win_amd64.whl (220.3 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_driver-0.2.11-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (247.2 kB view details)

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

clickhouse_driver-0.2.11-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (244.7 kB view details)

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

clickhouse_driver-0.2.11-pp310-pypy310_pp73-macosx_11_0_arm64.whl (222.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

clickhouse_driver-0.2.11-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (221.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

clickhouse_driver-0.2.11-pp39-pypy39_pp73-win_amd64.whl (220.5 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_driver-0.2.11-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (247.7 kB view details)

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

clickhouse_driver-0.2.11-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (245.2 kB view details)

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

clickhouse_driver-0.2.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl (222.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

clickhouse_driver-0.2.11-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (221.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

clickhouse_driver-0.2.11-cp314-cp314-win_amd64.whl (234.0 kB view details)

Uploaded CPython 3.14Windows x86-64

clickhouse_driver-0.2.11-cp314-cp314-win32.whl (220.2 kB view details)

Uploaded CPython 3.14Windows x86

clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

clickhouse_driver-0.2.11-cp314-cp314-macosx_11_0_arm64.whl (248.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

clickhouse_driver-0.2.11-cp314-cp314-macosx_10_15_x86_64.whl (245.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

clickhouse_driver-0.2.11-cp313-cp313-win_amd64.whl (230.5 kB view details)

Uploaded CPython 3.13Windows x86-64

clickhouse_driver-0.2.11-cp313-cp313-win32.whl (217.2 kB view details)

Uploaded CPython 3.13Windows x86

clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

clickhouse_driver-0.2.11-cp313-cp313-macosx_11_0_arm64.whl (247.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

clickhouse_driver-0.2.11-cp313-cp313-macosx_10_13_x86_64.whl (245.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

clickhouse_driver-0.2.11-cp312-cp312-win_amd64.whl (231.7 kB view details)

Uploaded CPython 3.12Windows x86-64

clickhouse_driver-0.2.11-cp312-cp312-win32.whl (218.1 kB view details)

Uploaded CPython 3.12Windows x86

clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

clickhouse_driver-0.2.11-cp312-cp312-macosx_11_0_arm64.whl (249.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

clickhouse_driver-0.2.11-cp312-cp312-macosx_10_13_x86_64.whl (247.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

clickhouse_driver-0.2.11-cp311-cp311-win_amd64.whl (231.0 kB view details)

Uploaded CPython 3.11Windows x86-64

clickhouse_driver-0.2.11-cp311-cp311-win32.whl (217.6 kB view details)

Uploaded CPython 3.11Windows x86

clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_s390x.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

clickhouse_driver-0.2.11-cp311-cp311-macosx_11_0_arm64.whl (249.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

clickhouse_driver-0.2.11-cp311-cp311-macosx_10_9_x86_64.whl (244.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

clickhouse_driver-0.2.11-cp310-cp310-win_amd64.whl (230.5 kB view details)

Uploaded CPython 3.10Windows x86-64

clickhouse_driver-0.2.11-cp310-cp310-win32.whl (218.1 kB view details)

Uploaded CPython 3.10Windows x86

clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_x86_64.whl (950.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_s390x.whl (990.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_aarch64.whl (947.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (971.2 kB view details)

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

clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (979.0 kB view details)

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

clickhouse_driver-0.2.11-cp310-cp310-macosx_11_0_arm64.whl (249.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

clickhouse_driver-0.2.11-cp310-cp310-macosx_10_9_x86_64.whl (245.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

clickhouse_driver-0.2.11-cp39-cp39-win_amd64.whl (231.4 kB view details)

Uploaded CPython 3.9Windows x86-64

clickhouse_driver-0.2.11-cp39-cp39-win32.whl (218.9 kB view details)

Uploaded CPython 3.9Windows x86

clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_x86_64.whl (945.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_s390x.whl (984.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_ppc64le.whl (997.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_aarch64.whl (944.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (967.6 kB view details)

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

clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (975.4 kB view details)

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

clickhouse_driver-0.2.11-cp39-cp39-macosx_11_0_arm64.whl (250.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

clickhouse_driver-0.2.11-cp39-cp39-macosx_10_9_x86_64.whl (246.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file clickhouse_driver-0.2.11.tar.gz.

File metadata

  • Download URL: clickhouse_driver-0.2.11.tar.gz
  • Upload date:
  • Size: 434.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for clickhouse_driver-0.2.11.tar.gz
Algorithm Hash digest
SHA256 1bec70343bde9e9a55c2254c5960d34c682ff7d60256589226d96c67a112f95a
MD5 c881deaa655e10090b12ee9e6949eb4d
BLAKE2b-256 da7542c6c0f1e0b84213ff096f913ac0ff82037da6f06754bff28685b2d1e23a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11.tar.gz:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e2fe477f41fc48ac9c4effa1fb3f8d4b95333f84deb811bad993e277a8ee69e2
MD5 e4696638f5216ecaff6dbc812c0de9fa
BLAKE2b-256 fc9728ecf9251973ec29caa4369e5e265a108dbbe0613258b9ed037d23c99712

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp311-pypy311_pp73-win_amd64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef4410642a37cf87e11e04cfbf7f5b814e6d90fe1b850f3f096a74dac9d24cb5
MD5 a4537c5198ff91c5333a2333580042df
BLAKE2b-256 5c9b7f53ed802917df3a50ac94a426d36b5a15245a923740805afc2a223d64b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e79fcdd128288a9634d3f7165910d4df7f60b45844ba915f4fd9269c75f7565
MD5 eb4f1c5147ef7cce15355cbfc5e84fe0
BLAKE2b-256 fdba9e3dae6774aeef626f33dd5db9a7e7a5951649fdb38b81a568b7dd892f23

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e724b5240e4db4d35846cfe2a3c41de5467fdeccf58a655eb8dc56d2f3c57c77
MD5 cd154b6977c49c3c281483c4d48f3692
BLAKE2b-256 178a50fe07d189f010046afd89de14a904b87c8975472acb13f0d71f6b3b5fb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 609bc8cb854e5bb9935cd509e4bd5cf728f1c776a4c7467248d38c16063c87aa
MD5 fb721acd2ba92cbfdf3c6dd856baa748
BLAKE2b-256 ef6e0dfd224c36afca5da8ec19b0b5e7276140254a68b81e250bbad91be41eb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f12a4ae2a54303eb7e972edf132a8565bd73bcf29091845abe77d3af1a4b1398
MD5 855564edad57e27a7e39228ee63acdd8
BLAKE2b-256 ae80b7705e193bbe8382d92d9c58dc4964a362872e0c60877d37b79413b58400

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp310-pypy310_pp73-win_amd64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c26c5cb0e767a0e3e02efe75c3fa738484bba5d8a1e9e6855c57d18ee0d404d8
MD5 ad157aa8b79771c088a8997213c31672
BLAKE2b-256 8398fb77547c18185f0071902b5826158a233002159117c9fe85328ef123ba71

See more details on using hashes here.

Provenance

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

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed1c5309c294250c5110fbe1131d29dab18aee6483ae13468f6d32a324bc9698
MD5 298b4f38c6ddd0ee85f0f5abf5e68da4
BLAKE2b-256 5c913035b065d5d7386dde16d9177200d78e1d15e914c758aa8ba90936e5562a

See more details on using hashes here.

Provenance

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

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d840b85abf4cbe24372be02819d0e88aebfbf9774b340f69ae427c589d08b07
MD5 6ef223aa064a3d91f1d446aa818962cf
BLAKE2b-256 e5a3d18bda1178da9633e203d613262d7cba65c7fad87cf7c365ecf6519d58f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a7b3ade6fb1b40fadffc2e1531873490dbb0be9b500a1205c8f52ed3b8a5023a
MD5 43cb0de1979310ccdb86046b1c9b9f57
BLAKE2b-256 c749144cbd4ea5a7ec3216804d02f8cd0048fcb73320ab7cc10b10f96b4dda5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d39fc7bf89a918587928c24ed61068ccc98bafc76dc75d9007789a75719b0bfc
MD5 094ecd63c7e96099b738eb3739ac4694
BLAKE2b-256 dfd8b440af96680384e5fa05ef8587833209f7d19b4be5586c0f4bafdffe41b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp39-pypy39_pp73-win_amd64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed99d91c0f436375cbe196dfba3e54234106312fa149db53e669f724d007b78e
MD5 22e79001db7e795fb98c3430bf11057e
BLAKE2b-256 42b714bd252b1e4151dce84ab2d24fb06e0ea29b0bf76f9a54bea843106b8dc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cba6bb18174d3829ff9ebbdbd05484fa794c5c53cd2aba13b68e488efc795c28
MD5 f1f2e768a85b50f927e22d39de79bc1d
BLAKE2b-256 c3e2eae2d120fb1de8d887177cb016b9c742dfc38cf5704dc422f0a0d1bb261e

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 679f13d3bda68a0ce9667c52c6ddcca23c46900e274ddd0d5d344b5fda277ec9
MD5 c6de8c6d5f9d7da577e2d764f7ddf563
BLAKE2b-256 a2c072ad258e820a1c85530699969f3ff854a3fc97979b89c0bf585d1da10c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ac639896798ad1b47dce6e1039a861ec8dee83914f0d64c6da8ea44a9b4db95d
MD5 6c7b1571fda210bc9fccb5cf43b52225
BLAKE2b-256 390718ca204d7d713eacdcb0b835d9e8466884899af9176b2e4d2071534666b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0a67ce59def2e08cbda1cf12d9e8a7a6879cee8048ee46bbd415e9111033f775
MD5 21dae9946c1dc7f0e7cc9db2325fda18
BLAKE2b-256 7b51900211ab9390f64edef10564a206e2dca89fc49a4191aee870d2c18002f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-win_amd64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 688a2cd31a7fd87a9f2a1bb669a04874b5ae17bbca22a373610e84aa241b1e9a
MD5 67ab5c0be2353f1cb60e5b2afcd28bbb
BLAKE2b-256 0b0e334868a895896fc83262200f06b8e25c0573f2e5a7299ebbdb1fdbbb3230

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-win32.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e09e4f2cff823027a222c5bd8d9b3b3ca7d70f26ef0dccd2e496820280333ed
MD5 44b0c692fc20bfdfcfe924082018b3ab
BLAKE2b-256 7658005fa6ae82131404a1a0053043f7711332c01cf0c0e6863268f0be104e12

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aa3961a892b94aaa83571e773347d7f36ab5e1334c6711bfd63f611b88c4c541
MD5 36701b3b0c26507f5940ff47a595c835
BLAKE2b-256 c9d39c4a2b7d589e86ea635d85137ed3c5228069cdb780c1919be0f533728b72

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 94593758fa36195fe56199422fe8188cabd6403c3950140cd8cffbd89af34f24
MD5 a2425f786a9cdc903a80d15f84c84225
BLAKE2b-256 f93a97593f51c0ead217705c46e90f6f23522fd9f252a3f27c84acc38c04113b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fa0a4a72618f06c0ee308117253fe351161a562aea8b31641fcbf7d9ad6080d
MD5 0ab45756673e30cad6e919023f80f2be
BLAKE2b-256 2f0e6aafbe06ac73d061554bdbc7dae28b564c0e17619b266e661e235a71b297

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7c9152bfdfd4ebe0fb3b1c4320f39e3b88c8f4f3c6b3db625a5c0cb5b86f955
MD5 1fdea715921378e509fdfb4450201c87
BLAKE2b-256 aea952d086fa76adee9961434b7672706e0403ee09a0c3c49d5c713391d15e36

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5540cfbae18997e625c4fd8ec9875da46c816143c6456cab9a11adfaed38cc34
MD5 1d150a69935579e91b2fad3b663b776a
BLAKE2b-256 5885ae1be44941e46660aebd70d2ce05729a7edffa42663e31892c4a98910fb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fd3b1af7c7174428007b20bbec4c60699758e20cf6beba45c61039762a06116a
MD5 8db8fb7d8c62494504952dc39ef7665b
BLAKE2b-256 9ea88e4d7cb2ae58919313c6f4d8641a49c41dc15540572efbd88a46893c0f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47b72c26343a2b946e589a4d5de259c3705f6969facfd4b283a6c5015fc67c92
MD5 cc6fa48a6fea0c9e5f5ca77b766c7e0e
BLAKE2b-256 6ccb68508736b1a537b48a64b053ffbd5b62bd7384ddee97e77efb392164cac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb88ef5ed671e260a6493d7f16f12e21a4f2d04afcfb58c3200324f9621dc553
MD5 cf308b5b8360cbad5a216b9082ff08b8
BLAKE2b-256 2d10b1ba901d7c71360cafa594130ac43b65f5574e1b03a6fb0c3000c28b68ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3e1c3b08907e836de894054d4c66bcf1415cd0a3fe94e3e2c865abe43a635c82
MD5 08092edfe4eb0d78be1c17b9871118bd
BLAKE2b-256 0d3b47c4143d003011aa3977b3ab3eafa2ae338cb483387886700c384488226a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4775c1582dc9e09e2381700b61955b7f860411cfd0502a6beeee35eb4bd880ad
MD5 09750c94a6f4f9be17e38d1532569e04
BLAKE2b-256 59b38a96b507b1b383dc16bde7c371fad7c03ae3bffaedd16a1abd608a054d53

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-win_amd64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 60797bd36a404abee1fc82b177a3dccb8043ec1105146377cbbbde54f999b24a
MD5 0c6c9e52d3ae8d386b7a659cef0d794e
BLAKE2b-256 8e665c8cfe8c00ef24aec0a13357d44de13104d34a52bf01fc04bc5434663496

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-win32.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98a6678a57398e585351988c35ce57969a6b382f79a150634d229564744917c4
MD5 091d399d534b49c52a00ea05d0c1cc44
BLAKE2b-256 6668376bb36f63b0d209431a86c4886361a0d5c93f8fe4345c813fc1908d3bc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c71493ac95d86e3104f9c4cb46b89dbb9262bbacd6b849b64acf32232910bb8b
MD5 adde6253a71a3fd8ba5732f6e2eca8ad
BLAKE2b-256 4306d45f1139a43f198ed706986c676dc24c21e45dcecee8609b5a308da90bd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dccea82c4ebba9058ca75a4858aef77b96ea0bde3d01f5bdff119c7d6b94c5ea
MD5 aa3d789d9fbd14c1175813ac8bd09ef1
BLAKE2b-256 785166bd01b67f9fef5d4630bf25c7530005befb87c7ad48f772f90b25f44de3

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c7063bf76a6a01f0bbf94541b438038910a0c649a3c058ec3479e012d447a0a
MD5 841fe690927419a7c0e83c11e9cc53ec
BLAKE2b-256 59cced8f9a1acb76b7067ea8fb7846127097302233c7f4fc2d55d0d23f21b05d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01cf396d22154f668ccd9a8f2cae7d66ba6f0634d668cd2822f763089af50741
MD5 3a22623eb3fb23412f2702415195b51d
BLAKE2b-256 521acb0eb9acb542aa6b962ce4ec5fd25826a75e2d056a1eb40a6f1b61e7fe14

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4240194b095159e3341202eb686efedbcbca34bde94a5808bd6c2378bef6d2b4
MD5 20d054fe43f4a03752b1b3b4031370a4
BLAKE2b-256 166f0726e8f5072ad6c0c1949ba6ca84c17fc5873bb7772bb33fadff21b55a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 36dfee7609fdadf2cce4c82c9cdb4c28025326680213fc2a07d094d9b35953d5
MD5 a602b7242d84e71d302aafe6cedc8800
BLAKE2b-256 005e777054cb7a1a3e48a71d510eee41b933a3f47ecc8fdb84cb4d97ed6e05e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 228b3f958a0ef92b2e667207ebd9859e44ae2795f56155357c45397bc0a8035d
MD5 80534bee4994f349935d6f4c3327d9e1
BLAKE2b-256 9fe131c200cd3e4ed09f155471c3fb12a74fc4325e1b03299f4e6c3c71cda88c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b8d99cfc4f80a4f59721d07fcce98c3093d9bf9a630a3b13165cd6aec86360b
MD5 5cc45805b860367f2b68cb9e24cd9d38
BLAKE2b-256 661b274ccf06cddbdc3a6ae8eebf0df6b7cefb2ab86292ca4602f92eb778fc04

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 837e9d98f5648342b3de60e2351117c5a1de299672611e97be56cbdeadeec7a0
MD5 db381828a51e3e565fa398bcde79e466
BLAKE2b-256 9d21e3da66dbf52e0c6ecee7dc399f3cf0da30b9c4ca84f2380c68a3fe74840d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 88e7a3a1fde16aedaff93ae8b8a834b5ee9da1d47c8f8395fe5031206a9e26b1
MD5 e2019e95fa5675b6fa1f68a765fc94f1
BLAKE2b-256 1bdfe44d7fc912a03327003a9c8309791ccdc7c268d7ffbf26f49dd9e6ee4288

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-win_amd64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dcae25aa09f491d839453eb6c11f8ddd44cce86fa8df2ae7d02681bc32eb628f
MD5 8003235488fd36b1f19d6c043628e5c3
BLAKE2b-256 8c14843cebb1432b1e9402dab33bace1368862ba10d4f9f52888c99d818da803

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-win32.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5355dfa2753a9170cd44bf715e3d01c7cec84e922ff20e3af8aa26f65c00064c
MD5 270c6996b5c57e7b155edbc21c845c13
BLAKE2b-256 5efacb85461a93ae8875c54269c0aa42fc9e039bc079431036736dcb89658374

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7b7c408a842998c9aebfc5e80e18c81d620e59bc1b8e4a85040891d9639b3d02
MD5 df65246ae1ddf7411a60b431a1c40d99
BLAKE2b-256 e222f35c87ac4f1e5940339ae9f93d44e5867e416e1c66e4448954a5a8108f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 99564f8b20b510a14dc893b5195d97ea11640c27c01106ffba4eb2e11757094a
MD5 2a1a96692d110b7c95d94a90b94a71d3
BLAKE2b-256 a687062fb64a1b0453890f95917064867bdc8fd176f9249a1961f4f5f0d9e83f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f0b1dd55589c0922e61583c8f84930e74eb1b5083ac920197636b248799dcff
MD5 b87d46896f4378a41b131d0c4e4d2474
BLAKE2b-256 5e8fe4e15269fb79ffc1c729c2636f40cdda7a1ccacb7eb90b02f49718b3a4a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02a2ed14043f5f6e0d7dc46543a5e7a6b3f56cde0c2cf8a03900d026f3ed3734
MD5 57c1797a65647fa95f370cd5354b1049
BLAKE2b-256 6b99ae8254fcc9dea40e5c7488f856fe00d6896e79904967e3b8a571aa96cc5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 17b95c81fbfec69139a5c9e0c40031b81c5d68f1881eeccca7d5afa7c8b5ba98
MD5 1a36e5a329cfcb5a93ce5ffde4ec7972
BLAKE2b-256 3d89b8f5bb1724a65933c1182176de73bc302ec1f33370512ecc0244cdf37578

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b409b1dbd305683e66433e93227338b37dd605eff7c2fba0f1cf1933e236342e
MD5 e62181793ad8e25b8f95b4265b117589
BLAKE2b-256 8b4a40fdf1bdd1ebccda8c2bf2e8f3aaae680df3858d60811b7c294f298a26db

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22f256a00d1ab464cec4f595ccde6d6ec9b7e75f5b1d43ef923bb4f7401c0400
MD5 54118fc7a901e3fdd4f02ad6a80cf46e
BLAKE2b-256 ce1a743d1bf2ce2c91c7ca8a73c5f6927609f34dedbcae2f0e7e376f27e12419

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da7bd9a548f956ade42468059086faa442867f19be43dfe0e1f4ad762bd188f9
MD5 0169304c0584988ca21065d69f3f7a44
BLAKE2b-256 2b20839857607f3059ac5a12e25125e44b91aef19d1e319e2f58e20932349445

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9efb601aad3af8cfbc452c057d3a6fce60b467ceb0784fb470174c06f2939614
MD5 d9d32be09b2ead5193f636c919fb4f11
BLAKE2b-256 bdabef6b4214f7d92943a6d89fae483a02c73f18960f5662aefc0b9280046c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 72e0e3107b9133abf16f34fc619b1b2f9b915735191cd310a814583ea342902d
MD5 9f35643c49e8d84ad5d993f200010504
BLAKE2b-256 4208277a35ecda6c1ce63a48a1e77f0501f6e87959663e809714bd4bea80afe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-win_amd64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 af6b5bc8ad395650600fb1fe75decbd52a78b37b4face681123a5adcb31fd8c5
MD5 a403502e3984c7a459caa6b40ed873f4
BLAKE2b-256 0773c4d5aaf0c3fd6b00f2bbe38022116b54bcf3d4d8920e33afcafaa053bce4

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-win32.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8167090007e4a2d128914e3eebbd203d5a729c57d17f6696b9c4badad691aa7
MD5 6baf21397837ad33ecad59e7b4e6e6c0
BLAKE2b-256 f4905cb56cc6d5fa713d72adbb3ce48165b500f940436518ca9e95e4107d43cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0c50fef33562f31c253a8d9e89941ad98efd8e04d684532f49ce3f44d56ec9fa
MD5 24d8f8f89ab26934877f78847659ebb3
BLAKE2b-256 41b0bf78a65bfcaf9252f1eadb67195ef4e079da062a2d0e071685d61724b145

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b372b13a70040f454b1cbbd5475c1141d5ed594f9220daf5cdf530c450203f12
MD5 ed72bfc6bd0a157e30cb63908d08e0f2
BLAKE2b-256 3dd030c728e05750c26f1e770b332d561dd26f163c594a4373d388d7b209eb1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3dccff8ba12b76965fbaa602b92e67ad92e9fb87d560af6269c00f3354e3698a
MD5 51b3ec0bbe4c6c408ad48bdaad971418
BLAKE2b-256 1b02a29da31c3bfcd400b933fa506c5582a64dad6c8a670323ecb116293dfd23

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4ba6f49ab6acad604f8b2aaf5540c73a56fd0307a8f448cbc9542ac36227424
MD5 8b8a6cf5c1b709a078ae2ed6f7cc11a6
BLAKE2b-256 9ad4be40b84cf25bcf27c8bb94c68285ac73b6f3e47a325534d2b07e878a13a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b665f3e8b0890e86891f90a1044c08f399e3be8db438eedb1b05eea5c0d8ec6f
MD5 26accc452e574550ab949267aabbdbc2
BLAKE2b-256 c38d8163507299eada78bb310f3eb8271f31e8eabf3d065911b2ca27b60a1585

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4b2520f767ef65e94edf91a5817ca55d0f4edbebd7fac4b48db008fb871b26e2
MD5 24eb743e0aa0846dfb1eafd30035a3bf
BLAKE2b-256 9a522cb862eac6a31dc0edf9b48ef3a8fac8dd91014289b76c30167f956b91e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 370ca56a6a8511559d623e776b6297b7a1bd9285928b56942442e296a5ff20a1
MD5 f3a4c788eb9400a2f5d44cf405124933
BLAKE2b-256 8c9f83bce6bca79bb6815f294515117c524a0a6bf467a4dc94c4c675238b1102

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5b0a62a79282ee0c801bcdcaebe8aa8e5cf2baee4f285b47c4245825b2e8d5d
MD5 d71e5afcb02aa55d4f3369ba2cdba78b
BLAKE2b-256 2ed43ddaa163c2343d70c76764807bb222d2d1ade6ae2a85d017443ef10e43fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01baad49a7855ffa08e1825df385cb740a9f1bbef9b7768661245f1e85db1d63
MD5 e77671a56c391b519cf5e2b4b3abbca7
BLAKE2b-256 77121cef2951eedd085a1dbf090e34f07775b22119fbaf783b9c208a44ab7ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 771199953c92e48fa9c19382c2425752e2a3c65299e19cc9a8b659d3d2e57f07
MD5 4ae14f213623842b2f65882b5252bd89
BLAKE2b-256 923c43841f293f171c7d07940ed258643fd545ee0874f408a3b4b85d4c2dfebe

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-win_amd64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c25b22d55f65a3bd9b80f24c381c95a376d30a6be9b2bcd42b03e336bbdfacea
MD5 dbdd3c2de0938acd233c70c7de357e6e
BLAKE2b-256 2ed8ec6413abab300a0cf4a18c4636ad71b34b2ddfe0d2df6fc6c6058d4b5235

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-win32.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2005eb046beefc33d9d4fa0be534fd605728d9eace88adea6b7385cd008d6ef
MD5 55696b87372e02eb5a14956f386b07f8
BLAKE2b-256 37751567fdb932dc2b57a8f45d543c89debc545603371d8f9590184d268ecee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 779853738be8782553bab548a482ada6bc27584961c1482eeb29bb477b17abe3
MD5 f9aae4420fd01b1e9fdcb7c34fd3500f
BLAKE2b-256 3c640674a34bb8e3a0ae21d3860ecdc0eb5404a23a7b60564eb339b8eac9f7b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 795055072ae9ec1b9b5476f00ffae1a507a0ec7223aa8816c205906c3d54d91c
MD5 beb3c914d0378b0af0fd3d09354dcb19
BLAKE2b-256 323433745756e1c3547255a20d35eb52e8a7e00aaa74697abb48b441770f2281

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d384b8b8a57a0b81b12d748de5c9f8f17cfa99aadedc5e495896cb4990b5e99e
MD5 2ce9efbea236015becc6a77aae351b62
BLAKE2b-256 c39c901469e315aa7b813812b97fd6e8e73935617e09be723eefecd62b92b348

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab9ef48660a6d1d0c258bf0506135aa7bb0a1cee915e0a06ef9f7fef491a99cb
MD5 6b6bfa2263e3b4dff9a3d3ce0091b509
BLAKE2b-256 92eded004cf538507d2769437aca24ffe4158448427522cef42c1564535e5fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 aa78eb67b367e33c1eef69349ba3fe15d1b4945e79c3df0226e5b03273fda9a7
MD5 30e17f68a4279849f2f3eedcf3bb7c7f
BLAKE2b-256 22897c2254b69e8084953763b318cffedec624d0215a64bbefcad4a354de4c56

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0b05513fe6f37f04ee9ea5d589261a655fa3233e6c969067cadae589756e545d
MD5 9bfb8c757bd710c74d5db999f7488c98
BLAKE2b-256 f58357c51e2c662c55dc1c246d8c13841103530196181b5e0790efa427da458d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26d98ef103f62b37958c65b2d32b479678056d5616aadfd8db7c2a3f4061fe84
MD5 b0adf5d999724997e2fac15a29cdb9f4
BLAKE2b-256 ec5056acfd32a51bcff5811f6e73a22e63321e33d57c49f44dd34fb73dca6f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3138437728c0696aa89bcc8a84bb41463db0799740a62e81ec5a2e1efec886df
MD5 9a60e1c493248ad45223460fb3c318d9
BLAKE2b-256 d19642db54a6006e215c8484395e8343a6f692f0bb4d1c72fa7083867b3d9cc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 585e75a5237112a1264538c5a104d4336b0e0a4a2049bf711aaed103313614a2
MD5 b0011d128c6ea5c832f486309ace8d58
BLAKE2b-256 eff91b2c2f507b442152c29d163cdecb92fa124b1a704b2da50d6701c944e98d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1d151553513e64124f18bba5aaba4d9e717b66f5427798d0d96da196358c2dfd
MD5 2d43a6bf50948813fb1d8594ecbc2e80
BLAKE2b-256 bafce30e426c666b982b106d32187bd73da72192e7f11952684e322e8bc1beab

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-win_amd64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 57497fa989ea559b282fb149eb7f7ca871c31725755974b2d49fdb319918436b
MD5 34a7831a436a9e4d6613801420e3d4ce
BLAKE2b-256 34de738fd52a539aa2312c70bb92f912c0c4274dc87278daa2e5403f1351666f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-win32.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66c5f741cb3ecaad02854a15fa86407282bfe94d88625cc5fdcc06a35a541466
MD5 4b612941461c9dcf6311399016033ad8
BLAKE2b-256 e9d5144e60fe3294c1ccebc1860cfb14f7938cc9d038a006067aed8d384ed4b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 176aac7d24326226927fe704a378a83d628e44e090ae68e3a299dd0f19711999
MD5 ae365fd6d9a90fdffdf211eafc2b86be
BLAKE2b-256 0770c2054afab4e992fe07e2e417ef0bbe1b9977c58928b5c0dce6453f4a0e6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bb7bc2e8468ab98316318043fa63d82690b3ca16086cca8568d3accc3d54a309
MD5 8b09a8b5b7768050794691c15c5d7f06
BLAKE2b-256 2059e504b1a8814c8a12623bc60028848d14ca7c3a52c3c7a90cd41b0e22986d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76b4fbc48a7255595ba45b916b2e796f7359b87bd3becc490cbddaa02c6dbee7
MD5 7766e04ce79e09c73116e957966d358a
BLAKE2b-256 020a49ab22e798cb0547a6865df6f11f536779973e01fc8a82de212c67c93bf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e8c97567403a135b3487fd2d7213602611663f889ab4be2feba511e7fe2abcf
MD5 c7680fab3b5370c3b87f22becbc26d03
BLAKE2b-256 42c82ba5e1cea5b56ca3fbfdc77e0bde14f5b8ba9a945ff7a4097acf7b7afdec

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f21911817ea750fb648e0757d84601bfe3d700510b8c93f998a52539c14add76
MD5 bd34151b47945da060b8db6bbde40ce5
BLAKE2b-256 4ebf841280e5ccc1c9209e83248bbdf7a75a723418bfcf3d3dba68b2d342d243

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8ac74e150ca15dea9c53867a07e56453833ea1fc3e83fef46c716822968df621
MD5 54e352386d74cbe83e90cab624486b79
BLAKE2b-256 20be2599bfc24ea8b573f995972a86f70c9342fdbbf0835d8026ea5729a0c469

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07e037f0f6079e70ea2eeb38a580a36ca87430d653145e0ef9849f9aa0ba0aed
MD5 e44f012b75df6e86bf2301fe3388851d
BLAKE2b-256 e000d48a8dc5d2a312dc3435706baee5c83822ac4e3fb0caa3e55ffd3aac0566

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74688c82c8ddbcf344f4af7c48199b572126ff9ecd862d998776b458d8f577d1
MD5 ad0f34217df5a908af75d266379f7d3d
BLAKE2b-256 ecf169fbaa40bb1d72cb8019379bac2ecfc11db56af65b52db7c2cb1ff2efec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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_driver-0.2.11-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f43f32c72e2b70c62a0bbbad3c19b06c8239230a554ff7950fe0064988e4b67
MD5 0cfcd5da51c106ee5c1c5c1bc12773bc
BLAKE2b-256 bb36f3a5b1a1bc79637b5e31e6b742188a620846bfcf2e7e8ff29772a913f6dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickhouse_driver-0.2.11-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: actions.yml on mymarilyn/clickhouse-driver

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