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/128/256

    • 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

    • 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.1.tar.gz (211.3 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.1-pp37-pypy37_pp73-win32.whl (148.9 kB view details)

Uploaded PyPyWindows x86

clickhouse_driver-0.2.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (178.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (147.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_driver-0.2.1-pp36-pypy36_pp73-win32.whl (148.9 kB view details)

Uploaded PyPyWindows x86

clickhouse_driver-0.2.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (178.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (147.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_driver-0.2.1-cp39-cp39-win_amd64.whl (176.2 kB view details)

Uploaded CPython 3.9Windows x86-64

clickhouse_driver-0.2.1-cp39-cp39-win32.whl (160.5 kB view details)

Uploaded CPython 3.9Windows x86

clickhouse_driver-0.2.1-cp39-cp39-manylinux2010_x86_64.whl (689.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.1-cp39-cp39-manylinux2010_i686.whl (676.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

clickhouse_driver-0.2.1-cp39-cp39-manylinux1_x86_64.whl (689.2 kB view details)

Uploaded CPython 3.9

clickhouse_driver-0.2.1-cp39-cp39-manylinux1_i686.whl (676.8 kB view details)

Uploaded CPython 3.9

clickhouse_driver-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl (172.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

clickhouse_driver-0.2.1-cp38-cp38-win_amd64.whl (176.0 kB view details)

Uploaded CPython 3.8Windows x86-64

clickhouse_driver-0.2.1-cp38-cp38-win32.whl (160.9 kB view details)

Uploaded CPython 3.8Windows x86

clickhouse_driver-0.2.1-cp38-cp38-manylinux2010_x86_64.whl (716.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.1-cp38-cp38-manylinux2010_i686.whl (699.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

clickhouse_driver-0.2.1-cp38-cp38-manylinux1_x86_64.whl (716.3 kB view details)

Uploaded CPython 3.8

clickhouse_driver-0.2.1-cp38-cp38-manylinux1_i686.whl (699.6 kB view details)

Uploaded CPython 3.8

clickhouse_driver-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl (171.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

clickhouse_driver-0.2.1-cp37-cp37m-win_amd64.whl (173.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

clickhouse_driver-0.2.1-cp37-cp37m-win32.whl (158.1 kB view details)

Uploaded CPython 3.7mWindows x86

clickhouse_driver-0.2.1-cp37-cp37m-manylinux2014_aarch64.whl (652.9 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.2.1-cp37-cp37m-manylinux2010_x86_64.whl (602.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.1-cp37-cp37m-manylinux2010_i686.whl (591.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.1-cp37-cp37m-manylinux1_x86_64.whl (602.9 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.2.1-cp37-cp37m-manylinux1_i686.whl (591.2 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.2.1-cp37-cp37m-macosx_10_9_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

clickhouse_driver-0.2.1-cp36-cp36m-win_amd64.whl (173.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

clickhouse_driver-0.2.1-cp36-cp36m-win32.whl (158.1 kB view details)

Uploaded CPython 3.6mWindows x86

clickhouse_driver-0.2.1-cp36-cp36m-manylinux2014_aarch64.whl (648.6 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.2.1-cp36-cp36m-manylinux2010_x86_64.whl (600.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.1-cp36-cp36m-manylinux2010_i686.whl (588.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.1-cp36-cp36m-manylinux1_x86_64.whl (600.1 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.2.1-cp36-cp36m-manylinux1_i686.whl (588.1 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.2.1-cp36-cp36m-macosx_10_9_x86_64.whl (173.7 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

clickhouse_driver-0.2.1-cp35-cp35m-win_amd64.whl (170.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

clickhouse_driver-0.2.1-cp35-cp35m-win32.whl (156.0 kB view details)

Uploaded CPython 3.5mWindows x86

clickhouse_driver-0.2.1-cp35-cp35m-manylinux2014_aarch64.whl (640.5 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.2.1-cp35-cp35m-manylinux2010_x86_64.whl (592.0 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.2.1-cp35-cp35m-manylinux2010_i686.whl (581.5 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.2.1-cp35-cp35m-manylinux1_x86_64.whl (592.0 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.2.1-cp35-cp35m-manylinux1_i686.whl (581.5 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.2.1-cp35-cp35m-macosx_10_9_x86_64.whl (168.3 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: clickhouse-driver-0.2.1.tar.gz
  • Upload date:
  • Size: 211.3 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.1.tar.gz
Algorithm Hash digest
SHA256 8f446bdc38a676d4b345a4395cf913e47d1a694250a971ddd50c24e08029fc75
MD5 032d7c92f1c75f3aef6165fe58fa1879
BLAKE2b-256 4e8c4aaf20f7987c0ea233a11fe10801e0bdbd599ced819591c3c73c1616a94d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 148.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.1-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 1b3948b7896110cbd2dca99641f99a22dfe974bd638a7033a19847e6cf622111
MD5 e043ef826c7eb290f7f335c5aef30f9d
BLAKE2b-256 bd63f94782c9a6b05055820b7e17fb49b5fcbca73a853d9c81f34d567598f152

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 178.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.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d7d0ff94d35aff4d42decd50c89530600a0b22eeaac8dc2abf5427d6dd1e0bf3
MD5 53cb6e63963bf8b599dffe1d3595458c
BLAKE2b-256 e75b40fd4256da54e1b310505c35e050dbe833763e1fa35050a4eaaf6a1a818f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.1-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b42ee675e99ff7a5704eb6a87299d09c96519098d0d8dbdb859ddc6857b2e497
MD5 6c3019541a9ad954700bd2281e843c4c
BLAKE2b-256 31adb2bf934c6281506a4be3de59f8cd97981d23c5da452d4979fdb1e2e16d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b278d44fe4794147a2b1b34cb3a3446c8fee3e561e65c8107f5ffe996a589d50
MD5 58df4a75e77695699592e1e8764910fc
BLAKE2b-256 54900ee4d2505560f5c612138bbe0116a0d1c99d2ecfbef529c8a8921a3606d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 148.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.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 b318e4ebfb8e0331891e9bd82ff325b848ddb421fc6a62cdd9bd5450b3ce7aa1
MD5 a09f12e6b0389699c51c6ec1fee3bd20
BLAKE2b-256 092651ec08424b25dd2eb33a36b32ca8ce15bdeb1a25bb61e8f7f45a29b8724a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 178.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.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 75c7ee1a7d6e3c0b46e1ccca5cb58b1ce96b469918771fb7feca9f8e0cc64510
MD5 b0adeb6fe851ede78998f4983b30acbc
BLAKE2b-256 b51dea107d5fff1c759f2d21d8e44cfd068deeeff283cf17fed254e10ab2c14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c0eb52b0ddad5519f410875402b6f78c154bf98341c1e8532b94682e48a8f568
MD5 cc5ec998ee3783f09b09da99cb4850b3
BLAKE2b-256 33453ac9e2349b7ca0707af779a0c21ea98f93843a6545a5358dee131162f756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d63003043de79bef3051ebbaf41298799b41a1b36e503722b1c36179d7171254
MD5 e9355f239d53d1c5e9dbe9b5829f80dd
BLAKE2b-256 681af44027f1446c31f7aec9835f8d81d196a6b4d2d9e0866f2592a576d0a96b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 176.2 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d7ea4d15fb00b9db3d4c8702a3e62ad984b38472a4a65dc4f4168673c965b76b
MD5 048dd67cba10dc600848bb386974be15
BLAKE2b-256 27aee8807f8536080e2eda505d8a7888b16466e4935489e0a9bf2fdbcf600cac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 160.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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b2e49763ab0cb78527dfe07626812ceefffdd841bf5c8c5de87669c02ab253e6
MD5 5e89887a626b564a9bbf9588ec43faa6
BLAKE2b-256 92eb520ce260aa231cd88f9d166931394d43971c20dbd419aac016bc2778933f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 746.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.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8fc70bd92c89f50f3aba0a9444edcec6873836f1e5323905278454ed12283f8
MD5 90581cd2fc990da5c4bb4579455169db
BLAKE2b-256 16b56f3685d7036408c8d103f6c0f1932eda8bc11109ff59dcafd59eb6df6904

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 689.2 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.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7180466ffcd19fe136f444b76d64888cfe8cdaea8705187434a6a7f6fba3e900
MD5 2b1a642d6cd87ce05887f3774da0ff86
BLAKE2b-256 e73cbea7cec79e18a01d216667c4ce3ed16f668bbb95273fce877b5d8f143421

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 676.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.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e27e6b0831566188a9d4b1d0673a041789b4d213a7dde899d810da640306a389
MD5 78fc1d11ddfef15d710f503be8136f78
BLAKE2b-256 e0876a54e4d930c675f752d88d064657b80cc5ef93e830534378ae4675645ccd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 689.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.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1573379b2b8e510a63bbda80714eff4527e5f353cf45687c6f386aeed7ea9348
MD5 f465d515d70a0fcf07798812eb780278
BLAKE2b-256 433cccaa866d5d5f65fb9d2aa22337ee5d5840740d2f22efe8341cb7a14d36a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 676.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.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 95d8e1ed3a9bdff0eeb362722c4b0c804d24a7eb48c2b53bc3bb989532ee190b
MD5 f499b6cacf946a4bf1c71afbf884fb0b
BLAKE2b-256 019121a7032a3e4a71521ba3afa1df87a79ece82597c992329727fde05c4e3a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 172.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.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe3b45b640cd626a88c099d7336d62b9c3150a88054e3f1d3e266f289c2f9240
MD5 f1e674d47aa16ce2df5a08a8d7e5eef1
BLAKE2b-256 7bc652041a711f28eb6e2072d701b21a4c8c3d4ee25ba04255f9b1d2b8adf9a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 176.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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4f2d421b56883da61db9d77a6295b7d8e42a0d730758b6919505b18a96f9de72
MD5 80cbc15e0d3625b8858dcf902028c1e7
BLAKE2b-256 c1f53f47a6c6b685e57976064dc7fbdadc769597c99c435897ce3c45bbab9692

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 160.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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a88c50873d54084f8eeb5d44d92d2b2d2aacf6624d0246f1d7735ca5d4e4c239
MD5 c418d2ccf824744dc0a88edc42adf469
BLAKE2b-256 0016cc52e4b04f32a70030cf80b900339de716bc6b87bdc280466597846d0383

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 770.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.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5948d8befccedcfd355dd1bfee87d2c6e3770a9069839e25015158b21d293b8
MD5 fb5742187cea173f80ddc807476b13c4
BLAKE2b-256 305d050b09320e30acaa4e092245b6c57f477ced2bd4d740a14b38d95c5c47e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 716.3 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.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cc1913a9b2c954b07963c66a92f7dd2cc66474fa0b10f35d791d9d8958eee346
MD5 c86a967401522f9650947b99446043a0
BLAKE2b-256 2960370cfb33e75a9c5f973681ce2499c35b1ef16e783aa651e572c89f761657

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 699.6 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.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 851d702e966b89b2921dd3792dcdb4b2b5328a6a5ff462ffd30910b53f2782d2
MD5 4afd9c93f374c520cbc2661f7bdf9f5a
BLAKE2b-256 aab1899e94ea536f10a1cd79b5cced8a9f9d1c7049d30aecfb0f014ef15ff575

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 716.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.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ba37863f1344f4a47ff796ae1cb2161959db428c780f3d1c311919c7587edef1
MD5 7d51594f0e4b094fbb5e009639c12377
BLAKE2b-256 d5bc41b2f50523509653d50ed8275f029ea755bd420b2594e05cc60d7af2daa1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 699.6 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.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 76698a1ce81f8ff7d9deac07c408430cea013b98dfb53274f41e602acb24bd7e
MD5 9b278f5f8fb2fd584823866ab4c7a165
BLAKE2b-256 a119de961acfbe4f828879ea15663e4a6aed52fe9e617d0ae2283caa6b207391

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 171.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.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae549c67ba2f8480370f4971126861ec229928200086a851746d6e154d97af98
MD5 e0d0524f003eae153130ecb1bdcbb1ce
BLAKE2b-256 d18296243e3fee0a27c23344032d909525b9fe51151c949ac7959e80a8f09242

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 173.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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1372f213bd7c3356363c3cb73050ec4a5592e2c4a6c17fe6fd5620e614ccd121
MD5 f549d2f8c6602cbb2fbb720e8b0692ff
BLAKE2b-256 4e30d6fbfc253bb535d20e0160e9cb9283f6ff0959598f3f4aefe93ab1e2e98f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 158.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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ed2d002777124e703bd59cbf3143138c3feba8e3ee402ad122b032279a3d58f1
MD5 2feeac12bece04444cc2c619db3f58dc
BLAKE2b-256 b59f62fc3558dcc8c6a0eb141c06e7e272a232423db81306b8f42a7ae2fd8121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b1edf7adf5019cf10d42f703b427c5b50e0a2e33b3cb27752a9df6a09d35822
MD5 c7341ce2e11d371b6db4e0f0d9e7b937
BLAKE2b-256 ee0c16ba519dde587b06b8dbdd4bff8c764f562c6365a85cc92a1a80684181d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 602.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.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e720af513094a5db98465985018cb2aba6061afd7fb15e69604f34e9666915e7
MD5 6341be31220ab134f31ce8ff438f60c9
BLAKE2b-256 865872a0cb3604d9c296a0e5fbcaef045fb1ce69499b6fb861c39d6c7ae4c912

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 591.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.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dcb338392183ad25810185deeac601f03694df09a9e902970351b4bc142194ec
MD5 6639735ea9d8166bab5d2d3cafdaf564
BLAKE2b-256 5ae43808e1e7ff032a86efa32f7d403680202d68e9f4f63c27cede44e72221c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 602.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.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7992afda54ea98d98ab44bf5377f6c66a2e80e482f092edc1ca161d9c0d5afbf
MD5 c89ae4019ce640c2e85ab87e95b92039
BLAKE2b-256 6bcdd4fdeea6a3f397954bfeb730e1fedecfa2a55eec5cc3f82062519bc29492

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 591.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.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 adb8df900e17cf92147ad9d933258852bf3abbae8f1e0a6b091e986657d7069a
MD5 88e2ca709ac2069bf937c7149d3c8ba5
BLAKE2b-256 b741bdac6fa8ea7595f4fc24657620fe4829320ad414bb73d9238a634a3eaa2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 170.2 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.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5fbf2ebead433f948c42df2d19314057e7e42519a70a22bbf6a0f3fdea00981b
MD5 f0d2dce9e565e0a91f17c85eea4ec4db
BLAKE2b-256 6f9edd2d35d622f48b2b3c4d8910b479f8a6e5e1fcd5d3ec5ac2c9027b9f6e49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 173.2 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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 aa5ffac9e4e9d353ad0719b1bd003ec533ff1e1970c12cef29392ba63bf5b24c
MD5 c7e86e5be67eb54b95ad6de01f88ed0f
BLAKE2b-256 8859c570218bfca84bd0ece896c0f9ac0bf1e11543f3c01d8409f5e4f801f992

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 158.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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 49ae7793474907007b3fd3bfa3caaf88ef6123cd4a253ccd5f6c5c74479d290b
MD5 98ee16037023d1ed3df3ec199592a764
BLAKE2b-256 26a552b6073d405a93cde7b55dc19c219266e5edd5f8a31e1a1a864c01deb7bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d6bd7d44c7d9e41319c8b4407615725f9823158ef96b65b638ef685019d9891
MD5 fcc2d65125238438e04c778778f465ce
BLAKE2b-256 f38e92608acccc283df397c4a83f4f2eb5c487392381f9540585644ab6197160

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 600.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.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9429310eb4953306def4097c1defd634ed5ac0e0867ecb5a686eb5383fbcb392
MD5 cb23dd30fb1820470c81ab769932a087
BLAKE2b-256 0e2fcbdeae2ba6a17fef9efa065df234dd23a2e84dfc80a17c5552252f372a77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 588.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.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8c9a5e596733e047981c11eee9ca6322067dfd108dcd5cacdfadd446138fad3f
MD5 08237f161ba5f173981c09cecb513434
BLAKE2b-256 b374e288ef18f1a13617cd96bb2ed3027b228924b05651d0bbaf07cb69d63760

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 600.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.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dc3a9ce962d1639c168cb8d35ed5c33a1631bb4476e0597c0d9650744fa5017f
MD5 75525ac31215974396be74ec90e0df75
BLAKE2b-256 db19723c1eb44b7cb3250bc19098976b0162423d3c88f4f2fcd777d2cbbf71e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 588.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.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a520da97f9bc709986bb42d6242ff7aada25615cd3534456b3e0bf016547372
MD5 b06272b9f6ea581cf4524e4ee77de0ce
BLAKE2b-256 1785ce334247b7114cc4eaa811801d0f6a796d416c7603d04640447f527389a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 173.7 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.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 534d9b013b8cbef89e41c73269c5320fd62334d62a5b1c07d19cbf324b6ce313
MD5 09fe14b40caf703f58a67c7f5ab1bc00
BLAKE2b-256 5c0550cc06184b36f5ddbe16fb0456fd59b5f38e31058e81bec0db838862da4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 170.9 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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 221b0e0e8d0605fab458df222cdf9660bc0946d69225c5cb3914b0576f736064
MD5 45a5873883d514a74e335ff6a5fba96f
BLAKE2b-256 c956acdd5d995da476db6c4f2b83fcf17b71a7ebc6eb37407d06835047e0e1dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 156.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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6377747637d399c9b449319a22442a284332f7e4fadf6690941028723e1bc9e4
MD5 c9998263d1370f6c334ca97e372e2f1b
BLAKE2b-256 b743338eaaae1e0a932c595a858a84a8cbe3471ebb900cce9d4533b7fedcc373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_driver-0.2.1-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1e079e1ccfb8a5ab31e98d0cb7a340b63a5ba92c38f023a3269d15b73b1d1e0
MD5 8e4e6393504a136d3c9fe3939a2132be
BLAKE2b-256 41b41d2c9199114c57b5688c15d546a9d1c02196eb277d6b48ca8e85e92499e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 592.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.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cc83b8e36ed79c4582fe66e462d1794da257b753660cff4f84b15be2c747354a
MD5 b28899d75f5994f75eea53be042cb6e6
BLAKE2b-256 9fe7d9b32077ee7f2786139e0377f2ea842bab1bd8487a6c5ef3a7a640af5ba7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 581.5 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.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4e37db148d4612508df23ccb0c9710e9e300dd5abc28c207a6b2032a94814d84
MD5 bc47c12c34fb715a0cd73e51eb94ad07
BLAKE2b-256 9d758a7e71d6b450cfce7d9961bcc0f1821e5e4b757fe8b33094d1d2fba7b62f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 592.0 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.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e1350e0d376f0039e47056e09e6ecab98c227d59d251bab3d7c3382473fc4871
MD5 23df0a4d5a256c6f7524474dbd60bf55
BLAKE2b-256 4346e071455708c4a1edb93bfaf12443b9122be0b9d4cf3a8234dc17589b9970

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 581.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.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb478f4c1045e9b807fa68d85f4cc048e20130e14bf8a062dc859db1d84793e4
MD5 330d5c9242eddfec1fa10fffa270b1c6
BLAKE2b-256 a8128f38814bd955c9a25947875f3b063d1d55d92ae3aa96d1bf2b8843945f4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.2.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 168.3 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.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42afea34ab07726b69e49a2b4d03c3024e22729bf9eb8d4c38ad40363096e6a7
MD5 f525bcd96ddf70da6281879c74fa7a4b
BLAKE2b-256 70999370c218aacfb238535744c022a3645ac25942db08191eded8e81039cbb1

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