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://travis-ci.org/mymarilyn/clickhouse-driver.svg?branch=master

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)

    • UUID

    • Decimal

    • IPv4/IPv6

    • LowCardinality(T)

    • SimpleAggregateFunction(F, T)

    • Tuple(T1, T2, …)

    • Nested

    • Map(key, value)

  • 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.2.tar.gz (212.7 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.2-pp37-pypy37_pp73-win32.whl (150.9 kB view details)

Uploaded PyPyWindows x86

clickhouse_driver-0.2.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl (179.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (149.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_driver-0.2.2-pp36-pypy36_pp73-win32.whl (150.9 kB view details)

Uploaded PyPyWindows x86

clickhouse_driver-0.2.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (179.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (149.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl (750.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_i686.whl (737.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_aarch64.whl (751.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

clickhouse_driver-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

clickhouse_driver-0.2.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (696.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

clickhouse_driver-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (682.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

clickhouse_driver-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl (174.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

clickhouse_driver-0.2.2-cp39-cp39-win_amd64.whl (178.1 kB view details)

Uploaded CPython 3.9Windows x86-64

clickhouse_driver-0.2.2-cp39-cp39-win32.whl (162.5 kB view details)

Uploaded CPython 3.9Windows x86

clickhouse_driver-0.2.2-cp39-cp39-manylinux2014_aarch64.whl (748.3 kB view details)

Uploaded CPython 3.9

clickhouse_driver-0.2.2-cp39-cp39-manylinux2010_x86_64.whl (691.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.2-cp39-cp39-manylinux2010_i686.whl (678.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

clickhouse_driver-0.2.2-cp39-cp39-manylinux1_x86_64.whl (691.1 kB view details)

Uploaded CPython 3.9

clickhouse_driver-0.2.2-cp39-cp39-manylinux1_i686.whl (678.8 kB view details)

Uploaded CPython 3.9

clickhouse_driver-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl (174.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

clickhouse_driver-0.2.2-cp38-cp38-win_amd64.whl (178.0 kB view details)

Uploaded CPython 3.8Windows x86-64

clickhouse_driver-0.2.2-cp38-cp38-win32.whl (162.9 kB view details)

Uploaded CPython 3.8Windows x86

clickhouse_driver-0.2.2-cp38-cp38-manylinux2014_aarch64.whl (772.8 kB view details)

Uploaded CPython 3.8

clickhouse_driver-0.2.2-cp38-cp38-manylinux2010_x86_64.whl (718.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.2-cp38-cp38-manylinux2010_i686.whl (701.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

clickhouse_driver-0.2.2-cp38-cp38-manylinux1_x86_64.whl (718.2 kB view details)

Uploaded CPython 3.8

clickhouse_driver-0.2.2-cp38-cp38-manylinux1_i686.whl (701.5 kB view details)

Uploaded CPython 3.8

clickhouse_driver-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl (173.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

clickhouse_driver-0.2.2-cp37-cp37m-win_amd64.whl (175.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

clickhouse_driver-0.2.2-cp37-cp37m-win32.whl (160.1 kB view details)

Uploaded CPython 3.7mWindows x86

clickhouse_driver-0.2.2-cp37-cp37m-manylinux2014_aarch64.whl (654.9 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.2.2-cp37-cp37m-manylinux2010_x86_64.whl (604.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.2-cp37-cp37m-manylinux2010_i686.whl (593.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.2-cp37-cp37m-manylinux1_x86_64.whl (604.9 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.2.2-cp37-cp37m-manylinux1_i686.whl (593.1 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl (172.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

clickhouse_driver-0.2.2-cp36-cp36m-win_amd64.whl (175.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

clickhouse_driver-0.2.2-cp36-cp36m-win32.whl (160.1 kB view details)

Uploaded CPython 3.6mWindows x86

clickhouse_driver-0.2.2-cp36-cp36m-manylinux2014_aarch64.whl (650.5 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.2.2-cp36-cp36m-manylinux2010_x86_64.whl (602.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.2-cp36-cp36m-manylinux2010_i686.whl (590.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.2-cp36-cp36m-manylinux1_x86_64.whl (602.0 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.2.2-cp36-cp36m-manylinux1_i686.whl (590.1 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.2.2-cp36-cp36m-macosx_10_9_x86_64.whl (175.6 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

clickhouse_driver-0.2.2-cp35-cp35m-win_amd64.whl (172.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

clickhouse_driver-0.2.2-cp35-cp35m-win32.whl (158.0 kB view details)

Uploaded CPython 3.5mWindows x86

clickhouse_driver-0.2.2-cp35-cp35m-manylinux2014_aarch64.whl (642.5 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.2.2-cp35-cp35m-manylinux2010_x86_64.whl (594.0 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.2-cp35-cp35m-manylinux2010_i686.whl (583.4 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.2-cp35-cp35m-manylinux1_x86_64.whl (593.9 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.2.2-cp35-cp35m-manylinux1_i686.whl (583.4 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.2.2-cp35-cp35m-macosx_10_9_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

Details for the file clickhouse-driver-0.2.2.tar.gz.

File metadata

  • Download URL: clickhouse-driver-0.2.2.tar.gz
  • Upload date:
  • Size: 212.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse-driver-0.2.2.tar.gz
Algorithm Hash digest
SHA256 d16cfae6d3085854ebdef47a7920ce2ef839bde44c60a64d7963a8c9834d7440
MD5 53b612a4a2f08c8d49f0492dbb14d1ec
BLAKE2b-256 a60206e24563872e62b516cacc56390d538d027cad60fc411703857fa7d7843f

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 150.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 cea99c3a508ecc87cf26c7b615e23b76d9be6ee0a34018efa028107904409c6f
MD5 1c10b6dfe46dc281c26bde9ea0c1f757
BLAKE2b-256 cff771d6537eb54e7a9cae7ad19380cd11b5e4d6f87dc2329e725722bc5e4ea5

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 179.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2bbba461a504b1e88719a6cc2b9865cd5885377fd9eb31be72cd86d77b83da1c
MD5 1bf7b04c58c9b1b91ed32ec1a91e800b
BLAKE2b-256 9b64f543e3df880d3dfc6a8914acec975ccfe08da7c57939b8da12098ca95142

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c4bc35e74270cb97442d87b6d607d82487f57679a0fe1f28762a735dd8235756
MD5 33c2a972d836d186c1408e7204c19fd5
BLAKE2b-256 4a8b9d7882cd41fe31437225499f04fec00fc80f453b9369715df03eae8e5d16

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 149.1 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6f4477a87853a4f063af941dd7052a2514dfaf0d4e9ada86c9c73320b9708e6
MD5 56be4216c2f72da97deed650365a2cf9
BLAKE2b-256 ca7136380c8bd482dcfc6a12b43b21d5a1e978b234da8389d90bdb54bd48a869

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 150.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 82e30654b58ce7aa06ab11ba0ce70ce99a9617ddf82c6a2c77088423b018efd9
MD5 e084272afc2206a81352d3a1e008e406
BLAKE2b-256 16f33e55089df595c8855c51d3e539491d7d6bce7f8fcc0bbec8690398696016

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 179.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b1657a3d5acb0a283a6af85ba799691a8344f9186dc8ed3ae9c84269eaed3bd3
MD5 d49155f693a8ae22a1d706ee8a35e7a4
BLAKE2b-256 76e47791a9df5f07961834c45e91e81b492bc73e2d9c1877099bbd7ff671b6d6

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 06b9547d7da5f9126c49a49f80689fd35c90e47f6eabfc71f5cd56d83971e4d1
MD5 348569ea6435842dcce0839467bade68
BLAKE2b-256 ca4591d69ff619d63abba133beb4d12e731150df351aa2b63307da574c9b9792

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 149.1 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a5b00482cddb99629e9fb60bf0b9017fb61d578fd4a551bc677079ef7fa04b9
MD5 3fb72047a026edb542fe68059323606c
BLAKE2b-256 0ecacbf40762cf5ec469a045de47d3062a2ed831b8431cd5889d4b6e4a8ff89a

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 750.9 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4712143e554bc0e32c4a0a12c0b04ca2e1ab9ac0b541916cc598bbb03267af9e
MD5 13358d1fd47fbbbe3c359e98bf1e128e
BLAKE2b-256 a08f82ecdc693f66cc951607ab67e3b4c3a7358cce4938956c354b7776c8e259

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 737.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a4d0de837557468f3097443b8414868440792da2d0e167e21c7d725f0122beb6
MD5 bd03db1a14952878927988c8bd4537fd
BLAKE2b-256 3ac71576085e46e58d409d964f99a7d1d6fc0b74eb111c813ae0df835e39b2cc

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 751.0 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 568586e3bf901516582ee11705e9aa97ee187bd7bd0cef42d762751352b3aecd
MD5 b876ae6e8fa435d63ddc907605ce2c7a
BLAKE2b-256 cc8bc1d559b8dccf7501b1198a2faab0ad4697613ef06f1a72deb581c6a1fc3f

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab029ba9bed6ff1118190fd05bdf001bd085a72caeb1fbb23fc6e8a0a5cc2bbd
MD5 7965e6a6e40f839eed7cf76db824be40
BLAKE2b-256 203c6ceaf6ab858e6111fac590c4f61eb6f1e184fa79cec816df89314e925e16

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fcfc774aa36fdfdcd6a53053dbcd8c2da3046c68e4005b0cba7aa7c3677bafe7
MD5 4ef945abe7d776dae57020be666da9c8
BLAKE2b-256 f794aa681744b1220aba62f2f4e77022c9a4a58c6324b953b50332f86c2b154c

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for clickhouse_driver-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 817426d25024fb31d2b6b87f5ddbc0b94881ea73305180f693fa7c9b54ba12c3
MD5 55324c8bea694e609dfc29c3e5146712
BLAKE2b-256 fb0a30b90583ae6d09a681eb78c31a99438a1acf2e7fc63d5a71578db50257ab

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 174.7 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96af5d26ed7b4e6a0eebcf95846c921e3311e73aa6bda98bc33633e7e59a183c
MD5 1ad5f1e630c4580837392eefc25c96d5
BLAKE2b-256 132b9ff6d5791aa7ddb7142acf06ccc6b843efdf8f7feda6e408f48dd05ac2cf

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 178.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 15fe435392fb871b634b7a58dd221c34fe952fa15885a7f04c02cebaf90b84bb
MD5 1b0a6bbdf11616e0aa4cb2526c96ff50
BLAKE2b-256 aa21964da868426e9084dfbb442a23340f1ea66328d6714ac3602766060599a6

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2242d4c4b1201f016ef17f5f006b0ea79ce8549def33db2c3381eafda706cbec
MD5 a54e4654724fdffb28f665a643545056
BLAKE2b-256 cbb3757c756d1a211f02b41c95ac277957bfd0a53efb64a2be4a40c40650f42f

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 748.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6309fa95482086126949c7ccf3f45f55976b41d0fd586d2c098dd2c86a1fda4f
MD5 b2e5a4d377b94e8b3ca2239c5d510774
BLAKE2b-256 99a4040020d7dfd94100b452c9f9d9a7eaf4e44b0bc7c0b66cbf46a14653a0fa

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 691.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9c950170c459659924a7ddade52c9312863d707b5c61ae915b323a0902e7ba43
MD5 900446a941a800984bb3e9255c15a8a8
BLAKE2b-256 ba6fdaeb2014fb287477452d3375eacf6eeadcad2be2d1f0f7b4cb2b88cab966

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 678.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6058592b25160907f84ebebd45c6e7d8047e0b86b477d1c7e6fb344861cc03fd
MD5 f26cfe833914e865a7aff60da1a549cc
BLAKE2b-256 2a753f4ae3bc97aa71133b043ecf63402282c729ce9e6d57208192c0884cfa01

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 691.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5440e023e6fbcda2f56f2360c3b4683152e7d4c1c805ecbbd280186b2647be82
MD5 9c1505396939c2dc3ab6bb4edb644e75
BLAKE2b-256 4942a36020b8672fc0b8f2e793fc2f170ee85595e1a193b78a26162683ba4db0

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 678.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a79355b930258f2d730aad11682f42e9fc6791da5c9c43958c6bd575cb42b51
MD5 710298faedef1635c207dbb14abf0c2e
BLAKE2b-256 bdd4bb12b057ac7fd19b10ffbdc13eae28169b69781823957697ecc7a7c01fc6

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 174.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 831b3c1084b1f5283bd7ac6b7b6bd9ebc898e0c7821fed830f68206ac7c5681a
MD5 aaacef4931249666b100de0a675a6669
BLAKE2b-256 9eaf11ef6e8c9f53ae61dd42b02c9eb8546e5b1f9bc97dbd50e22a9318a908ed

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 178.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 17f4f18a07e878b8da9a5a5fda05e14a787d79b78f30d4154785cac7c85b9378
MD5 5835fea9f5d3724b32b029a677ecbe70
BLAKE2b-256 15fd3400eb77f361d1276ef5453a11503cdb321e99e29c19ac09883a310fc0ba

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 162.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bf6bfa7b1019af22eb2e393bae6834da09526c7e068438dfe824a6ae5ba615ff
MD5 dd62811315208d907e4af5d5d85af9fa
BLAKE2b-256 5cf3d0c06bf38a04732b961012a227e3078be1cd8bb75e8757836f61370ea281

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 772.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c7cc232a7ba8fef01b04f37c2548e9ac56f297925ab56125816e2355c24b9d0
MD5 55e54a686930ab4f9c50a9673dc87b90
BLAKE2b-256 b8a97aabe9717cc3fb47410273d702ba04e85857c2b92508f7cab36433d68b76

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 718.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 28274fd0060c577859b1e88661c7a0fa690ff1656bac5fa0760a3a90fb0af2a8
MD5 25f9a3982d793358ed785715f9dc11cb
BLAKE2b-256 9cd58a49bb09a0903c62edf646ba3b7fc7f9876d8528cd7f059640e947d5f2c6

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 701.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d47427c8df42065daba310710dbfe35b05ab03a62276146836a6bf8feec64719
MD5 36296669fdbb03a9bedebd2899a32dc6
BLAKE2b-256 5dc10c5a5559c7bda9abf22ea6a1c909d3c2fb95522e23ca1ecf9025c6f066e5

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 718.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e0574a1f08d94b1b5a6c9e508e98df6ce646541f5743e05f9a88540bc55e9a26
MD5 78799a3a1b28c372f7daa5cc0a9ce82a
BLAKE2b-256 f5e78b2788594a08635b2bb3b2fd9221de987fe227c7e6f8e419c15571145de5

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 701.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f932731fe1a184848f36fabf68d68b26ca5371c7b9d0cbed9b74bc09b6350fed
MD5 6c5daf82fc3044e2b320f8786ed2ea03
BLAKE2b-256 62c362cb47ab7a2648368dc1aecea1db5922f72175a0aa3daf97b8997ca3f1e6

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 173.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aaf06448710d07767a56cddaaf29f4b068badad601a21d2a729cd13caa8690f0
MD5 9d3937b630e2ffcfd711bbdd47aa6886
BLAKE2b-256 ac5de60d16ef7a02ee0e9f7c1cd4813524a09d3e300bddd69de30c042373e57e

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 175.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7c0fb49bb5af47816322c66d7929d3a8b4561d5ed79aeabc779da490bb8073e0
MD5 24ff84f751b9133f1e3ace390e9b56a9
BLAKE2b-256 d552712612464997d8cfb2129eaf46b7ce01dbd0662371137a65344234f055cd

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 160.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f3795955d200e0f7a12e8f6641dd488c773004af827895a2a870af3dcb9d2f23
MD5 fa15624a9e799b79dceb61dc24d5dc35
BLAKE2b-256 741706e289d98dc79859a4a306125ba73f06cbcd9c501529e1fcc104fad0c6ef

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 654.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e685b109c549d6a23c77816520d39e4183936b9a7a39d42ebc06cf64df87900b
MD5 4683f317d150453c09a1bdc139238e42
BLAKE2b-256 ac95ce7e801c1c933160dfe8088e1d379fbdcb9df9e1522f3f1d502f2a33e3e3

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 604.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4cb7ec8f9e506466d6e30ec07416ebb4c4be84959946eb4c26ac8c3369dc045e
MD5 33194500b1860c74889eba76933e44a5
BLAKE2b-256 a34157266548a6fee3f4c70b1c54908ec1dd2152f2464e85aab9dd594ebb4908

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 593.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6770729416e7a79b161a752001d52f81c2ccbf080b244a0cb86fd4e33c141b5e
MD5 94575fc6de563103afa3b70595c5a028
BLAKE2b-256 7015beeb411a2d6fb6b293983f89c21422688450544607ae76cd3d456af74d17

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 604.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ce040a64f3d18927950588968bba89f0be67f5a4cc936b12c85700089d211681
MD5 2113571050140de6955aca9cd08e70ca
BLAKE2b-256 41728bcff2b295d31ef8e565408bfeda5089bb6931e623852b1f8c5fcbd72aba

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 593.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 397bf434d1e514949d089b1f0cc2829a5c108ba93c89ef99d020c5f62809bc2b
MD5 e5e9c492a8b650f5713fe1c9674900e4
BLAKE2b-256 06f10f424efbbcc9a73e9ad04b80ce28b28c5f727d2b68a270653980cf3de32f

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 172.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e944f11926db7a9d3c7f8a1d3d9f96b1e6939e5d81b61f8a8b24e647bf2170f7
MD5 3463687443abedd97d2017a620eeb69b
BLAKE2b-256 14b253c03bde19c48819c9f43059bfb2374f534b38c7111a0cdd4e7f8206af19

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 175.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ef794cff7fff0123525865c5b4fb4c1a0d78bbae54c4edeb553c24d42d01bcae
MD5 beb5f4a8af46a6987fc133fa4ef71809
BLAKE2b-256 19cac3dc2b1184f06f3a530c901b82f81f0da3e784de6408a498ee123703da65

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 160.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2c01b396dd6393f68a367746d647775e92aa26125932f47e186dd5d6f0410a78
MD5 afa1566c4fbc4ce5dc46062592167a88
BLAKE2b-256 1298a43e44e6623154f737c862f6ae137a49296df844edb03006d76451af45e1

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 650.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a221e4f70e69c13bab23fa8277c30ce1659ca62b83decb4371aef83ec0c845c
MD5 7e0aab1c40c6f953c76faf86c7530b3c
BLAKE2b-256 f82cc5c3aed3abf52f64a59bf34efa00a920a30f10c7bf492192379da7bb3194

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 602.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 643883cc04df1d9e5eebc63f73df860722c905959dcc9b95f8bc30b417beaff6
MD5 04bb8f0d98ff3288ec4a76ccd274d313
BLAKE2b-256 7a058ff0cc05640d52170c9768e398d540d560a3804ebd13071733ef9f71e4d8

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 590.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3b49f64a61e7a322746e1a6bb65a9e57d8abf29fa1274a177fee81574de5feca
MD5 f9718b2bcbcf9dc159617600e06f2176
BLAKE2b-256 0d1f2b97a668519ef30a71a249bdd9ffafd30285bd36119433850bfcd2d10577

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 602.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9487800152d9cb8412639f88a3d70c11e086d420b0f72c28541e391d24f12ecf
MD5 6204cefc72738ddedacd119427ec63be
BLAKE2b-256 06540c5fd2c4c464fbaa5dd4ecb5bdddc9caba50234ff5403fb0a31445e0b87d

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 590.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 64643a2e65c5f1f96ed4b0fbf56af0b225e437d9a84551cec9fce49b3ed27ada
MD5 fd861e8ec28cafe80458ef966c6d8786
BLAKE2b-256 c1bb075da8656a711ff1b61fed637901bafc31afbdaab60d26b2763c3e7a2671

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 175.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 489c1606b79b185f1ed8ed6210d0f0781ab51f2d1b6b9e5378b9372c28055e2f
MD5 cd29fcfbfa93e700bb494d6eee90540c
BLAKE2b-256 666e4bcea09c3457e605c01cb6fe8f9bcb1e6003d44e851e5ad9c8806df32aaa

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 172.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 671dada39a5c51e721ca0d546653c57d66e40e7c9835c06879042775abf624fc
MD5 79a2848d1e1370f5b8d534074b7138fa
BLAKE2b-256 e830c7c05ec794594e5bb5b08e354ecf884b94cb0ad23b1ef27418ed711e287f

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 158.0 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 d6548baf0ddca4084cde97e9439b75a2194fc2a383f4002014520b837b19913c
MD5 328944da2bdbf9ca7ddc42b979739775
BLAKE2b-256 7094c01733b7ad3dc3be2730cc8f11f37d8fab7ed5c5a7f844eb420e8e4fb66e

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 642.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9bc9258fea1e5d5d8ab4c8d9f52c37cf5d6ed3e1f82d17833d052a9c7d68ed8
MD5 303b2a57fb57cabfa208f0ea4985dc48
BLAKE2b-256 724fa899150a60d387fc2a3ffb4650aa0a798f1e19d52c06cbaaba7eeb135c79

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 594.0 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 86a744aeea30c7251110e4b7d6e9103000274f74794feed14017e501081f0f75
MD5 3a0491cec95bd5c964e453f1b568664b
BLAKE2b-256 35cca671f70b36ca9e35cd9f79e1c34b78d49e4a8f6e4fc7ffa805f747032ce9

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 583.4 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fbc771bc3b27fab872a302b8d174b933dc9a2bd9ab6bdd2a89bf18de6f7e9445
MD5 82df0c132e87d25b3e4b491b3d65cb58
BLAKE2b-256 0cd7d3cc4d4a323384a248ea20f85893a1069bee7ddb03dfa18cb3a38fe96dd0

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 593.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b015664786376421c08e4e9a02c4976784e858be191c0adda24fb4ae6e15f9ee
MD5 2aa61be982da34acbfd71d06cf5ae4ff
BLAKE2b-256 f8c8c5517e5f4b247437bcea659e3ee0d9396eddf05fe18dc4a4302c1f750e88

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 583.4 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 eece04cadf0bf19a063869c39456c5eb4ed14ec19b4fed089615a0aff38c3e73
MD5 a02a7faf8d060071489386fbb1ae9f45
BLAKE2b-256 58f860deaa3dcee9e384f34b90347d2ac698065818fe951cea8cc0c75c03acd7

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.2-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 170.2 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.5

File hashes

Hashes for clickhouse_driver-0.2.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56ec4ad0880072b990b3f55a1ea5b23439cf43908024b6330853ebb5edacc45d
MD5 debd6316bc78be015290f29959d50d2b
BLAKE2b-256 757875a58ee617987c4621d430553cd31853f309d5577db971156c49c29c45f8

See more details on using hashes here.

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