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/pyversions/clickhouse-driver.svg https://img.shields.io/pypi/l/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, …)

  • 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.1.4.tar.gz (214.7 kB view details)

Uploaded Source

Built Distributions

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

clickhouse_driver-0.1.4-cp38-cp38-win_amd64.whl (173.6 kB view details)

Uploaded CPython 3.8Windows x86-64

clickhouse_driver-0.1.4-cp38-cp38-win32.whl (155.9 kB view details)

Uploaded CPython 3.8Windows x86

clickhouse_driver-0.1.4-cp38-cp38-manylinux2010_x86_64.whl (743.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

clickhouse_driver-0.1.4-cp38-cp38-manylinux2010_i686.whl (722.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

clickhouse_driver-0.1.4-cp38-cp38-manylinux1_x86_64.whl (743.8 kB view details)

Uploaded CPython 3.8

clickhouse_driver-0.1.4-cp38-cp38-manylinux1_i686.whl (722.2 kB view details)

Uploaded CPython 3.8

clickhouse_driver-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl (172.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

clickhouse_driver-0.1.4-cp37-cp37m-win_amd64.whl (170.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

clickhouse_driver-0.1.4-cp37-cp37m-win32.whl (152.7 kB view details)

Uploaded CPython 3.7mWindows x86

clickhouse_driver-0.1.4-cp37-cp37m-manylinux2010_x86_64.whl (630.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.1.4-cp37-cp37m-manylinux2010_i686.whl (608.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.1.4-cp37-cp37m-manylinux1_x86_64.whl (630.8 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.1.4-cp37-cp37m-manylinux1_i686.whl (608.2 kB view details)

Uploaded CPython 3.7m

clickhouse_driver-0.1.4-cp37-cp37m-macosx_10_6_intel.whl (282.6 kB view details)

Uploaded CPython 3.7mmacOS 10.6+ Intel (x86-64, i386)

clickhouse_driver-0.1.4-cp36-cp36m-win_amd64.whl (170.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

clickhouse_driver-0.1.4-cp36-cp36m-win32.whl (152.6 kB view details)

Uploaded CPython 3.6mWindows x86

clickhouse_driver-0.1.4-cp36-cp36m-manylinux2010_x86_64.whl (624.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.1.4-cp36-cp36m-manylinux2010_i686.whl (603.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.1.4-cp36-cp36m-manylinux1_x86_64.whl (624.9 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.1.4-cp36-cp36m-manylinux1_i686.whl (603.5 kB view details)

Uploaded CPython 3.6m

clickhouse_driver-0.1.4-cp36-cp36m-macosx_10_6_intel.whl (290.6 kB view details)

Uploaded CPython 3.6mmacOS 10.6+ Intel (x86-64, i386)

clickhouse_driver-0.1.4-cp35-cp35m-win_amd64.whl (167.1 kB view details)

Uploaded CPython 3.5mWindows x86-64

clickhouse_driver-0.1.4-cp35-cp35m-win32.whl (149.8 kB view details)

Uploaded CPython 3.5mWindows x86

clickhouse_driver-0.1.4-cp35-cp35m-manylinux2010_x86_64.whl (616.6 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.1.4-cp35-cp35m-manylinux2010_i686.whl (592.7 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.1.4-cp35-cp35m-manylinux1_x86_64.whl (616.6 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.1.4-cp35-cp35m-manylinux1_i686.whl (592.7 kB view details)

Uploaded CPython 3.5m

clickhouse_driver-0.1.4-cp35-cp35m-macosx_10_6_intel.whl (276.7 kB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

clickhouse_driver-0.1.4-cp27-cp27mu-manylinux2010_x86_64.whl (559.5 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.1.4-cp27-cp27mu-manylinux2010_i686.whl (534.4 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

clickhouse_driver-0.1.4-cp27-cp27mu-manylinux1_x86_64.whl (559.5 kB view details)

Uploaded CPython 2.7mu

clickhouse_driver-0.1.4-cp27-cp27mu-manylinux1_i686.whl (534.4 kB view details)

Uploaded CPython 2.7mu

clickhouse_driver-0.1.4-cp27-cp27m-manylinux2010_x86_64.whl (559.5 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

clickhouse_driver-0.1.4-cp27-cp27m-manylinux2010_i686.whl (534.4 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

clickhouse_driver-0.1.4-cp27-cp27m-manylinux1_x86_64.whl (559.5 kB view details)

Uploaded CPython 2.7m

clickhouse_driver-0.1.4-cp27-cp27m-manylinux1_i686.whl (534.4 kB view details)

Uploaded CPython 2.7m

clickhouse_driver-0.1.4-cp27-cp27m-macosx_10_6_intel.whl (271.5 kB view details)

Uploaded CPython 2.7mmacOS 10.6+ Intel (x86-64, i386)

File details

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

File metadata

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

File hashes

Hashes for clickhouse-driver-0.1.4.tar.gz
Algorithm Hash digest
SHA256 9613754de5d2cdba270ad31f53161775594df20d8da7608d8158f2cc63aab850
MD5 9f41375a722f3c47e225ea102072879d
BLAKE2b-256 0567be6217e35439ea1cc47d080ef32f17adf82b89dfb2237988568170dac51e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 173.6 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.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 088902705bd7b9c8d078a34a9347d010e6b072d2a8fb14e3de1165f1d6975023
MD5 705b68940963bd2da4847756bf58ba37
BLAKE2b-256 29e5aff647ab5f7ef66f550d00c9cb4c29d6adcaa2a23de3e35acd687441e91f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 155.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.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 650421deceaca66fe085a081818b16b68cf1e00e3c95e9a0b1670044ef074017
MD5 c52f80645d9248e429f237eaf6e5112c
BLAKE2b-256 b2b05b1f02cb9f6f5a4bcfbd1d8c6de58fc7e1e80f04be5368f159f4fbcff31f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 743.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.1.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d8d718f4163419d386a8030ba074140bf7da92b564b710b836413559d5fd03de
MD5 80f268874f6e17ca32245941f32c4190
BLAKE2b-256 cfb7e9729a4935e0c40a85568dc36679336d01098ee17d9646fbad9261fff38a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 722.2 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.1.4-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3e01c90eb91581fa384b7609d84d38dd84399eb7cf34f9282d1c6c386598702d
MD5 fadef8969110daba57731072e986e525
BLAKE2b-256 20f4aedebedf29ea4cd840f7b3dcaaa00e3d1b95e452e1efc8b9ffe9ab107418

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 743.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.1.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3700da4c8a69aa66ec4d167612dd5467baf619c5a20a642c2aadfd9efab4df61
MD5 104765a6a7fe1542c78786dccc1297e1
BLAKE2b-256 44ba8ba757a85d187c2cc8b8b2ba12ea0d0823853ecb2b2d5a37be1a66e0f710

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for clickhouse_driver-0.1.4-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6025d59110a4a188e2e294de2ba4fccf17689e8c7c8ff197066ea1ecb3b5616c
MD5 3d4fb9ac9b46e675cdb4b8e6fe975ebb
BLAKE2b-256 3c9e25b1815b141b7d95ca99a3fc06988b9f3bb367bed1b45557c8cc191705c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 172.4 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.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f33e8761568634ae3179f5b73e225826ab4dbeae882b63ccd8c5228fc3c85cdb
MD5 4bf3b02b7cb5360cd12635b16c8b5cd6
BLAKE2b-256 66a86c23ed8b619e6ace3e807781ebbb1444bf0757814fc6ae1deaca299cb025

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 170.4 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.1.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 428256ade8dd6afe3e008551191c9de81ca6eb22e525e8d0a65e8c7872407160
MD5 9caf1a31e852dcbae340bd96044ee21a
BLAKE2b-256 ae9fea259ccdd0ba52009914b4c1842e5169602da55c98ed5c418fdc5a8618c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 152.7 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.1.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c61b7a1f2b295b2b594a4a4f86001553869b5d34d341fbbcc164db443392dc68
MD5 937dbb6ebbeddbeccab2e8ca5ed1890a
BLAKE2b-256 4b727be2e7617e401d4907d1d87039daab790b5e9a0794311f48387ab52a0d45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 630.8 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.1.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 583c251d81e44814171cd436facda3d40f8d68e8e905ac77247b7a37104fa692
MD5 fadc6a66c3fa2a1126848dc4dfffe107
BLAKE2b-256 11e316a7bdee785ed91c97d3de1fc5af850ebb51e01bfa159bd1fd7cafacc87c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 608.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.1.4-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1cc6278d7db8a65df027bf42392d111e32fefe4ca4c79fabaa0f51fe7789abfb
MD5 bd22b859eec6f5095e51eea3b2a3830d
BLAKE2b-256 8b4ae5593287c406828b2b8a0b0f7da20385f3f3ecc4e489a468d1560b5bd5ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 630.8 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.1.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 73c0db16fcdfd1d725b328d79f475728f20db1fda6c90f476b2d7d28485dbaeb
MD5 dd010232f75b6a498e16197e01903cd0
BLAKE2b-256 08f2aa02b2213c560b924f6fcd40903058b7e17c76e9a1f933bcfd7daa696298

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 608.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.1.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6225f42a6e83922b53c9495a3506d6e2c8cee552886ad1b1a0e92666db181082
MD5 5db50664add78cc5dd48369e3367c967
BLAKE2b-256 55f55da3bcc6dcea435ca255dd4d19c58e7960151c0af54b015cc167d192f591

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.1.4-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 282.6 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • 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.1.4-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 01868c35c9511c29b6ab73d9e507c3bc3e408e32a69dbd90ec81172b81e1ca6c
MD5 6389717fc450e9d9f220014184f24186
BLAKE2b-256 ac5747e31a1de705f649d33a604cae46101faaefed0684ea539ce8c177761bd2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for clickhouse_driver-0.1.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c218934d3ca797f4ff8de71739ce86f00bf5e5ed9fb98084ef382aa13c28dbc1
MD5 1d11455e64dee7c1b6d75ea6b678a7a1
BLAKE2b-256 564651d251e7c1468fce4ba709fcca9b7a683e45aa5f3f6cc2d48445dad19fa7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 152.6 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.1.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4d23f81db3b994327f6525f6d7cb62ab5adb77123fbb766f3277c7e80f423769
MD5 9e517aeee0a753d62e58d82fb9c51c33
BLAKE2b-256 18afc196b7b33b7a03c001f4ad3d2be2d9b937dbba426cd2d7a681f902f7d921

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 624.9 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.1.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 881596416047dd0aa62c431ea00d40abc42009ad4ebd6e3271c504739e39dfac
MD5 5af38bf545a59c78d6a5bffdd2a77d4d
BLAKE2b-256 7f2723ad8ac0677ec7e78ab2528cc9917cba64c5adb215d2abf5a5a4e989de36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 603.5 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.1.4-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 764f066450b080d60160779d6b8b15a79c891aeebb02eef38fde6037d7a27e9c
MD5 188ebdcd64602140495352e311db2f29
BLAKE2b-256 b5423b8f992f0267e26c3f4322670b800d6432dcc1e28b6172fb86a1302a8704

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 624.9 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.1.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 34540f2a32a60cdd823b696db1ae3a919401b39bccd67d37f53a92b1ce1d630b
MD5 bf640da4f1370c4d8ec16dbce2b21f83
BLAKE2b-256 56bacf0e3e085c0af9fbbbf8ed8732ae1f4f3399fb64b791b3d60fe00dac7a5b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for clickhouse_driver-0.1.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 52066738fd643b9e8e9b33040a57eebd80d49a5355293f99e1cf1b3da63cc7dc
MD5 da03864b98ea24acc7e7722282770a01
BLAKE2b-256 dc90a985f980563e92b6a214a607b4699cf03a7329ee838f12ebf61c12a49b99

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.1.4-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 290.6 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • 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.1.4-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 28aae438c2a89d267595cf83c5236ba1666bb8fabd39310cf1b6b0b2060ee1ec
MD5 5f1bde69c1e9e7d4d0389831b45805ff
BLAKE2b-256 b1e3ffce980296a82d6bfc4e4c4bcf722307d19a2b881f6ba3769cf2df3baf55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 167.1 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.1.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d4ebc25b07ad48ea67b8cfb6a59fbf90967843120da19c89d03206536c367232
MD5 042effb1b5cca0cf030efb21bf49daf1
BLAKE2b-256 1fa44971da98d11b1e8b0e5b7e76d5856c1cec91874f944b3ba89e4eaf8a15c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 149.8 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.1.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a6cafb23c494520859bdf39a78e2f8423711f5d9687a74a07755dc675074d8ab
MD5 e716bb508b46d8bdd07c7d16f5565a86
BLAKE2b-256 b37301ba6b11594e3aebfbac113b568656c86c099ecd402a52fcd5f0268f0a19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 616.6 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.1.4-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 690488967d0f845ddb4b54cc271bbc339c79ea76130b11257fcb940cf3970b2a
MD5 4442ab9d89e6d870bd86b805f35207a2
BLAKE2b-256 49581a9184dad1a3a03496966f9df6385900a14e2ed3899e60754a6d754403db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 592.7 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.1.4-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 35deb38fe871d4dfdf93414600477a5ce4ba87bcc454f0016fbccf665aeacaed
MD5 0426d5a6cb8fc0aabf4ac5c63fcfe1c0
BLAKE2b-256 764fe5cfcd3ed3c78233425383a9b0f22c80107e5f261b39a6b9c14f59722aec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 616.6 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.1.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 65dcce8cc58dc62219939d0b0f736d1021a55ba828bf121a2de8dafe01935a3d
MD5 4359ec2be3916d678d8f88dc8e3960f5
BLAKE2b-256 38d9303508037be1b7c66563a30c0e6627dba91ccf27f3580371ca5ad538327a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 592.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.1.4-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7376daa27fcf6d27cbe9e0656deac096a1e2dc1b86aaef2c932be7f7fb522606
MD5 75888c712589adcb10f19cf993e80e5e
BLAKE2b-256 237ba6ae48aef886db93a3c7e27fd42d1fdc434149a871d04c2dd3090adaf71a

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.1.4-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 276.7 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • 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.1.4-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 22a8412ada7f0df4385bfbc210a90df24a7d750f80c0f7b105bfd7b0e8599dfd
MD5 085e8b17fd7328549f59f17401cb3c9f
BLAKE2b-256 6af4d67e1657c9429d838a9346dd4da38641957d03c86dd318b508e42d6184b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 559.5 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.1.4-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8c03f47f89703485741c3ceaaf8b6f439716bb6db3612774e54332a4ef47f66f
MD5 4035c76526cfcf0731c651a3a8d5bde1
BLAKE2b-256 40cf9f060de74e81575197671afefd2807f8328842ef037a6af3dc7801d14369

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 534.4 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.1.4-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4f88b16832a64180f179c2a08d404c64beadb043137ee479c37633e9c9485447
MD5 1fd32cf8ebdd82498502bc57b3e41c77
BLAKE2b-256 8da6a4df25253f8d24fd74e9b8ce9de7f15bc9e59db0eda075abd2402e74d1b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 559.5 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.1.4-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8bc1076a9a1c843ed51636b8b257894a335035ada83477aa2adbab16cb9d6e85
MD5 1131f0aef73c48dc04ba2fa11853a9fc
BLAKE2b-256 eaa9270ecc690aa0221487c168246e83c562d20a89e6c8faac028a5a5fd8b2d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 534.4 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.1.4-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5f20c6d4b53898f89462714376dcff3cdfbedbe707822a4f5bccf274d523dfe
MD5 b11c09027d2fb4ecfcf45fa9b930190a
BLAKE2b-256 dbb8344d3dfd6f132e83e28dcda1b2d4041088c24457916182a507ec354b3cba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 559.5 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.1.4-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3f9d7b2d9c8de119a0db79a76dde4c722c585848c38d5d5ef5171bdd1683f260
MD5 210d1db9e86b3c2660520d663abb7345
BLAKE2b-256 7956a826c3d5aaa188e5de312632955df540e2ae55b9a068a76a262ab759370f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 534.4 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.1.4-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 15977b2ab53c59409421a70b42925484551f9f96438684dca5ae16c97d071951
MD5 4846953235bf639c14febf278d3d6f3c
BLAKE2b-256 d0af4823757b5c5840171da2c3701ba48b563c790ac9da9070d892ccefed84f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 559.5 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.1.4-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef91dbc2da3b2c6aa258e33a4c35a32322e333757a6367498bd7d4a220721673
MD5 8e2ea9278e67c71a6cf7cc3a05f08f93
BLAKE2b-256 a5281d58d086609eb3112edbb2d3fa6193308ff88c044c6b8530d8192338748e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 534.4 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.1.4-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 043b489d4b06a900a20d01c854a9d00874b856c15e49457d10446c8de68a6196
MD5 a9b0e3eb751234d8a6febb6628c8a81d
BLAKE2b-256 43a9a888c06b7f2647953a7e7b54aa91cb25a1d0bd943b1dfffd2021bd96acce

See more details on using hashes here.

File details

Details for the file clickhouse_driver-0.1.4-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: clickhouse_driver-0.1.4-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 271.5 kB
  • Tags: CPython 2.7m, macOS 10.6+ Intel (x86-64, i386)
  • 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.1.4-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 88d67a360a22a55dda23a60381325293a87cd312455cadeef7183841bc74a31b
MD5 ee277e162bc69dc4987446d4415c767f
BLAKE2b-256 b95d51a8312587a597b32738cbbe37da74fa5fb380e2c7aa5603f6a56eabc1c1

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