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
  • 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.3.0.tar.gz (89.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_connect-0.3.0-pp39-pypy39_pp73-win_amd64.whl (87.2 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.8 kB view details)

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

clickhouse_connect-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (90.6 kB view details)

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

clickhouse_connect-0.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (84.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_connect-0.3.0-pp38-pypy38_pp73-win_amd64.whl (87.5 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.8 kB view details)

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

clickhouse_connect-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (90.6 kB view details)

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

clickhouse_connect-0.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (84.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_connect-0.3.0-pp37-pypy37_pp73-win_amd64.whl (87.4 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.8 kB view details)

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

clickhouse_connect-0.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (90.6 kB view details)

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

clickhouse_connect-0.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (84.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_connect-0.3.0-cp311-cp311-win_amd64.whl (89.1 kB view details)

Uploaded CPython 3.11Windows x86-64

clickhouse_connect-0.3.0-cp311-cp311-win32.whl (87.2 kB view details)

Uploaded CPython 3.11Windows x86

clickhouse_connect-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl (184.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

clickhouse_connect-0.3.0-cp311-cp311-musllinux_1_1_i686.whl (181.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

clickhouse_connect-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl (180.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

clickhouse_connect-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (181.3 kB view details)

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

clickhouse_connect-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (177.6 kB view details)

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

clickhouse_connect-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (87.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

clickhouse_connect-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (88.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

clickhouse_connect-0.3.0-cp310-cp310-win_amd64.whl (89.5 kB view details)

Uploaded CPython 3.10Windows x86-64

clickhouse_connect-0.3.0-cp310-cp310-win32.whl (87.8 kB view details)

Uploaded CPython 3.10Windows x86

clickhouse_connect-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (190.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

clickhouse_connect-0.3.0-cp310-cp310-musllinux_1_1_i686.whl (192.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

clickhouse_connect-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl (189.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

clickhouse_connect-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (184.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (186.2 kB view details)

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

clickhouse_connect-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (189.2 kB view details)

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

clickhouse_connect-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (88.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

clickhouse_connect-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (88.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

clickhouse_connect-0.3.0-cp39-cp39-win_amd64.whl (90.1 kB view details)

Uploaded CPython 3.9Windows x86-64

clickhouse_connect-0.3.0-cp39-cp39-win32.whl (88.2 kB view details)

Uploaded CPython 3.9Windows x86

clickhouse_connect-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl (195.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

clickhouse_connect-0.3.0-cp39-cp39-musllinux_1_1_i686.whl (195.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

clickhouse_connect-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl (195.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

clickhouse_connect-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (189.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (191.0 kB view details)

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

clickhouse_connect-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (193.6 kB view details)

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

clickhouse_connect-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (88.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

clickhouse_connect-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (89.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

clickhouse_connect-0.3.0-cp38-cp38-win_amd64.whl (90.2 kB view details)

Uploaded CPython 3.8Windows x86-64

clickhouse_connect-0.3.0-cp38-cp38-win32.whl (88.2 kB view details)

Uploaded CPython 3.8Windows x86

clickhouse_connect-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl (194.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

clickhouse_connect-0.3.0-cp38-cp38-musllinux_1_1_i686.whl (195.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

clickhouse_connect-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl (191.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

clickhouse_connect-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (190.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (192.1 kB view details)

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

clickhouse_connect-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (196.0 kB view details)

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

clickhouse_connect-0.3.0-cp38-cp38-macosx_11_0_arm64.whl (88.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

clickhouse_connect-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (89.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

clickhouse_connect-0.3.0-cp37-cp37m-win_amd64.whl (90.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

clickhouse_connect-0.3.0-cp37-cp37m-win32.whl (88.1 kB view details)

Uploaded CPython 3.7mWindows x86

clickhouse_connect-0.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl (183.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

clickhouse_connect-0.3.0-cp37-cp37m-musllinux_1_1_i686.whl (186.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

clickhouse_connect-0.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl (180.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

clickhouse_connect-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (177.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (180.2 kB view details)

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

clickhouse_connect-0.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (183.4 kB view details)

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

clickhouse_connect-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (89.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: clickhouse-connect-0.3.0.tar.gz
  • Upload date:
  • Size: 89.3 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.3.0.tar.gz
Algorithm Hash digest
SHA256 2635a8efd187878bccdb41b35086a52cd138060ffab63ce3bf1fd157b5f11691
MD5 54481eb2e894f607220b444c24082be6
BLAKE2b-256 fc12bab4351a4a49582728375724496397ab209fc7cad60a453ad9579d7a6be2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3d65178cc0f70fb58b67754c2f96ab81a681b78458d8d5d9b059580851c4054a
MD5 27839015dd95e88a8253fa8e2fbd4a1b
BLAKE2b-256 c2ef75b161cdea64b720658a4dc2092432ca449cd2e6d6fd95538973246793a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d94dad34aa32c8f90e83bcfab069d0dafe28d446cb61f22fec4b8d2d60bcb0c
MD5 e1d448144b91d497a161775370ccf581
BLAKE2b-256 3d38f32cde9c70454c36dad1605b2ad318511439b47a56bedecd229104e59246

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2a0d65054c419923f3079b0c5e0e6b70d4398aefc312f0b45fcec0830ba0672
MD5 483347d9ccd46f75bdf3408f4d098962
BLAKE2b-256 b6abdd036ed8c220cdb80e00bd2ae13ea866ee5c77935f636a94f7cd828a176b

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f41ca20ae666f8b3d8696651fb9fca10d74cb5eedc63476de8877239db799517
MD5 c387271447ef896970b04b1d0e45bdb6
BLAKE2b-256 f5fb25ed370878f1ea7c37b8eac8b0e7d1720073c991f3cd3b9fc068f249ad54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b143d841e83a51f69018eba09724311f7c955429a589dd03d93df86b3b74c7ca
MD5 945f7e37a3e0dac47560395ddbcb119c
BLAKE2b-256 ab554d7c771e009cb36cdfc3b8c2399b932f3aa9abc2de2da3a04533d3acb4d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bec44e4852339889da9ec455704a35ae1163d278e96ca4adb63209e667521e02
MD5 fbb20e9497d15ace89c74966d69ae472
BLAKE2b-256 e76eb2ba5c1def905cc711bfac6c68f028958ec45b4fc7fa16c49f24ed7597b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 664b6f3bc6bc9ecbc864045ea7a2acf6cf875b38d8227b68095a525f0d4ccbfc
MD5 049a183250abd62a69074f13787b2a45
BLAKE2b-256 552803114f95f68c666a2c1ac02b4bfc52eb6db6687b10b2290b1fbf9e60d08b

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35a014fa53e0b431d6b06932202bcfabd9e4b57ad03994d11c399cfe7ed16004
MD5 769bc50a0d018ce49b7299c95243ad17
BLAKE2b-256 b952590bd89cae19179b37d70e8702956c008f1926e036e206950ebaf515ec76

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 139606e26247a92e11baa35b1294ad50ab8c91de5e771433b90077bf87644e0c
MD5 9a0e6b2e7456312d91560b9780cf371b
BLAKE2b-256 5dee8117b9b42f64f53ce565ae7f915eed16d46217b317c2e2a970ba9fef9b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f55f74f3b235f5685921d015d7f9a25ae61f0d3e5383c5a1410fcd71c46accd
MD5 374fbc336b72e801bf3425d7706161e2
BLAKE2b-256 735e52e953f7535c1a82c84535ec7a3d1310f50405851bc5bcc662f7e9a7c4f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 59fcb236b4af65f4af3a39b35620ffaf4944d02473025341200f3c3a05fc5582
MD5 594441d59329e004bc08191e2ffdd7e5
BLAKE2b-256 70936f35a6419405ee1811a3897e17791cf7e8f490a4831f8a36a0bc84b99108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b70c8e8eca8404c5a9338c137a511786cb742be39ea483d1003969470d15e758
MD5 0876c1e5d1005dba6416563fbf84fa97
BLAKE2b-256 f54d34f164243476ecf08e6a0fcfffc5737dd812104b9d7de9e4b79af4519281

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 629c3aa697b6d29857cbf4a672e9e94d18b5bd6a8cae8da637630c5ffc7c19ca
MD5 6df0ae57985b1ff0b88aece471fe7031
BLAKE2b-256 915487d011344730c05c6b02e41610ce0f7acfda1b25c54d2dc2e7b4c61ee951

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e31b5cf15a015be2e23a50f424adadd9d53e1fc05fdebd2b7b86978a75b81235
MD5 16130412efdfe2fc0fdcd52171ee5680
BLAKE2b-256 4a3c243174e5df1ed4bbb608649411af5d0645c8fea4f43216f5abf43984dc79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b4e7c2cc1e9cc0e8f096dfd38625c66455d7c70b023a8ef73e54af9441db73d
MD5 dde35ffff0b8f3a2fc1f0b2b9f08d08b
BLAKE2b-256 df7b546a83f7804db1d904e4e18b0dbbc87743a515f90619888ed9c57cb06a33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dbc3bd98d8e7a370ca1b1668f42521c355f960b1adc2c3f61262894edb20949e
MD5 f97f9ad4d24f6ed51a8ef4b1bf1147fc
BLAKE2b-256 fa4a8c0d495d3ff90b71486e08b483005c9c997f3fd46f9f9e4a7ff1760a3841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bdf215c91e5a12665a5ad4c732c79578bd1951599c6f7572417a0f6103646df8
MD5 00e3a2f39a2b130bb472ff2e1485abb1
BLAKE2b-256 d7c2a22c7c177807d8577dfc948ff5c6194730b250a176bd36621ecd34f796dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fbc09db56a2db345f45169c9a744c24da8aee728e88bfba27aff5549b811d67d
MD5 d508a62ff31daeec8f8ce3d01e0f89f2
BLAKE2b-256 25d1e1d003165959e942b7e320ad0059eb1cb392d9fea951a6a41a01828da9a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f01e5676a364f04c9bf525b938aa02984092a2c752d210f933b7154c7868421f
MD5 3f5b5abde9257d55ca39c5ffe08100d4
BLAKE2b-256 8da9ca668df16e95000305eb7186ed5655daeeeca0f3c00a3bb5f1e7a9a4480e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 155c384c2578e10218dc64c8b02737df1fb02a1dd634c4a33794cd52dfae69ab
MD5 18d8844dccd9070be2d2612941c94be6
BLAKE2b-256 cfac485f7b1352f5d070628af37b71260d2a45d4ce6a2c7c04f0652a9fafd7e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c94282a2a87354a35be159f5cea8d68c36302dae8143a0644fd8d7b1d48a98e9
MD5 9b68f0a4ca35f0c005a0fe8cf4ef2dc0
BLAKE2b-256 fdea53ca7d1750dc53ab3975b4e37509ea5dd82a14dff9baa66573d43aa86a74

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2b69fbc71a0f302f62efc3339377a5abaf11b0df15b5b19f2deaf51ab8b7741
MD5 66cbc91a5c3a52fec7d94c6637967c63
BLAKE2b-256 ad44f7966c9102fccdd20101b079b47ac4b794fe73b05e3393715e8f233f0801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a18069b9f6a52423c3537678af71eb2e48177371abf39a2d1c860e037e9c195
MD5 96e4863bd05768fe45d68b862245304a
BLAKE2b-256 cb32b3d9ee1c77e5765bc4b00da22a9612b7cc6ae0181c19aeeaa32cb3c47a0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c70b5717174ea7470e21beb9a782104118aa4466ed088fcd5b078cc7ef5ec279
MD5 697201ccb6084d1be4ba80fec6d646ba
BLAKE2b-256 a8cc248f9f8b286af4579ed1dea595f945b31ac6758ad3b5bdb9bd4be5c4012f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31ef9aed4735f97bf3caf1eca110b8319b7f21a45af08aac35892f24516a04f6
MD5 66d2053a849eb55493504868cc34b67c
BLAKE2b-256 e6c1b59e2f7adcc77a63b75a913784fc01830e37c3a76e61075eac5b6113ce5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 749dafbfd515c659dc652f4dea75daadcb108dc25d1bfde8077312d165e80438
MD5 96aad34cf021afc7717820b72ed3c128
BLAKE2b-256 90047c8649dd0b987fe874df0baf52a609ad09f80e964f768c2544d3af69db06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4e12c188fb248def853be40b08728d68413abcbf94fbd09ca4bd92f667753b01
MD5 51746214e35ae1c0e87271c1e5f0e3c3
BLAKE2b-256 64630000e647adea75ee2633087c1500ce55d7541f95a26eab8de3864f7b1d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 07d91c8a80e49105267cf3b7b401ab4283c748751d7e2b968346df6ebb15994a
MD5 903198fd96b8b2bb72e58e609b60ac67
BLAKE2b-256 d2f2bd70313190494355ff4050482a117288a9066acfa6bbd90dedffb01eadb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8d96482f7f28f32f01a903199521816e7fc8ebac195b45dc533ef7ae6cdd1a86
MD5 0f7e34f573338251e8388e2241e51812
BLAKE2b-256 400aff9886034fbeb5415388535beb07234145d5f5d165fa492207d2782dceda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6c6e2eae2e641d5496e7ca05664fad67d7d8162632192f99801c707100dd1388
MD5 37a5510a8abec0a282a1a5ed4e58ef05
BLAKE2b-256 3199b84a0eef55a0435c4a39b05cddfc0f1f68fcbe3cb002cb46a61ea1e028b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b31daf92ada620887725931278d1c707d2f5881489d35e992cfc7fc4065b4291
MD5 09ad60e5dded919defb105f93765f7d1
BLAKE2b-256 72e2afc1cfdbc982322a7cda1d51fdfa6557515f11d7e21c9f0e4dfc40de62f1

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abc6ce9df9ab55de5548f836f33be3cbb440b2ac98d196e36bad6767c1bb0559
MD5 d8f422bbdae5bdc3a715e0c522dc1928
BLAKE2b-256 8a023bf6a2c6c9223bbad470d9b6012c2936daba07f2274a1702a0bf17477697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9cc985b843476faae0231068ec8adf1e7e18194a9105949b346ee17af587c23d
MD5 3e49724a9b7aa0446ec0a430eff9eb77
BLAKE2b-256 3df1970c12ad4b615fac48151fa997ed066f59940e8489f6485f1af98e1b5eb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1706771fcf6eab3fc459960c698368403f214abb631613e4aad401ec7ed0f8b0
MD5 c607d5564b0279a13bb141aaae4f7c6a
BLAKE2b-256 c7b67c2fa8ec6c634ea44bc0951b092b25e0000131d07bc68e6034647e90c637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e25f25f0ace62142e70d88b0d688855f4969c301bfee51e0119825528502657
MD5 16cf31efe228fcb3711cfc6ab0d1452b
BLAKE2b-256 f2012f8775d73defd1527d0a0a201d9c6fbbed01490dc1280475da29ea517778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 574a928a101f9960a2188388e2f7326eb87d226428309fc8f36622e51f9c2d8e
MD5 f39c1b335da186946000a788213d407e
BLAKE2b-256 3d0c28e220fe981e4cf45b4adba165d59f0e323d616df47d1538fec0cf0991c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 17d348a7f4f4cc6b5181da8806ed60de0e4de3039002bd19c71a6dc6f0e31464
MD5 aa75c24b90e88e33e2d5be1ec945cb56
BLAKE2b-256 6d5913a5796046ea77f5158bfc4f122c45f2a5e188d5441d469a0df975ee8404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9175c76f02421f655bb932215f9084ca0afd842d009d44792c29697e035a02bc
MD5 649dcfa63abb5ba67e55f73902443ea2
BLAKE2b-256 f5621d01f69c2a23b98b1bbeed8071c4751d9866064d57c9ccb758de74a53959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e10a3a80df25ad22677b14cafa7133a31984f2cdd423910f11f6eb97c17236a1
MD5 5cb9236830436f2ec4b4095e3a6fc1cb
BLAKE2b-256 c2b77dc0525be0831da0adac1795790b1e3d69222a1889ab265c3e4236f16080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e0397a6e264bf236c2cde8810b8ac94f91903db49ca496e81b7f5a3315de0495
MD5 dc76a06e6c95aa776209ddd07bc9c50c
BLAKE2b-256 a1de6eb12af1a70efd6775db52df5ae8332fb3e4aabe12f203423f7b0305a3f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 708f3dd3d60e5802d4e2b0e94355bf4a282180e8ab0a6a2f2b323cf5f0bf358b
MD5 55c4d2501a874e29b614fa8246e442cb
BLAKE2b-256 7ec851d9bbc1b568e6bd7e3f75b96faf5846bd32aebfeaaa5670d7dd15610267

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 282bce88625654b84b0a32254f9d7bcbf7ca6b961b9fca1db6415e90be1aa694
MD5 1fbb8d2ff245679739f3927ca240c6c6
BLAKE2b-256 8dc6f0538554a0eeadab14761240dbd7596ae711f52c0c77c23c3b48108d28ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0fb78b3ca0889a52d5142dc524747eda5c7a4b6b4f6431f08b7e159cc51843e
MD5 0623c9e7014231b3dbe4c95f55154c21
BLAKE2b-256 e60bf36331447c68af9623bf57ab266c275a015490eaeb9952ba19b53ce3dc8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f80343db6dee7c8442876b3771f71523c64b2269a2c8c3b37a0abe94165d1087
MD5 d0bf3eabfae2378af85b49ce19e770b7
BLAKE2b-256 3613a8f01a0601f8c37dad083ea0e273b00c314c703fa656900613f28dc06e5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 408971cad4aa1182b066d3189a08135fd10c0e9894dfa5306a9de5a29c29f6bf
MD5 5daad10b7888eb78f04db4ad34772509
BLAKE2b-256 f134cb69aa4d1dd894eff8b60ed60bd1cabc02b6fedd8601ad0f00c829684637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a30d9eb93d912fa5576d2ed55810976fd5ae7db8e3720bf6669d81d008e9e992
MD5 39cf2c376a4450812bbd19d67d31f450
BLAKE2b-256 3b65779efab85653997ebeb1d9e497d59c54dbd3d92840a58f36d0082cef240c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 99f18c58270e71a2622b02ec12aae0d1416615a9dea0ac0e6e589e2fe4c698cd
MD5 c58451334d547c0c448840be32a99460
BLAKE2b-256 669328684e7d1736c84aaf23ef9d84c21a9eb73845d697c55475da9d942a8bd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33fd12bc48008c5489aec3db9b44e927bc30edce8b17f35e8598bff6671eae76
MD5 0e1340a1be63b953e4e1c2b6e4f5daa9
BLAKE2b-256 c38113f44aaf56327392a5706e5a17f4b59e8b6a8e5228ab6e8c2fa5449682de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 96cee5623d5f6ee31e102f982454e70b3bbd6b4bcaead587a0ae279167a31c6e
MD5 9e36dd0a2f67ac3666d9a135bc7b56ee
BLAKE2b-256 4d9c02fe2204520943bfb085b0606a79d07495d7d6bc207d2ab32aa0b49e9afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db35f0f1a72a267d217f66afb3a4c09efb93b5c0658343b29fb86e3dc38b59db
MD5 99879a21858c33080e2eb2a1df93d6f7
BLAKE2b-256 eaeb2f65940feb3ebd513068cc680f17e8ee07f301add5b746f2b030731d4f97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 021b7e8dd6fc1111702f21d484f113c91773e81b6095b936baf8a13dbdbad5e6
MD5 352f5695b9ee433d5368fbe5a4391a89
BLAKE2b-256 eb6d031a5d71ac3b551a1b6718fc05ae44e2431270d82596c17e54dd542f4d48

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a77c5d59633dd7af71615d31a02af48ddd775a45a197216d4df7c2ccf01741c8
MD5 f4b17bc24d918ed5f4e7746991b0c484
BLAKE2b-256 45d6e43a72908473e4aa79877a41f600e7f9e3e21e5d71dd7067c6ef68112e03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb4603e98a38eac7879595b27d555424319c506bad055a2df484719f57d99e87
MD5 988a118d24238bb5ce01177a4f54b2f8
BLAKE2b-256 ff224b9ce1f78899a0d17f98207e9479320dc26414925529a533fc8f0cd31261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3708b9f4dd75411ac6bfa57c0304c259d581db9ec23d56bfcb5b8ca1d44b9571
MD5 44d0bf412c5463eeb339d93c785610c3
BLAKE2b-256 5415287d811db8dda7498159271c4f68c5ec79d1752613efa21946871ef5fcbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fde4d3c1233b4d2e2ea64206629a0c33f34ce4fb1ebce26231199d5905c4ff97
MD5 21efd11f6b6bf4fb1e2bc5d20e8bb41d
BLAKE2b-256 41c6ece81727ab951c5f1cae06bd2106519e8e8539aea17ed5ce37f18c24e079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1ad24e41b1eec953121b5d92207fca275bde64c6341fd46839d9b5fdaab7a9f6
MD5 9b54ff2fd0f2076566ad85ca13a8819d
BLAKE2b-256 e062eb79d85ba61485bc45e64c6fc32134cc0b17c33b59377ba68b7ca15fff94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 685a7f62279ce4c60f254304bbd150c311ed301494ef0fcdd63eb087902f256b
MD5 5a94c9d0e6652c790d4086dbbebe6dbe
BLAKE2b-256 b9aced3a6ed81c4b348ec3f6ac43a50226643a7e330b7d667212ff73b4460034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 24537e1010c4f5435d8a064a72318266d7a50ec2e42d0024d9584741834accb2
MD5 94155608cf7b47801b0941976469b3dd
BLAKE2b-256 55137d258a02cfef92041c841490e697e2669ee2463dd6bf5099fff6b29bf342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 44c6c35484c4a0e30475fdd8552f9b32ea305f2a179fe8448b76071753b67ad9
MD5 93b3c363db1a5c17b1e857c2bb13ce85
BLAKE2b-256 11db40507eba0aa27b47498285a1786d107b04045ddde3278628a775def007eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f39f43f5b3a8195aae9fb37147deffba92b1592ef0d6ff9593f9ce3ca6f39c5b
MD5 3ff45b71d90c9ed087a38d82a06c1f57
BLAKE2b-256 d3662e74d3437d46deebe991b8e403752f9912df88b3f0a5da1726af9068fb61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8638afbc8722a3dd80490206960c68b358cf0ae259dc38daf6ccf683212d139
MD5 cdb912e5b53eace1a174c1c40aba1093
BLAKE2b-256 e64ef93bc9455eb05a71dd1d509e9d4e468e8bdef66d29e566de75b2055b1fc0

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.0-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.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68ec16c8ba71d6762f09c36370d433eaa943cf97a154ef7250b39eb3154fb966
MD5 d921e6743f2e369e290e8dd5b6fa6c77
BLAKE2b-256 c900a059b4f7fb7fde8ecc4fc338f5021fdc01a0c6b5b7fc6d1620b361a211f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5243caebeb3a5615fa0cc6275823b006d11408f0902cc3723c85a3b94ec99efc
MD5 451cc8ec530b51325e0d2858e6269c97
BLAKE2b-256 b26c4d251244db8b9f1fba8a39ffc62ae9fff86fa7def98f2f384bba4499e673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aaee284acadf63c4317813cc807221b8b5b7589f1490630c7d1a8d59ab8c5d1e
MD5 861e260d86b9cd4dae6e8c61af1d4493
BLAKE2b-256 90de1f7042ca7036927f0d9527722ee69bb424c9e32154180fd72a3931171d65

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