Skip to main content

ClickHouse core driver, SqlAlchemy, and Superset libraries

Project description

ClickHouse Connect

A suite of Python packages for connecting Python to ClickHouse, initially supporting Apache Superset using a minimal read only SQLAlchemy dialect. Uses the ClickHouse HTTP interface.

Installation

pip install clickhouse-connect

ClickHouse Connect requires Python 3.7 or higher. The cython package must be installed prior to installing clickhouse_connect to build and install the optional Cython/C extensions used for improving read and write performance using the ClickHouse Native format. After installing cython if desired, clone this repository and run python setup.py installfrom the project directory.

Getting Started

Basic query:

import clickhouse_connect
client = clickhouse_connect.get_client(host='play.clickhouse.com', port=443, username='play')
query_result = client.query('SELECT * FROM system.tables')
print (query_result.result_set) 

Simple 'command' that does not return a result set.

import clickhouse_connect
client = clickhouse_connect.get_client()
client.command ('CREATE TABLE test_table (key UInt16, value String) ENGINE Memory')

Bulk insert of a matrix of rows and columns.

data = [[100, 'value1'], [200, 'value2']]
client.insert('test_table', data)
print(client.query('SELECT * FROM test_table').result_set)
->  [(100, 'value1'), (200, 'value2')]

Minimal SQLAlchemy Support

On installation ClickHouse Connect registers the clickhousedb SQLAlchemy Dialect entry point. This dialect supports basic table reflection for table columns and datatypes, and command and query execution using DB API 2.0 cursors. Most ClickHouse datatypes have full query/cursor support.

ClickHouse Connect does not yet implement the full SQLAlchemy API for DDL (Data Definition Language) or ORM (Object Relational Mapping). These features are in development.

Superset Support

On installation ClickHouse Connect registers the clickhousedb Superset Database Engine Spec entry point. Using the clickhousedb SQLAlchemy dialect, the engine spec supports complete data exploration and Superset SQL Lab functionality with all standard ClickHouse data types. See Connecting Superset for complete instructions.

ClickHouse Enum, UUID, and IP Address datatypes are treated as strings. For compatibility with Superset Pandas dataframes, unsigned UInt64 data types are interpreted as signed Int64 values. ClickHouse CSV Upload via SuperSet is not yet implemented.

Optional Features

SQLAlchemy and Superset require the corresponding SQLAlchemy and Apache Superset packages to be included in your Python installation. ClickHouse connect also includes C/Cython extensions for improved performance reading String and FixedString datatypes. These extensions will be installed automatically by setup.py if a C compiler is available.

Query results can be returned as either a numpy array or a pandas DataFrame if the numpy and pandas libraries are available. Use the client methods query_np and query_df respectively.

Tests

The tests directory contains a standard pytest test suite. Integration tests require docker to be installed and run against the current clickhouse/clickhouse-server image. The test suite includes "fuzz" testing for reading/writing all supported datatypes with randomly generated data. To run the full test suite all libraries supporting optional features (Superset and SQLAlchemy) should be available. To install the C/Cython libaries required for testing in the project, run python setup.py build_ext --inplace.

Main Client Interface

Interaction with the ClickHouse server is done through a clickhouse_connect Client instance. At this point only an HTTP(s) based Client is supported.

HTTP Client constructor/initialization parameters

Create a ClickHouse client using the clickhouse_connect.driver.create_client(...) function or clickhouse_connect.get_client(...) wrapper. All parameters are optional:

  • interface:str https or http
    Defaults to https if a recognized secure port (443 or 8443), otherwise http
  • host:str ClickHouse server hostname or ip address
    Defaults to localhost
  • port:int ClickHouse server port number
    Defaults to 8123 or 8443 (if the interface is https)
  • username:str ClickHouse user
  • password:str ClickHouse password
  • database:str Default database to use for the client.
    Defaults to the default database for the ClickHouse user
  • compress:bool Accept compressed data from the ClickHouse server.
    Defaults to True
  • format:str native (ClickHouse Native) or rb (ClickHouse Row Binary)
    Native format is preferred for performance reasons
  • query_limit:int LIMIT value added to all queries.
    Defaults to 5,000 rows. Setting query_limit=0 will return unlimited results, at the risk of running out of memory
  • connect_timeout:int HTTP connection timeout in seconds. Default 10 seconds.
  • send_receive_timeout:int HTTP read timeout in seconds. Default 300 seconds.
  • client_name:str HTTP User-Agent header. Defaults to clickhouse-connect
  • verify:bool For HTTPS connections, validate the ClickHouse server TLS certificate, including matching hostname, expiration, and signed by a trusted Certificate Authority. Defaults to True.
  • ca_cert:str File path to private/Self-Signed Certificate Authority TLS certificate to validate ClickHouse server
  • client_cert:str File path to Client Certificate for mutual TLS authentication (including any intermediate certificates)
  • client_cert_key:str File path to Client Certificate private key for mutual TLS authentication. This parameter is not required if the client_cert is a .pem file containing both the certificate(s) and private key

Any remaining keyword parameters are interpreted as 'setting' parameters to send to the ClickHouse server with every query/request

Querying data

Use the client query method to retrieve a QueryResult from ClickHouse. Parameters:

  • query:str Required. ClickHouse query statement (either SELECT, DESCRIBE, or other system commands that result a result set.)
  • parameters:Dict[str, Any] Optional. Dictionary of str keys with values of any Python scalar datatype. These values will be replaced in the query string using Python %s type formatting
  • settings:Dict[str, str] Optional. Dictionary of str keys and str values for ClickHouse query settings
  • use_none:bool Optional, defaults to true. Use the Python None type for ClickHouse NULLS. Otherwise the QueryResult will include 0/empty values for ClickHouse nulls. This is useful for populating Numpy arrays or Pandas dataframes, which do not accept nulls

The query method results a QueryResult object with the following fields:

  • result_set:Sequence[Sequence] A sequence of rows of column values containing the Python native data types from the query.
  • column_names:list A list of column names for the rows in the result_set
  • column_types:list A list of ClickHouseType objects for each column
  • query_id:str The ClickHouse query id. Note that this can be specified for ClickHouse by using the settings parameter, e.g. client.query('SELECT * FROM system.tables', settings={'query_id': 'test_query_id'}) Otherwise ClickHouse will assign a random UUID as the query id.
  • summary:Dict[str, Any] The final contents of the X-ClickHouse-Summary header. Note that this is empty unless the setting send_progress_in_http_headers is enabled.

Numpy and Pandas queries

If Numpy is installed, the driver can return a complete Numpy array by using the client query_np method instead of query. The parameters for query and query_np are the same, except query_np does not need or accept the use_none argument as Numpy arrays do not support Python None.

If Pandas is installed as well as Numpy, a populated pandas DataFrame will be returned by the client query_df method instead of query. The three parameters (query, parameters, and settings) are identical to the parameters for query_np.

Datatype options for queries

There are some convenience methods in the clickhouse_connect.driver package that control the format of some ClickHouse datatypes. These are included in part to improve Superset compatibility.

  • fixed_string_format Format for FixedString datatypes. Options are bytes and string, defaults to Python byte objects. Set to string when the SuperSet packages are initialized for datasets that used FixedString objects as actual strings.
  • big_int_format Format for U/Int128 and U/Int256 datatypes. Options are int and string, defaults to int datatypes. Set to string when SupersetSet packages are initialized because SuperSet dataframes do not handle Python integers larger than 64 bits.
  • uint64_format Format for UInt64 ClickHouse types. Options are signed and unsigned, defaults to _unsigned. Set to signed when SuperSet packages are initialized because SuperSet dataframes do not handle unsigned 64 bit integers.
  • uuid_format Format for UUID ClickHouse types. Options are uuid and string, defaults to Python UUID datatypes. Set to string when SuperSet packages are initialized because SuperSet dataframes do not provide special handling for UUID types
  • ip_format Format for IPv4/IPv6 ClickHouse types. Options are ip and string, default to Python IP4Address/ IPv6Address types. Set to string for compatibility with SuperSet dataframes

Inserting data

Use the client insert method to insert data into a ClickHouse table. Parameters:

  • table:str Required. ClickHouse table name to insert data into. This can be either the full database.table or just the table name. In the latter case the database is determined by either the database parameter or the default database for the client/connection
  • data:Iterable:[Iterable[Any]] Required. The matrix of rows and columns of native Python datatypes to insert.
  • column_names:Union[str, Iterable[str]] Required. Either a single column name or list of columns. If *, the driver will retrieve the list of columns from the ClickHouse Server in position order, which is fragile and not recommended. Column names should be in the same order as columns in the data collection.
  • column_types:[Iterable[ClickHouseType]] Optional. List of driver ClickHouseType objects that match the column_names parameter. If not specified (and column_type_names is not specified), column types will be retrieved from the ClickHouse server using the DESCRIBE TABLE.
  • column_type_names:[Iterable[str]] Optional. List of column type names as required/returned by the ClickHouse server. These can be used to populate the column_types parameter without calling the ClickHouse Server.
  • column_oriented:bool Default False. If True the data parameter is processed as a sequence of equal length columns, instead of a list of rows. This eliminates the need to "pivot" the matrix when using the Native data format.
  • settings:Dict[str, str] Optional. Dictionary of ClickHouse settings to be applied to the insert query.

Notes on data inserts

The client insert_df can be used to insert a Pandas DataFrame, assuming the column names in the DataFrame match the ClickHouse table column names. Note that a Numpy array can be passed directly as the data parameter to the primary insert method so there is no separate insert_np method.

For column types that can be different native Python types (for example, UUIDs or IP Addresses), the driver will assume that the data type for the whole column matches the first non "None" value in the column and process insert data accordingly. So if the first data value for insert into a ClickHouse UUID column is a string, the driver will assume all data values in that insert column are strings.

DDL and other "simple" SQL statements

The client command method can be used for ClickHouse commands/queries that return a single result or row of results values. In this case the result is returned as a single row TabSeparated values and are cast to a single string, int, or list of string values. The command method parameters are:

  • cmd:str Required. ClickHouse SQL command/query.
  • parameters:Dict[str, Any] Optional. Dictionary of str keys with values of any Python scalar datatype. These values will be replaced in the query string using Python %s type formatting
  • use_database:bool Optional, defaults to True. Use the client default database (as set when the client is created or the user's default database) when sending the query. This is set to False in order to determine the users default database on connection.
  • settings:Dict[str, Any] Optional. Dictionary of ClickHouse settings to be applied to the insert query.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

clickhouse-connect-0.2.8.tar.gz (91.5 kB view details)

Uploaded Source

Built Distributions

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

clickhouse_connect-0.2.8-pp39-pypy39_pp73-win_amd64.whl (90.2 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-0.2.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (92.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.2.8-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (92.8 kB view details)

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

clickhouse_connect-0.2.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (93.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

clickhouse_connect-0.2.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (87.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_connect-0.2.8-pp38-pypy38_pp73-win_amd64.whl (90.4 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-0.2.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (92.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.2.8-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (92.8 kB view details)

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

clickhouse_connect-0.2.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (93.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

clickhouse_connect-0.2.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (87.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_connect-0.2.8-pp37-pypy37_pp73-win_amd64.whl (90.4 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-0.2.8-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (92.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.2.8-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (92.8 kB view details)

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

clickhouse_connect-0.2.8-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (93.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

clickhouse_connect-0.2.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (87.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_connect-0.2.8-cp311-cp311-win_amd64.whl (92.1 kB view details)

Uploaded CPython 3.11Windows x86-64

clickhouse_connect-0.2.8-cp311-cp311-win32.whl (90.2 kB view details)

Uploaded CPython 3.11Windows x86

clickhouse_connect-0.2.8-cp311-cp311-musllinux_1_1_x86_64.whl (187.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

clickhouse_connect-0.2.8-cp311-cp311-musllinux_1_1_i686.whl (184.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

clickhouse_connect-0.2.8-cp311-cp311-musllinux_1_1_aarch64.whl (183.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

clickhouse_connect-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (183.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.2.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (184.3 kB view details)

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

clickhouse_connect-0.2.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (180.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

clickhouse_connect-0.2.8-cp311-cp311-macosx_11_0_arm64.whl (90.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

clickhouse_connect-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl (91.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

clickhouse_connect-0.2.8-cp310-cp310-win_amd64.whl (92.5 kB view details)

Uploaded CPython 3.10Windows x86-64

clickhouse_connect-0.2.8-cp310-cp310-win32.whl (90.8 kB view details)

Uploaded CPython 3.10Windows x86

clickhouse_connect-0.2.8-cp310-cp310-musllinux_1_1_x86_64.whl (193.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

clickhouse_connect-0.2.8-cp310-cp310-musllinux_1_1_i686.whl (195.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

clickhouse_connect-0.2.8-cp310-cp310-musllinux_1_1_aarch64.whl (192.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

clickhouse_connect-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (187.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.2.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (189.2 kB view details)

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

clickhouse_connect-0.2.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (192.2 kB view details)

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

clickhouse_connect-0.2.8-cp310-cp310-macosx_11_0_arm64.whl (91.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

clickhouse_connect-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl (91.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

clickhouse_connect-0.2.8-cp39-cp39-win_amd64.whl (93.1 kB view details)

Uploaded CPython 3.9Windows x86-64

clickhouse_connect-0.2.8-cp39-cp39-win32.whl (91.2 kB view details)

Uploaded CPython 3.9Windows x86

clickhouse_connect-0.2.8-cp39-cp39-musllinux_1_1_x86_64.whl (198.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

clickhouse_connect-0.2.8-cp39-cp39-musllinux_1_1_i686.whl (198.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

clickhouse_connect-0.2.8-cp39-cp39-musllinux_1_1_aarch64.whl (198.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

clickhouse_connect-0.2.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (192.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.2.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.0 kB view details)

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

clickhouse_connect-0.2.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (196.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

clickhouse_connect-0.2.8-cp39-cp39-macosx_11_0_arm64.whl (91.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

clickhouse_connect-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl (92.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

clickhouse_connect-0.2.8-cp38-cp38-win_amd64.whl (93.2 kB view details)

Uploaded CPython 3.8Windows x86-64

clickhouse_connect-0.2.8-cp38-cp38-win32.whl (91.2 kB view details)

Uploaded CPython 3.8Windows x86

clickhouse_connect-0.2.8-cp38-cp38-musllinux_1_1_x86_64.whl (197.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

clickhouse_connect-0.2.8-cp38-cp38-musllinux_1_1_i686.whl (198.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

clickhouse_connect-0.2.8-cp38-cp38-musllinux_1_1_aarch64.whl (194.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

clickhouse_connect-0.2.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (193.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.2.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (195.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

clickhouse_connect-0.2.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (199.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

clickhouse_connect-0.2.8-cp38-cp38-macosx_11_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

clickhouse_connect-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl (92.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

clickhouse_connect-0.2.8-cp37-cp37m-win_amd64.whl (93.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

clickhouse_connect-0.2.8-cp37-cp37m-win32.whl (91.1 kB view details)

Uploaded CPython 3.7mWindows x86

clickhouse_connect-0.2.8-cp37-cp37m-musllinux_1_1_x86_64.whl (186.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

clickhouse_connect-0.2.8-cp37-cp37m-musllinux_1_1_i686.whl (189.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

clickhouse_connect-0.2.8-cp37-cp37m-musllinux_1_1_aarch64.whl (183.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

clickhouse_connect-0.2.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.2.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (183.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

clickhouse_connect-0.2.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (186.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

clickhouse_connect-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl (92.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file clickhouse-connect-0.2.8.tar.gz.

File metadata

  • Download URL: clickhouse-connect-0.2.8.tar.gz
  • Upload date:
  • Size: 91.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for clickhouse-connect-0.2.8.tar.gz
Algorithm Hash digest
SHA256 5ff5f7c432890491cd70ef930380390cb8d2c9aee2a3237479d30e168db70edc
MD5 a56880bec4f0d39b6870b6dac769fa35
BLAKE2b-256 b355339bc5c8f55e701a198fc5a0b007f659f50dd27cce7473fa2f4452dfab4f

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cc3ba73b6a438dd05ca5d589d565fcf00a1a0e402d889a7242b5fa5ada8ce939
MD5 c882f9d6a0581398b39d0e5ce25b0ed1
BLAKE2b-256 0d94cb43e2a29baa48d25eec2436fe2b300761a4d057357812e4d716d057f671

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a4a22928e5346979158c69164f93fd8ecfcc0dd224c1c07e63929e837f90f4d
MD5 05b7781121c1fc898589c8ee27b05f29
BLAKE2b-256 3a5a1a7855c0025d12773bd4a7937111efe6f588520091135af3acace5db40dc

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efb22376f15f7dad4ed4461540ed74b72602cbda5ad5c986459dfa70d6f204a8
MD5 f184b12944c4e7912648bb4c0c510a3e
BLAKE2b-256 a3ad8bb13e34033953d1cdc5160abd5f068b353348c955cfb44a5f754b40ed0d

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d497bf76128bf11fe72edcae108a6ea696fd588667ec4819c04012c7c0bfab07
MD5 00fce6c6d0c0332e30506096f1b7b6d1
BLAKE2b-256 6208f5981d0373452f0881c648079f6787bb5e673ecb32ea9e0cab81c2e33eaf

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 397946b1c3dba66e01a4e633d5da382d38597a9eb00cb78c1d3965c25e9a2aca
MD5 2d2e356293436fd210cbaca79b1cb7ee
BLAKE2b-256 36a1cbfa1adcd4ab1aeb80924a02d4734645628afbec6fb9a84ce1a7d9363b7c

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 304804a68c94fc96f20897ff87a275fd4ad34d07c4ef713277e2b464f6b4629b
MD5 c87b5d27dc47efb9620ea4fc3b3f1b90
BLAKE2b-256 4227f777b9b60c066afbcaea173e3fd51d4870fe518154ef69662ad6d1c5b803

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e2eb95f98d2deb2f9bfb5197664acfb04943725a74e8a0deb765c2b78eaa85b
MD5 dbb3341efd61c8c1e6b8cb1c7fefe771
BLAKE2b-256 2b9e47e9731d5d73dba872d9bb942bb3884bf17eabe5c8a18e79cb1d9c61a202

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29f06ddd419cf29e65eea876867610704ceda81baa268bbf0ea93d34cdef7998
MD5 31debe77e959c92f8a46ef114e77e144
BLAKE2b-256 4bd230820979909622e786969c0d9a997359cc883c04ce1163b28844c3f24dc9

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8db203852ff885c23a1ee649694adb4539886f93ccc7cd489199ed1cc83c1715
MD5 60584ee18e49da7b16b2a18d299a66b1
BLAKE2b-256 750f9158dbaae2e58cb2594b086ce8e33d8faf038a15d716a4c972bb0ce5e3da

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 960403cdb56b1d4c95065d1c8665b21931c6550f0405193e4d8b87dc8937016f
MD5 5919f313e81db18048a8825539c72f9e
BLAKE2b-256 5ca0857c531c40c28506558dc2b453342e6a98a10c72d9aa5053136fa28ba482

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ea9625286de997fdba04fdf07f512efa097c940817e014cb75faae11828f392b
MD5 e4076f2b79826e50589ad04b35888763
BLAKE2b-256 01ebe0b0ae6c26418f4b6fc9a34121d72071e9c3530a4f5ba00e3681d9ef7cac

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3299842750d89710697b66dc6a0feacfdd2237079e9f12da643a36508a9f3901
MD5 06fce31a94616e8623cb36c8f436b117
BLAKE2b-256 ad37197cfa963057447cc83bee1ee7df9beef82c64c746adc974c56198aefcc0

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f57681436d6afbbbb8198d3d0cb8ce16d1e8873a51aeeff96ac151e336090ae
MD5 2529b3aec1ed040aa4eda90bd3e8cab7
BLAKE2b-256 1fd7dd804beffb7105f8183d14318fca97b7487fe536d8f9f5e0e946ec3dacc3

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1617ff60fe36cce2861ad92a20302a6f5c3c4f56ab0b05f79b6f175340da4101
MD5 283c8bea3c2a36db06f69cbef83e8ac0
BLAKE2b-256 d1e0b624a7871908a160fc30d44065ebf0bbba31336576a7664b6ac046c41f69

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 adf8f63b0eec93003bb8a56a38f864347d538b98ae74fce648eb79aac6baba08
MD5 ecd72b0c49519eb79753319c65378650
BLAKE2b-256 0761cd969617f059551d90f1094b1e7358853732da2c304a4c984681acbd089b

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 07b189da472f2968048db3280960abef06bcae79c1180e998457ea10046d7af8
MD5 2bfee8b1c74f91a4b074755972a61c14
BLAKE2b-256 bd3a63138659b761e9d90101f7a3a8045062e3c3152b0a55f41dfa54a5f93a53

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 54ca7cd63c02c66f6ab48be294311a2fba739063bf62ae0a60b0916743b465a7
MD5 9ed0c5c8f78a9f7889d34b2100d28443
BLAKE2b-256 d221f31674033f6d2a3ffee6a1f4350bb1267942dcc3b9146035e779c205d863

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3d99a3678c35878ab83e1a9512311cc652dfc9e6ce6f62912c571ca6b9f88d3e
MD5 44fea2d1ccdf80aa01437b095d7aa7ae
BLAKE2b-256 8bf5f9c749d71414da44fd6707c9d4e630d01df9502e50d13f0a20bca37a4787

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7b013cc9cec048ae7fdb985815e73da8ccc4645c342dec6f42dd461b84e40de9
MD5 9f19f16c452381ae34900818a364241f
BLAKE2b-256 6d37930925906c9fb58be5f6faec07eaefa98df3ad1f4f32e0bcc29d74325e60

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a75c573f904cc2cb3f1afd61c96334a92722338e1dd90316f0d64279b950d254
MD5 b39b267d5316a38fab9e365d4ef765a6
BLAKE2b-256 d29df9a6ce06b3ff9bb6544dcacb35c5a785808176775c142a776f2117f7a728

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abade30c7efe3022de0963ded224b69b3c244f634c3f38b1f8c2e2b3c43751d5
MD5 4e5bb8cba7a60679114de5c4149ce44e
BLAKE2b-256 7a4ff635bc81c11efe9506e5a3d388232c5cb607e9a3bc064b5c13203cf738df

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 905b4981ff14db2a1ea39e42b6e30fecc73951ebfcf2fecc8c85fb43eb71f63b
MD5 b8293b0fa81e3f64fe08edbcc19c8029
BLAKE2b-256 65f1038b6a4d3b35a0f1b104424d517f8ed6c560bb854da63845f6e20b2ee180

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eba54e32d49ae8dffa72bcbf8ae433319d5ea89d67cb1b6b4cefd9fb86a32523
MD5 174f2da4bd77d024bd7594df368357ee
BLAKE2b-256 2f88cd7cf049db38c5de1d3988ab8284e46cc3b253e88e2d302624bbc7e52a56

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 909864835472991dab8469065cab669e2b02f27a660ab3350279327eb7769345
MD5 42753cd5ccbe11ec5081942295ce0e78
BLAKE2b-256 5f65332a4a62cf7a38082c857d8ccb39e5ccb405903517a9eb9b845bea3f5a88

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49ad5a698c2e2af6f5ada63d9dcf7ee1d0eaeb19e24f07ffb866287c6b5fe89b
MD5 f443401a2e0ca1507ad9fd8b6fb0dad9
BLAKE2b-256 a206ee4b33ab1aa9906db5891404cd8c1ce932d946589c9e3563d15402365e76

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e68884408520356a8c5fb2b0db08638cf42a98591d5178634d9cecd1e5b281e
MD5 6e02bc2550708d4a7ab7e1b17db2737d
BLAKE2b-256 59da5c18240da5e7a56ee37c666b00d1a9a41eb16aefda72799b6ab78a7810f8

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d377b36fb03420c5c7e8c8e988b25270ceda03a2423b60d93db2dc7adf6d780a
MD5 fadb40dcbe087ea6db4ae3fcf9f550d7
BLAKE2b-256 cecf4e368d97d834aa8432e1aec12069de8bb0265e7559fe6706af0973776ad9

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d1c4c787a64994fd855c88b6d91892fb82d662075fa49ad2c94303243691cf5
MD5 ee9ef940d14bb9a959b13b28fe331043
BLAKE2b-256 e64b5905c608941cb94e24543405bb85da87089b46d2297b7438a6d7f6c2c2d2

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 33719c21d957e1b01fd168c3ea301d60d3bb38bb4a4611a45b201024d15f2702
MD5 2408090fbd15bb26b3c43813582f331e
BLAKE2b-256 6c7d6a2865ed00e77bfcdf3b4fd552970caee3a583558d071a37272aec9643ce

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c57f60fe9c0c1f58b8d4d1dc74a6bb4de420aea583e2b3387f0984a18f9240b3
MD5 5fc8c9a9c5ae8c442b2b6e1813c69aa6
BLAKE2b-256 cff7b6ff28f135c015fd3bdd32624bd976bf00572dc7425391e2655fb39113f9

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d097ec1bdfacf9a2ad6d7230901453a3511b69f54e167f17a7158758c34ead6e
MD5 22814a18dd7cfa8239c0a3b952687b81
BLAKE2b-256 b6282910ee23908077b97b3181fb077e778d01e34d387b9f499015a9389a162c

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df5b903645892bf7bab4dc651a15966066acf2173501ec1a32b8755ab217e499
MD5 8ecab2072cd8ad0020050ae37bb8eeec
BLAKE2b-256 682c28a5eb6cf7d124d67af197e1819859db3ba56956b23317a08343f926d358

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2a148321905bf9b096124790100926c42b73f6db95cfc63064980dc14a14eee
MD5 4bcd7420bdb3dc3036085908e17feee9
BLAKE2b-256 c1ad26ed4ce75f2e5ce1097b9d89d07a0d54edf28c350d22904c36367ef0a652

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ebbce864c998e0563a2ef211573a4b32c3565b5c557aca45d3bec32f670642b
MD5 2b5fe03e6d72aec7ebde979797ffd552
BLAKE2b-256 63540e875375ce6ddd9e87aeb9f1b2953b7f7e58bd43aca832073ebb0554fa89

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52141f39b5acc2d108f61e434549273cc9be9087537f46e5c66c57ed8169520d
MD5 a621c21987c3e6d3ec823a3dfe21b457
BLAKE2b-256 e7edbb8814d695b5e8bdda9619e553a11e8ee4c9dc5c60242c5a7f2572186456

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6b2c141a8a29e32f6a86c8997845c0ac5b897a510c49dfc7a0d3fbf1069bcd7c
MD5 49ff2c2ef42325c5f50c973b0e02987f
BLAKE2b-256 e538e081225d9a00dda83fc82bb208b410e873063b15ec15c7bd62b9775d1178

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8b67bfa5ead52667d8fa92f28baf5ea6e7f3508d77429703c9625a2575435d13
MD5 ef5797f572a3644472906b4a209b8345
BLAKE2b-256 63f033b3582f03f49ffb0cbacb5a3cb604148520139d8660c1c18d1645258e22

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f9a796530e2847085d6e70bd53ee26800f23d5bdcf0fa9e441ab762e3024458d
MD5 a2af0e482e28dc7cd88bd3770603465e
BLAKE2b-256 047441d3fba9c34e46798ad3ee9b985ba72192dc462ca5b24abe3174a8a389ba

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6512597970d8024f5941388416da0c2c437a20856e7936a1dc332883b5646f71
MD5 52b9b063261b26b6381670ad2f9f3203
BLAKE2b-256 6bc4856c0a2913ade51d73d827313ab1fde1a702055ac1cfa495f840d54f500f

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dc4c00e8e7020e18a32665abeec953d36dce93515cfb842c7e91883dfe86ef18
MD5 9b806b2efdaaf85ba647e0392f2dc2f3
BLAKE2b-256 c37f37c4da2c394f72b72fcd3c8d6469ad1b2d402ec14c76fd0a824dcdc6682e

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecda4d59c984bbab8d3e66539988fcfca6a239d4a711d8c24903681cd81d7fb7
MD5 908150e5b7fbfa2edb452c8c4747522f
BLAKE2b-256 6b0473b26e187f8216181e5aa2a7c83da011c4d65332c1123a08e42c4aadc984

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de743fcd594a18076482bec706427e3270a052cebbb6a357b67fa5d0e96bc15c
MD5 530e69434172b6b737cf65ee5665a7d3
BLAKE2b-256 e835cd1801ee3301789995ad9b5106c9d6b6696abc81e13505fd7ba6f1bff0d6

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 081f9c40ae57e555adb9af2b4eadfa4b002e5c1c46766168be67f4f3d866e6dd
MD5 79ce179aba248b8db9798d0f745cca4f
BLAKE2b-256 a8b8703d7672f2f230318c8d264830b531ca2807a8b42467a5e675c0b84fea44

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88495f302b4bad01368c38c1ef06a82b9377bf80cc06c0f1ecc3fd57ade1b019
MD5 827dfd775996f6fe4cb2f1c19f1ef132
BLAKE2b-256 2aca11facaad2d57fd04add4826f752badd5653c96a0a5082d401799b2865215

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56192e0e0e38000ade61cb10658a5669d4c43a77e283e1d92e8fadcc0a0fa8d1
MD5 9897e20fa8e8300f38e58b76ac749f3c
BLAKE2b-256 42a161e1ab5f32b22bdc0e053da80b5bf61547d02491a3d778e48734fb284c61

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d2a05246b2c9642051748136b1027acf9754894232ade592ac719f2c9054ffed
MD5 be3e01c603cfbae8883652011aac3ca0
BLAKE2b-256 d58b37d7185803d21b7182fa96e3d3e0a8defd8d26e7df50b5c4a7e85a077daa

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 90ccbd09c04d02a8d7e48684dd7dab2e9fac9cdb846a1a4f954764e69bc08341
MD5 55cc981f0fb7d376f7a9fec9d0f33d5a
BLAKE2b-256 e8945f58a170181a7eab354b7652630317c770b03ba6df030c6006ed3e1b0d51

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4adbf00d87acf7c4dd940f5e234b102b8eb1866c43adc35dfcc93c7dd2262853
MD5 97f6dacd0dbc9587192087547d49028d
BLAKE2b-256 8557ec776efbe97c752cf072383da2dfd090fbaa62a3f007b8633482930cba9e

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3ae862b1bc81d869e3d1d3a927da5ab6de509c8dd84bdc036ab42ad73a056f02
MD5 9553d1fbd97512efc3c8b9162d2966e8
BLAKE2b-256 aa4cdfb830feaa67d2e7787c45552122f1ac9bbc7d3a9963a7868d9b0d22cbac

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0defdc38339d91f6377a6cce2255e89357bfec3b5534b8d58f0ce946d5047bb0
MD5 39e4a5383ff353db77f40f1542d1cb62
BLAKE2b-256 1c04dc3d9036f8249f6158fd41b08c461c9f377748092c1e114c8254b456882e

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24fe2b87326e302470d7cb3a8a13044c4d6e9eb2eaedc9614d9b52b70c193641
MD5 d7cf26b69a0a49b55672b226bc05f186
BLAKE2b-256 14d39a9a99035e1fc673c8ca9a45c19be5635eea9f15b54cfd0b5c47eccb84c8

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7e13847cef4714fd4b995aef5289a0c96ffaaeafec6b526be6dddc28b8ff8a8
MD5 49f41db2e2996aaa6eef2c87c97ae66a
BLAKE2b-256 096da155381d27a3a6f424c37e70d48f70e1695a53675b6c2816133b9e2e58b2

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6b4e49b23eef5a3637a8352f4ecb63098ed4efeaa27fb68e5a2b6a226c8b0a6
MD5 36179d95035541c8204f3175c6fa0770
BLAKE2b-256 94c68c9e3ecda4038c1285eaa08184d1834abcc150889c2ed49c9b57d6295a90

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8787808fa69a20e360916340cd4f5856efd798e615b865ef74cef67fe43d130
MD5 982abc530f0716f85ac450f87678cb67
BLAKE2b-256 767b275cfc4cbc69a8726a65f7f9678df491fb65fe6f8678a2f06504d7e5cb75

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5efdeb2dc44501f77bd12156888ef42f5a1238ee5d9d27dbfce40af927b62b73
MD5 1dab7b7a7c8ee8b089e65b514f00dab1
BLAKE2b-256 5cc1e6829bb01c15e4388336876f88013d45c35de89a02443f4c6eafa6851718

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eec717b653f70883a676212c5ae9c3d43a28e0dd38d5735cdd3fcb044497b47b
MD5 ea7b570772292c6b56cdf8163095affe
BLAKE2b-256 e163a9e4034804fd13e3b99f996f00ed112bc52badfb39f5e5e145c761e4bbda

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9d51eac8ef1ed62d9240f4a98e9940dbce7a0b93bd04f31cd6efe46bcfb72d0d
MD5 0acf68f5b4aba3619ebf785f8c64f0d9
BLAKE2b-256 46ef65601e332cc27b36aeeab8f77ee0b67e790c907ea852a1fad4c4d7ccb0d4

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cc0c3491665096a67a365afc1d5cac55b08a19a2577d6a1ee012eda58241d49e
MD5 42e3bcd52231113351d9297c7560aa05
BLAKE2b-256 129c0e6d3f9a2c2f65650ef4f8f871f8c5c799d28f06705ec499ac033adbc25a

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 20630c836bea5277b4a8a22e6f4e71581979004dcb0e29a5f176a6e66aa965c0
MD5 e45e130079fd2e57f36b8e6339c0a612
BLAKE2b-256 a71a5353fb406198fe352da7fd9bf42b825afdcf76ff4cb4202cbb31a81de0a1

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9717a330a4144ebfee4aaacc7c16b01977d148e6d9e3fba3c3cf4d2a099db973
MD5 bdcfe01b6ed8b0e8898a12f0a7560c80
BLAKE2b-256 554702499adaeba72e0ed4a2043c397b8094e71b62c8c0d00c0191ddf059964a

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2af754fade7663fc79ffafcf8620ea3c5b7d55b0769658bba414054fcd36b7f5
MD5 0a77c7e03e6d826ae05d226d08b62dce
BLAKE2b-256 cc97b24b94c06a37a70234e8ae3158b451f92b78705b32ebfa8911ddff8e05c3

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb4ec71cbed302498c168069f6aab7077313106d7ec96cf137b07d5d0848a596
MD5 e48d10e04ddf5e4ab1e00838027f4368
BLAKE2b-256 bae0e5dc11ce749ef97790e2aa8a1128a47c426191b23ea2e477187d65e65cf9

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5cd1225d5516f68c834da0661437327626e1bf2894a221ad9a11c8c9f9eed79
MD5 4a47aa0adecbc9cff5b6c898e5d71c5a
BLAKE2b-256 9f087eec9b6125925600c827bd305541baf3b94e60b9ad45f3d1116db6aa1075

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for clickhouse_connect-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26f32c7f90119ab7fd03ec8b00e7cd3516e0f4e813586271924aba3d6fc89c6c
MD5 41535e5a0caad0691456b06b6b01b214
BLAKE2b-256 f82fdcd7c2cf7aa3c896c04af8c19b088eeed49ec8f7163b24f432efd36d54b7

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