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 (since server version 1.1.54304).

  • Types support:

    • Float32/64

    • [U]Int8/16/32/64

    • Date/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

  • 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.

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.0.tar.gz (178.8 kB view details)

Uploaded Source

Built Distributions

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

clickhouse_driver-0.2.0-pp37-pypy37_pp73-win32.whl (131.3 kB view details)

Uploaded PyPyWindows x86

clickhouse_driver-0.2.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (153.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (129.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_driver-0.2.0-pp36-pypy36_pp73-win32.whl (131.3 kB view details)

Uploaded PyPyWindows x86

clickhouse_driver-0.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (153.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (129.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_driver-0.2.0-pp27-pypy_73-manylinux2010_x86_64.whl (149.7 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.0-pp27-pypy_73-macosx_10_9_x86_64.whl (128.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_driver-0.2.0-cp39-cp39-win_amd64.whl (154.0 kB view details)

Uploaded CPython 3.9Windows x86-64

clickhouse_driver-0.2.0-cp39-cp39-win32.whl (141.4 kB view details)

Uploaded CPython 3.9Windows x86

clickhouse_driver-0.2.0-cp39-cp39-manylinux2010_x86_64.whl (552.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.0-cp39-cp39-manylinux2010_i686.whl (539.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

clickhouse_driver-0.2.0-cp39-cp39-manylinux1_x86_64.whl (552.6 kB view details)

Uploaded CPython 3.9

clickhouse_driver-0.2.0-cp39-cp39-manylinux1_i686.whl (539.2 kB view details)

Uploaded CPython 3.9

clickhouse_driver-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (150.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

clickhouse_driver-0.2.0-cp38-cp38-win_amd64.whl (153.9 kB view details)

Uploaded CPython 3.8Windows x86-64

clickhouse_driver-0.2.0-cp38-cp38-win32.whl (141.9 kB view details)

Uploaded CPython 3.8Windows x86

clickhouse_driver-0.2.0-cp38-cp38-manylinux2010_x86_64.whl (570.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.0-cp38-cp38-manylinux2010_i686.whl (555.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

clickhouse_driver-0.2.0-cp38-cp38-manylinux1_x86_64.whl (570.8 kB view details)

Uploaded CPython 3.8

clickhouse_driver-0.2.0-cp38-cp38-manylinux1_i686.whl (555.3 kB view details)

Uploaded CPython 3.8

clickhouse_driver-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl (150.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

clickhouse_driver-0.2.0-cp37-cp37m-win_amd64.whl (151.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

clickhouse_driver-0.2.0-cp37-cp37m-win32.whl (139.4 kB view details)

Uploaded CPython 3.7mWindows x86

clickhouse_driver-0.2.0-cp37-cp37m-manylinux2014_aarch64.whl (529.6 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl (480.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.0-cp37-cp37m-manylinux2010_i686.whl (467.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.0-cp37-cp37m-manylinux1_x86_64.whl (480.2 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.2.0-cp37-cp37m-manylinux1_i686.whl (467.2 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (148.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

clickhouse_driver-0.2.0-cp36-cp36m-win_amd64.whl (151.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

clickhouse_driver-0.2.0-cp36-cp36m-win32.whl (139.5 kB view details)

Uploaded CPython 3.6mWindows x86

clickhouse_driver-0.2.0-cp36-cp36m-manylinux2014_aarch64.whl (526.4 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl (478.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.0-cp36-cp36m-manylinux2010_i686.whl (465.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.0-cp36-cp36m-manylinux1_x86_64.whl (478.1 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.2.0-cp36-cp36m-manylinux1_i686.whl (465.1 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (152.5 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

clickhouse_driver-0.2.0-cp35-cp35m-win_amd64.whl (149.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

clickhouse_driver-0.2.0-cp35-cp35m-win32.whl (137.5 kB view details)

Uploaded CPython 3.5mWindows x86

clickhouse_driver-0.2.0-cp35-cp35m-manylinux2014_aarch64.whl (519.3 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl (471.3 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.0-cp35-cp35m-manylinux2010_i686.whl (459.8 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.0-cp35-cp35m-manylinux1_x86_64.whl (471.3 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.2.0-cp35-cp35m-manylinux1_i686.whl (459.7 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.2.0-cp35-cp35m-macosx_10_9_x86_64.whl (147.4 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

clickhouse_driver-0.2.0-cp27-cp27mu-manylinux2010_x86_64.whl (421.7 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.0-cp27-cp27mu-manylinux2010_i686.whl (405.8 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.0-cp27-cp27mu-manylinux1_x86_64.whl (421.7 kB view details)

Uploaded CPython 2.7mu

clickhouse_driver-0.2.0-cp27-cp27mu-manylinux1_i686.whl (405.8 kB view details)

Uploaded CPython 2.7mu

clickhouse_driver-0.2.0-cp27-cp27m-manylinux2010_x86_64.whl (421.6 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.0-cp27-cp27m-manylinux2010_i686.whl (405.8 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.0-cp27-cp27m-manylinux1_x86_64.whl (421.6 kB view details)

Uploaded CPython 2.7m

clickhouse_driver-0.2.0-cp27-cp27m-manylinux1_i686.whl (405.8 kB view details)

Uploaded CPython 2.7m

clickhouse_driver-0.2.0-cp27-cp27m-macosx_10_9_x86_64.whl (143.8 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: clickhouse-driver-0.2.0.tar.gz
  • Upload date:
  • Size: 178.8 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.0.tar.gz
Algorithm Hash digest
SHA256 62d37f93872d5a13eb6b0d52bab2b593ed0e14cf9200949aa2d02f9801064c0f
MD5 9d8a1208e6d44addb9742f2c4e88bf59
BLAKE2b-256 6bc9ea337002376e2e9c881fb4c4bb9e840528a72ca840a24499af60506a0c2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 131.3 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.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 869e3796b61aa75988a7951ce4d8365c2e382309b9a7af2d5e98213644a5ee7a
MD5 343b9ec7e739289f5de6aee5c9a7b7a8
BLAKE2b-256 b10fd250b1d473889175e01e91d68ddf6d187d614db94b6284ff190d5f7b8dd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 153.0 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.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1fdb4640166deccf8c6745970681267030064cfd7caedf79060e832f25287217
MD5 78fef1dd4fa06c4c7d36668451edeb25
BLAKE2b-256 b6413b9c62853e0477fbcf043840641e7afeb443e384d1fc84d762b0ce0726a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f3bb0128d72db0081fbaba1acb852ecb8ed9ee8983c5b57556e3bdcb45fe487c
MD5 2ebe55037fb452a64cc912d348771c15
BLAKE2b-256 64dc3673679ad03b251ba06b3ee5d49b5c3843f84640a941e43e123afba22eea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 129.3 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.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 929983db1d9b47d156d850e88831f5d85a8043b5ac877b6251d79491afb05ba4
MD5 e857cf840e4f532be34d9a3142b1541d
BLAKE2b-256 3b7826d2ccf459f5ad7497fb713fb718ea74a3f4de662892b7f2b762f3be4883

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 131.3 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.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 96dc46adc6e2441d4f76b401f38bc57de7dd810a5fb8604767d96a2d239f6634
MD5 ca841e25ed7b38cac2c2457863030c22
BLAKE2b-256 f350b54f86fc37769ee11dd9d4fc662ebcf9ef3390055ba03d6c444843d26476

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 153.0 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.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 97d0f3e0094bfad555a83d6c6efef4ca14607cf045ae0124933578f2ccdfcd4e
MD5 589036b7ec66774b0b6678014bd8295e
BLAKE2b-256 5db02ce97b0644545625ba159a6377296818d800d787d74cbc559530a45340ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c2d8575fa82190ffa8bd3c6d0d2a2f483a9a7eb0303d2b65404b2e4367b1c43
MD5 6bad5892780d8aa2de7160a116594944
BLAKE2b-256 f7c44e65a99e7f599f1563f41fad63632bf5eda075c0b389f90502c617bac31b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 129.3 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.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc4aaa52208d9e185b912f0e640184d87db03427bfb8694d420d0ded73903b5a
MD5 19591fc1944ca402f08713b5d556603a
BLAKE2b-256 060c89d3dbff094570d8cc34b36e5c4b0f5d26202acb9a8b89ed102685c2231a

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 149.7 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.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5be3f6dda0e12553a40f71fd13fdf60c66c91452c0ec6bf513128441d0073ed0
MD5 3e194ae5c001907c44f134b7fe5d114d
BLAKE2b-256 ed0e7601e55e14f0aff9279e44562ff0ed56be6acb0cb0543e6986ff399a0ee8

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 149.7 kB
  • Tags: PyPy
  • 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.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dcce87611c7f75671a768e83ac51e6ad1363199fe0bf7f74b7babb5254426e3e
MD5 9544dbca89d81fe26b010a8602f45f86
BLAKE2b-256 c892ae84d74590266d60aa80b1c7ac904097425778e05154b78438e09ec66617

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 128.8 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.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a20570eff4119f11c5b458d4860afdcb510f5c397d9e9bd12f2bf196ebbd846
MD5 28d3ae72886ee1b9b1cfc468a8f4d28a
BLAKE2b-256 5be5c1ca1c7e5da8690b579b63ab8550d0514fbd77898bc2d3832bd70b108918

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 154.0 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 27cd2cd032b52f2cbcbaf064aa71805c70fe91247821ac91bf2ae71e224e6fd8
MD5 0c84a84fbb23ae03409be44b8121fdc4
BLAKE2b-256 b2599b6900c4a5a7967952439247823b27b626f91eaabd470a07e35d3c559a2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 141.4 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9fef38a3d23a9c2d4f5fac2227bfb2fbe606138506aa10a4a2b563b879b995d5
MD5 a3dfb712f0d37ed15b0c021d48dc8787
BLAKE2b-256 7070fa9f71927a5c8d46f2551e77143ab6ecda72235e9d842c65eb6bc89b038c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 611.2 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.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4eccbfe3ca23110b16263be68edcdaf22e8c823171e50544249161f36611547
MD5 508cd66b342d6bbbd7ffbd5efe74d99f
BLAKE2b-256 68ce84722bf9f36a4ada47c2c823f4e8c95ad28ad9fad54bff804ee92a605c38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 552.6 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.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fe8575cc809a6703d065e29aebe88b265e4ed435c2fdfd18353f6ab2d08ca650
MD5 54951aa7b8511922c8e4247cf30e73ba
BLAKE2b-256 2eac4ff909db7b450ca031aee6a25f97c4ccc465528fb24b69098c87faba1c8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 539.2 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.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2dda28cb424f8d449271a0eeaa6dbbfe112cfb650a3936ee2ff06359cbc7d6ad
MD5 d36afb00502e50b2a5a2afd3d881bb6b
BLAKE2b-256 1b3ddba513fc31e260999097ea0f9fa25a11c9838dac257fee2b51ac54263a7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 552.6 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.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 82161e12771ebcd2f9b4078f9653331aab3898b183302ae307183983d15335ff
MD5 698fcd0cf3f861e05414a9eb7ae95f07
BLAKE2b-256 609d622af55c06f73b190940a8ec5d35c1744e558d8c8aa9e1ff6cb1b967f311

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 539.2 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.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f69cd1a0981c257e48ae0f4bc602632e0b5fa24aa163d3042337f04db75d29e3
MD5 1eb2dd9fae92dfd84eacbc943a421282
BLAKE2b-256 e0a10cddd889c597d7f09eac3ca55b4ded6d73cb7b484ca54604e2a245e506d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 150.7 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.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fc14485e178186c27107a12805640000b7973d6756f1675a46478d6e9734920
MD5 b2742702b9098130ab64b1d0f3b64c9b
BLAKE2b-256 f3135f6ff156010a749b1410f431172d0a69575fd1e3103fb551c05345d64451

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 153.9 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f415be3571967ca42a4c2836826b203030c53e739b9e2b4a79ed213706ef6924
MD5 8c58a6c320e9cf3f667094481f7e0f38
BLAKE2b-256 b0d625c1de2c9fc871eb3ec546236a4d3828f6d18512bd892a4076fe5cfb66ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 141.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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2ccf58a6e1eefc4d5833b68c40716ff1294b20bd7c40a09e5d65afafade43e9d
MD5 58993c6b35fbd730ace85d70f1d26804
BLAKE2b-256 8cef86926a7bfe231e28fa104eca4e4e8f683c5b6fce09b46125f0a629c09ac2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 627.0 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.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 424bb92486f74199231bbbbbf8362c8914bf7c7aa4af9f6347d70162ebef5844
MD5 ad37773c5c28b0323023471b133fd816
BLAKE2b-256 0bd6d470a83593309260fb27f0651b7fecfaff92b942faf1c48c75a6c22ea4ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 570.8 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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d5c5aecc58a8b71492368ebd1adb3016e122692e8a31b2ea3aa219c6a4e224a3
MD5 f153f6daa0f99ca57a93c27b28e7f96d
BLAKE2b-256 b4fcbb0beb581040089804d65a4567540235b515ed37871c16213948d34e526a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 555.3 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.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 17b30703e4390366181642f7fa866853d7134134ebeb681a1776a0abe61a93cf
MD5 5f55ba2208fe9b9b5770644b542db29a
BLAKE2b-256 7fe59583fdd2c32008e09a842000fff5d3779e355ec85c5da51e5936afd9ff19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 570.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.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 87a7fef364b510abb5344533a394ad3ec06047af28b9272087b28e6570617183
MD5 2f3d3292e240e990f7fbe22933c062da
BLAKE2b-256 7b4b48ed485fe57baf2baeec818fa9f1aefa9e501d11588601ffad2f19c63beb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 555.3 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.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b6f62c226cbfaa6fd336ca5d80898f0100ea116e67cacd94fa0967afc60c6b0f
MD5 f34c6bef5d23b8ecba2422d108fc3ce6
BLAKE2b-256 67ae683c4d37a6ac18abdc41d02831fe356639bcb979484b4a638411a914a39f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 150.1 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.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9055e329affa8c221479b2375a0e23cf9238cd79be66daea7bcec8b2ba60196a
MD5 81729a9a4361de9cd490d7d67c27d83d
BLAKE2b-256 44deab3317b488a0b4eb43e88bdcbd1937c774a09e691eeda3f0e6059c0bbebc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 151.9 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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a904f4c04011a90419f4488f607f1fcf973814b0f9f6f93ca0015578922cc0e4
MD5 e27f0a7c2c9b2a7d7302520330acc740
BLAKE2b-256 ca502c405ac2721b4dd4789d6c197dd8eca9e7a923ec81e4d84085b5219af3f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 139.4 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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a88fad262d2b833e073eaeca3d054cdbbf06ec78a1f1b0e978420f53ba42b90e
MD5 cc4e8bb342870334fe94ee663255efc3
BLAKE2b-256 5e6c7941333c0b2e5151aaddf726dbbafd2dd8fd6fd24939b60dad2fa0e64ed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c824f3d58558b9de687f2c413a2c59de019c18237f8e6342b71b8db0292efe8c
MD5 0744b46ee953ccb362300b95db516212
BLAKE2b-256 a851b0bd8ed64a746438698b54f79ed6fa183f161d708b63026a1c46ad90af6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 480.2 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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 315103ab8c10f9b1a547b7ec7c1a7a668fce8c89dfc350439949edad3d986074
MD5 2cceffacd7ed4185f34d525d263b50e6
BLAKE2b-256 7d3316f13d59d084ab3f38ef4c8f6906834d1a004c03ef2f68714ae22e42a3d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 467.2 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.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6db2322f7ecdd2481d2a3d34ac11d71fbe6b4a407a44617acbd058c92ae3a08a
MD5 23ccb7f14264255ada8a12138963c70d
BLAKE2b-256 3a04b83b9878059a3533f715372b0d6308d967951d5fb925c36970ca4236bc18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 480.2 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.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5719e9e10e64426e193042f0ba5bd4927aaeb83ed063511f8f586448b9725d89
MD5 47c95210912ffd85cb12544eccce47b8
BLAKE2b-256 6b853c515f54c0f9002ed36bb991204cd371b680f0322f5982394d41b1261c98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 467.2 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.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5efb241dac6c69c9a26275c409b2a81141c993b37bb7a1ac7d9a38207276c3a4
MD5 fbd6d7daffa23d6dd926aad80ad664d5
BLAKE2b-256 ae846663e1cf9820fc83488beb9128c8cae6619bd630588f6d77985f7c2cf10a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 148.9 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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8fd90935d914384f39aca714b60bfa1fa59fe135dd19c99ccf8f5b1271aed78d
MD5 47f41dc4d9db84b5d0cc80c26c980af6
BLAKE2b-256 89504ff4b7847a295129eed6db233600a7eba03a95d5f7f19d4534c4237d8e4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 151.8 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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 51e8d9d6199f2ade571b72827a8088b46931768d7c0d67c1a4b6ad8aabff75eb
MD5 808ccce0968113e2b7beacf58e5c3b59
BLAKE2b-256 baabb4f66899b8f17c7debda2417591f65be13fac3c8cdfc2d0590902e2af4cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 139.5 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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 edbdcbb7c32e0efb1eda143b21383172e2d709837c2d09e036edcf41b770df8e
MD5 8960a3eca3e394cb9b8c3be67013a08c
BLAKE2b-256 ba9c5f4bfb45da1271454177217fe177b86b8fcc0d4ba9b68f6b3c2376c930a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e423b9add7e4a07737f0e7e19eaa249f36afede8aeaec029e69b93d94eefdfb
MD5 fde1f2e23ffcacb6d7d993d2d6ffab17
BLAKE2b-256 6add53ddfc49026a23c5563fc3eea38d8e4b1e0f6f5b4a3afaed2ff2ff1b6f5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 478.1 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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f789ed03d1c7aefc6e7a626c51fec9048efc076d0326751614b48a0857331b99
MD5 1585dc9d3f4a5106971a93063eadaf45
BLAKE2b-256 d9ea265008686349490763d450bceeb1ad072352d311e11dd9e5f68993a20ebb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 465.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.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d3195c9f5343149dfffd729daac72e0ca7030c87a10ba2cbb41df7348e547eed
MD5 98237ff55b3adbcebd2fd553aff8a7b5
BLAKE2b-256 1d3f0011e532bbf82196bc00935008907d1e083bc9f02bed98b23b1e4e60da63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 478.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.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 195656ae622901e166cde6d338d4a13a54e3a38e255793777bdf56130858eef5
MD5 570803522bc1148e90a7c58212cf46f6
BLAKE2b-256 5f87354c40c57b918ec48c926f47159092af26e3ed167e2e88777e62abb2d61d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 465.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.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f0335d98d6a86a4f0505cd4f98f96e08906619fd8fdf6a5de05fb5ee6976521
MD5 54fe2affd607a06d71e15962c25e0dc5
BLAKE2b-256 848ec355f1dd4e1c526759137f2fd37c8d4049c2c9c9fa25d4af6a0963259f94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 152.5 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.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c454a9053feb8b4fd21af24a79128d87662a49dbaaa2d5eb612d29d3f139d3ae
MD5 4a883de41551de0f72eee490923d3909
BLAKE2b-256 cab14f540b253ab9cf67b353da72ee936da693ad3fc4c61305682d48071c0a85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 149.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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 cedc6fb30303012fbb5dec6605ea7694784d806291958367984fe1a333aff687
MD5 ba5a72ddee4782aa90c91a392e9ec3f5
BLAKE2b-256 d01efec37aaf9f87fe8a6e49a4387b8b96f57816f768c9dd508753a068080925

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 137.5 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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b55aa541eb2ebcbcbd25df5203942f19d778efbc7ec43c33f0620d0347d87e04
MD5 9dfc445a130e8314650577ef510d7be6
BLAKE2b-256 a7f029d29761dd9a41e39eee7833fc796d3a25c2ca6d27673884220c3a78898d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 300dba28a4f82bfbc92b33df7393d0d33162a1952910305bb0ba7abf6c1edc7f
MD5 5ff564d0747f9e27d274746c5c491b7e
BLAKE2b-256 4c6997769ff5904c4656083e73e31d334c3e414e5dfdf66f5e5d1660b642d3f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 471.3 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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b1a13fc73faba77aec75101e190d22253b125e08c3abd5cb1b8727fa4e4b8e67
MD5 f3e25c62f79dc0c19ee1fdad43aa80b8
BLAKE2b-256 41fefc6e55af033d9daaee65ed3add15de7d045df73dd9212d07f8aa3d874978

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 459.8 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.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ec863a80600a9c7d8cab60e1bc051b0fa525e712a141cb66c6e6a66cf83faa74
MD5 a553e2d89a1d00777084051b5f10cd06
BLAKE2b-256 9f809f950b9f1de8f98948c3f034b7f88659667322a008e072a416768a7318f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 471.3 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.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6c48ebb3be0b0cb6cb7dcfce9f8ec078f3d9ce74f86606edfc58444ee9523096
MD5 4789e9d8fed700fc608aa183d8823e45
BLAKE2b-256 73f04bc007e35342a1f01805b10758614f00e75e2823d5fc3df0bca03634cda4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 459.7 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.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 612421bc789ec1bd4f3c0b0792a2fb9a8b97fd5138960dedba60783b5e8b28ec
MD5 c08782f8a3fa079e02c1904fd25ef65a
BLAKE2b-256 24c074b021f76937cca90ec2e92a19b608b5eebfe49e88202d00e5b3c71193d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 147.4 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.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eed8f7214751c870624d68c30ac9f2233fbeee300caae1748b0f86501314cc61
MD5 7c94848e0c528f3de7f49620e8a55524
BLAKE2b-256 2d21b5037ea64862c0b8280b90576e82fcd023a4cc5badc6b8fea6916172c14d

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 421.7 kB
  • Tags: CPython 2.7mu, 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.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 01dfd4fbba3dee10437d4c9534159e556691b029f18860d999aef6686bc978a2
MD5 9d4c7acf4f07a574c1e4a9152fb171b6
BLAKE2b-256 f79d779d45dba9a0a420b50e6dc99a5c7d612d02a1c0e9ffb04ff02f796c5680

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 405.8 kB
  • Tags: CPython 2.7mu, 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.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2b24d0e927d17ad3245044f79032058b8c3fa6dddc3192f75fdce32632073e43
MD5 6a6dfdddad0d381cfc246a2400e399dc
BLAKE2b-256 431e8fa71ef8b3f0d591a17545b10bcb42605c8c48a3912058532a1a767c891c

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 421.7 kB
  • Tags: CPython 2.7mu
  • 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.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7a9425f741df899453f6e8382d1d6168f1acb4d72a0ca001e23453a451dd712d
MD5 648ca3b8d45a98dcfde868a138ec4594
BLAKE2b-256 efea0afe6b86c2ce67f9b378893fff13bebe87e16f3ff93e7608b43d9e57234a

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 405.8 kB
  • Tags: CPython 2.7mu
  • 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.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0696fcc9b4a05c926b770ab08e04b083c93abfb3f7f0316d1bce20a5894901c5
MD5 b80131ad200d8b62580682e323289aa7
BLAKE2b-256 7aa7d7e39bfdb557da02359979b2263a544b04d5362f4ca7b1ceca3db804ee26

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 421.6 kB
  • Tags: CPython 2.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.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 de0142b1600e2cf76de708c96eaad583b01249911300ff7ac83ef8e643062a7e
MD5 7a75d0e078d3e5f8964b9a5b5df47b53
BLAKE2b-256 306fb3d04e1100c88802c9e87735e0bc931463bbe72938e60e8cdac7db20fd3c

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 405.8 kB
  • Tags: CPython 2.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.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac2410ef71e72cc67585260c18587693f4dad4fc288d7bf4850649eaf0eef1fa
MD5 3c2f8adc78efe8d5e32539b3ebfe09bc
BLAKE2b-256 c2a4cd7890abd24888351b50bcd176e349e3fbd096094386b153d58a9a98cc46

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 421.6 kB
  • Tags: CPython 2.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.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d4a6f63bde2bab0c0beb0a47bb3318cdfe34398298e0a94f5f3588e460376b90
MD5 ea16e0ace2665fd09015718d52b4bdbb
BLAKE2b-256 854d6d5d9d180d7f08f7a0329764082b6bbbbed9e37cf4ab75a138cc81dfc6e4

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 405.8 kB
  • Tags: CPython 2.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.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff53cc75ab9bacb55b8a5e7215f7c073bff7974b3f3c9cd96a9c02ece1e62019
MD5 5f944169706b86d26c557eb645460c7c
BLAKE2b-256 726e7f0dd4d25aa41ef83f924c21fd767b580fdc74a3a13662af2f6e701a60c7

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.2.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: clickhouse_driver-0.2.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 143.8 kB
  • Tags: CPython 2.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.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf015d17c9c8369d75310c4388c832300b311004180849eea342a282e09c0111
MD5 118afc6d86a10230ec52a1165ac0d197
BLAKE2b-256 4ee18261d512f904aacf503fc6e54efd6ca0ebe91dcde55554d49852a4fd481e

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