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

Uploaded Source

Built Distributions

clickhouse_connect-0.3.1-pp39-pypy39_pp73-win_amd64.whl (87.2 kB view details)

Uploaded PyPy Windows x86-64

clickhouse_connect-0.3.1-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 PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

clickhouse_connect-0.3.1-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 PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

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

Uploaded PyPy macOS 10.9+ x86-64

clickhouse_connect-0.3.1-pp37-pypy37_pp73-win_amd64.whl (87.5 kB view details)

Uploaded PyPy Windows x86-64

clickhouse_connect-0.3.1-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 PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

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

Uploaded PyPy macOS 10.9+ x86-64

clickhouse_connect-0.3.1-cp311-cp311-win_amd64.whl (89.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

clickhouse_connect-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl (184.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.1-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.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

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

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

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

clickhouse_connect-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl (190.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.1-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.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

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

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (191.1 kB view details)

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

clickhouse_connect-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (193.7 kB view details)

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

clickhouse_connect-0.3.1-cp38-cp38-win32.whl (88.3 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.1-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.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

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

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

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.1-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.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: clickhouse-connect-0.3.1.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.1.tar.gz
Algorithm Hash digest
SHA256 c012a2292e90449e7cc142b93df698d967fee4f068c42927fe7b7ea878be617e
MD5 c646cc4087ffdc46819786e38dc599dd
BLAKE2b-256 c6c390c2511ab2142342e01c632dd0c05fabcb0910d202d0a7e5038dac889b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 03c6860d4bd385cda066286d3229aceb6f9daaaf81f9129aa0bd0a8973fdd071
MD5 c4964fe7bf1478d453ca1467af1fe9e8
BLAKE2b-256 7792eba1a436015904409c28a21e3d643eda14081bc13c7e927ee6b0d364e690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cd71052158272eff91fd35ae277e1eb52e6100b54e9ead1e768885c54dbe195
MD5 83270cc0991cd12711981c2e5356258a
BLAKE2b-256 ea1b08f5469de93749f7edba1301ddb87c941f07c53540b3f70fb6b4eb639fac

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0033d67e1b2e73d23482722a5adb676aef98872ee909eda494c8b7d700c54dec
MD5 9e444c4bc675da6cd0f912621d072043
BLAKE2b-256 83bd502df73451b194e2af9af004c6579a19cb6a1e61397656bf6734680b2eb4

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f37207bce0bf495d60f6aab9c2ee212c45e170e2d8d69c86b123263793d0c3ad
MD5 52c3586f315df03ae45a55851cc0336a
BLAKE2b-256 8cf66b38c0e7ac623124fcc6a6f20830c73484fe4e4190fac3d63db137287fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8978d38a7a119b598be65615e72d24560379d4adb14749111ff6fe75314073e
MD5 f03d5b61dcefadf9af6b5798be3c0a89
BLAKE2b-256 0b394daa23cae6a21f2137064c14efd62f2a0f0e07bab0f11df3cb0130d032f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c4acb576b92d78f08998c712b0d4a04223c26d1f2517df755b6c4337e3619637
MD5 fdb16b10f3435655f7d1169f1b395682
BLAKE2b-256 6a4eb829417ac5256aff127388627f762aad043ba05efc09e10b070ddc04adef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55db9f6f6ee9913c39857e6ced0586244c8e973f29a1c5b1f9907cbea4d1cbbc
MD5 d942a66da76d21704c2d446a125a6fe8
BLAKE2b-256 d7143c37298ae1441e17ef928a1b63ad8c794622589a7687da13f447d3c9c3cc

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8233e1f08ee538da0d2a33a3c92a78da32322e4f395bdf59ce0b7c3ed6259893
MD5 4fb0428af8a341794d6381892b7d4fe6
BLAKE2b-256 d8ba3e968bdb77cdcbb9e20504038889cc85d5919bc56c9e0fcd5ef6c1241634

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 84b096007619546dbf868e47dc18d5e2a8eb37ecd7bb5cf13c8004d33238596e
MD5 5596b922c3d064548df715f21453a552
BLAKE2b-256 405cd31e541e92dc828b9f37e2e9e51ea6a55ac5e7d4a8f4a3c9b7e7e993e469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4dc631b141eb7bcc16432907a04608caa9336c1f0c6196387e25e835493460dc
MD5 f51547037206191732e1914931436901
BLAKE2b-256 fb531df67da93f12a08a4908606e6c8ebfda59a7902073e1e55eea9404d98558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bb125aaa69c284c1de7e903e4a307c7c400a69375971d99631733909d0a0b356
MD5 3e0835d432dc0769eb3187b408eaa907
BLAKE2b-256 b840f28e84521116d02153ebcba5d0f4603fcf53da370c14d6268ba19af52db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 413de93fe740df9749789ed4e5d4c4023dad15b2e0014d92e65ba65c6719f59c
MD5 f2a4ca89eeafe3741f08f783a90d4004
BLAKE2b-256 3b9072aea8454afea1efcf0d57fa9598b911d2c5010a89936cd4c18cb4115b88

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5979b418f68ea1684409ca12f9e4521668a113af5f74fee3aa10c4e98a1b2292
MD5 5af29d9ff9cbc57dcea198b8456a7ba0
BLAKE2b-256 5648f08b6929a2daf864996c63316a04afe8e13c7ecf7829f0d56b57ec066f74

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff09e4845916315470e0feaaded832d767d376929d8f1ee25e5cbe8507ddbc21
MD5 6971d02d2af74586dd09aacd20e6ba04
BLAKE2b-256 2b3e0579dbb547c1b94c5e001c759bea825622ce33e10b05c88461f215d2b1d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4835ba3a4584f025ae3a896cc6959c2d41c565e577968c89446556cb008988c
MD5 c508d07f2ab46aa39515fba3b7c8b1ba
BLAKE2b-256 87e13a2c5b22f44824f45cc61443bba2a9e44cc9786b6a6a22a7ced73c9dde15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2de453d58b7c94d0ee0a663db623a9fd23208aa0fd06d1a81ad80c57aeab8b1d
MD5 7f993cd257651f57c82fcc0eea70f5f0
BLAKE2b-256 339b32235e6e505d8927eef4dc064cdd021675a49ecca56435bb0121917c0bad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4bb6c8b3cbb0f814810fbd313342b4f04650c0df43ed39004cd861a27e7acdab
MD5 319d5fd060be109169b9f1990bdca077
BLAKE2b-256 cce68bc0d056b7a65538578cbcb71fa7722d9c406dd3ad731ad8a6a62e4d7d06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab2a1c3e5e7ec839b590563483405a348bcf69fa1388eb6982ea13818341a0a9
MD5 c549d4cdce8ab82b1d93ea5774ffc1f7
BLAKE2b-256 3ac152936cbaf90e26ba1bd0e708d9c3a1fd8f31b24e208966c60fd8134cbfc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 23830094285ba5b20185ae9a4b102e7c557a49bc549dd20e3fd12b751d912d00
MD5 c9ff9843b7e898a7c5e330cb39cd32f8
BLAKE2b-256 29c69a4560ae53f9dd160f970f5824f58d4426538775aa6a8a9bf3788a56d9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20d484f659bf7f50b34ec2fc718f0ab61e183ecbc98bbd97a5ede678c78dcef3
MD5 01701b6d914896a4c2c68f4db94756a8
BLAKE2b-256 8a1986bff1b3549d5bfb6c555cfde5551f96bab749792a73ccba964814567790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 883e97b794a4bdf90db209f344a2933c7badce5caeb76c1e55d5b0e2826767d2
MD5 81ac05a098c53dd988bb66ed0ead2173
BLAKE2b-256 86256301782d511172d116e8a2ecb678caaea76310df7cb6c14d9d06e3680b30

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b796207affab4861c0ed24dc7fc91208938cdb0612c49382e7181122df65a4e2
MD5 f65275e6a703e989e3d0993054d9fb72
BLAKE2b-256 581c00c4a45933d07eb8396d0eaf37f17b2128162c721fb5d59d50eecb656237

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d87159c60e7e3c07bfa7434562b05492c5ae5a8043b04fdee39be3d82250e924
MD5 04189ffd0f469531e302f3a441416b50
BLAKE2b-256 d90868d871ceec51b2b85ee49ed1e7a7cc80c4e6197396e625da87734f4bccee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b63007edf5bd0fc17b81ddf586b027d1040de9505757ba88fddb088fa1124463
MD5 a05cc1451bed377d8c8d8f90b76096c7
BLAKE2b-256 e660d4fb539f9dcf941259890897ec5ec266f6e685fb4e1ef2655a11246199a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b08c88c10b2a3bce541806f677971f652d9f311963ad9c1c11799ae558b9709a
MD5 f2c1c75e7d73219ea3a6657d37a0c3ed
BLAKE2b-256 4f9d6e8299e89806bb3cf6c8a9b67173149969500f044b2e6ed7a26d4b102b2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 97213b47d51c0389085305c7c7bf5d54a203e4e7b955d565831418c561dc4843
MD5 638967129f6029e87766c6a673f32904
BLAKE2b-256 bbe676f54d0e3607b1c2d17ad1533b73a88381c46013cd12600e5eff76906652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 759a5a1369f2b94bbec1190dbe10cea13e64b6e12532767d386cbf850e570f8a
MD5 465d968de9ea9a204bbee05994e4d39f
BLAKE2b-256 458e3c7a6b4d07144fc5469dd37352fcbd5b73903d4f7d0146dc12a8f132998c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd0f9a373d4c701f2ba7016eb13d8e019c924d9dfa385e44c181558c29e30596
MD5 ea05dc24ee56ac9476afe5485a3f03b9
BLAKE2b-256 c3e6f7ea4c4f8e8a4182b1afe610fddd89e7d6f64b21c5ddbad74e16af16a4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 63c798f481d256cefda2621aa4fc82fa9f3a3698f8cc0addc7879c467d523857
MD5 28897ff25c25f05e0928207928e8ed52
BLAKE2b-256 930b38c182c5d9dd9b2eb6174a2c60d5d14c29ca019931c991e9699aaa65db63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d46a6c27fca6f09e84ff828d51a4e095ea7124f08b0093ba7a39bac02ac2df8a
MD5 9e1862b3de315b2f98bc0aab4d6241f1
BLAKE2b-256 b18533df22864495788c262a7e268234d5092186113fdd1a2ab07138f878ea31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51582317db51be7180b19a40223b68cd06ab104e4b2b01d1bbb25504ea41d519
MD5 e62c2f904c2db49dd8f71ae3bd6e98ea
BLAKE2b-256 e475170614343061d2a1f9f59d481db6343a70811253d13a1159a927da719008

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19c8bb14d5a6186e58fe67f18e80a80f6305e578282fcf000c0f404ceae939dc
MD5 e5205757ccda0f24c468281e1ab3a0dd
BLAKE2b-256 06655085911ff905e045287a01d96f8f9260ccd15102a3ef103872fd375918c6

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0929f06edd497c7ef71b61f8e092d49640cca65e53ea0645c1dfc94ae4c00f6
MD5 9eb1d5a60463ad247356626613cd7c6f
BLAKE2b-256 a47b7be973aa3acd44ef671e414416dd04c1db8c9f537f4bcbc9d1447226944f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9312dcbb01daf611cb9d34047fbb6e6506571bcc0b036e32336727ef851acdf3
MD5 5f2211c810e250096ec9a164b4db7222
BLAKE2b-256 ad91b82cf61833883552691fc6677df5469248f50d2f17f4c71d57994e222ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b5ee5824a0eaa67a02ae64d3680a5f0b656528d06cd4fae35864ee6d05a7d1b
MD5 eae3ab3c1e1c1c666bfe4e06a66ca7b0
BLAKE2b-256 6d549043da85ba37e3017ed17b96594cc9168cfc8d2297c6b8b080b9920a5d66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dc036370e27ba1c2c2fb6c7d86b23da753c8093f5c43309d1144736c65e2bf34
MD5 555a3e5eac0058d41315d271084e6a06
BLAKE2b-256 4339351a2901715dd5f471a3fa8012c904b2430957e910c7ef51a301c420b8e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 de21e17f8b5412c1c1ac393f99b1f31637f2ce1a3ea8d3c1f3ef4600d875a2d2
MD5 19d0c740e276a1503c1ea2d69ba861b6
BLAKE2b-256 b53e94b23a560bdd8d9be7485ad6b535c8731d730adf4a1c742fc82913b2a5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aaec1b562ff33baef8fb3a1af532bb743dac21772be6c075ea97994bf53bef08
MD5 05acdfefb7c417c5f34d7fb5167398bb
BLAKE2b-256 2d40536d345e2e4ff4fe2f54ba97814bb71ded49028447065113c05a12caf336

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eca5d0d44cc6f0e1e79baad12ce34598ca033b063f81ffa9158f7b904e9cd511
MD5 0d034a14840faf8c1286280d70d94449
BLAKE2b-256 0ca9d68a073d4048886e74b0fa37c5207f80ba879007a2514e769c59c16a1443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d53da5e637b3b72c28ce145c84f2def02140b63813510fc3349622588380dfbd
MD5 db222924bdb8a76de1456f17248c925c
BLAKE2b-256 da7831b8e66c7ca4720498cfdc79f9c6b6d63e6cc184d2f19ce3245a793ef5b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e6ca427acb9a7c6dfbf43e9e2e4c590cf401e0191a3e201f46eb0c6bef11938
MD5 fc4be8b1795b0cdb4510c1a5bf2dfd04
BLAKE2b-256 31f9b7ef5a305497ba04d25b6fb3b71fc7a71a2c474a3952f6eb5d655c21149d

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa3114245e01fa6bc60b0ecedf5dd5b54d432137b3affd72fd090c41cc76eb5a
MD5 122bc4f4eba8365e4f9e59c05e6b7313
BLAKE2b-256 c545a9af3f418a764ed764c77276dd9340d2faa1ef151184faa4c95f467e52b3

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5cb636f54af1aa85f3590041a229cac882c45ff47fe880a46bed115cfc9b1925
MD5 7598dfe66eff68de3495d0cb0b291645
BLAKE2b-256 4eef99781b6d5ed6f61ccb492e747fa2305ad5c9f95d3c617b0d6610c115bb2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cad4722cd6cc41530259b4e08c9e35300665064b041f52231d0834c86d95e45
MD5 862dba2edf0753d064388ffe2c6651d3
BLAKE2b-256 63c6db25665f863866c2fdd32545333980b5bef0d6c362fb4b879e1248913b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f891440d948018982c24d2f818a1f1108ba2fbe78a99f6bd15c9340777376ea5
MD5 eceb44a1f6df40da2034292e9cb1b4ed
BLAKE2b-256 b532ea565f1fa7edd9bbe7f3880719a44843a2d66cd70996c097af431ceaa57f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 20d63f6b98d04aaed24096894690b6abad1359e74e89e8aba354e044530a70dc
MD5 bfccfa79127f8fc8b22285e6f9f6d318
BLAKE2b-256 21730cd8ac23f4b74093baf46f22a0be30ba33395154ad5c13b59db7f76c6e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 376b0d7fd4ff83ca1eca096115580d68ef41a88836b10e471221ca7f18aa71a1
MD5 9e040320c3aa6cd18bc099ffe9998ff7
BLAKE2b-256 8826a844eb31e70a717abcceeacc69c2f5e32d655a277e1b5e04788bc27c7623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c9f9408f2972649a87aaf960392c0eb22d593740e3f248aafab900700f4fb7c0
MD5 e781da9ae98b2aec6445995c2b9722cf
BLAKE2b-256 0ce8cc9afbe6b4f32c23a5cd80a8ecdfa0906dd079778cc3151e6ffb58c02826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9f62cd4f2dd5a3fc3e99c60ddd93a540df124e359e3fa96e3b8d97cb41e3f2d6
MD5 eec3508a08017599538da40d122d7640
BLAKE2b-256 92dbb23b0d67c5948da0dff5d3de171838e9129549370d6e547b06d72bd475f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 90a1167dc95cf5272e1cd1e6e851047e1bcbf1e5a96e67896e3f8816c09bf0c9
MD5 4ae4aba03754919b8747e2c324d7c60f
BLAKE2b-256 f3edd24bd88e764c8f10f99417a7287d91b66aa3a30805c6746f17c1837eab44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d20e48a8d5c146e84d06e85a3289ed222b304b9e762588b20347acd078e836e0
MD5 5356ae776434ec5d5ddf69c8e0a0b9a9
BLAKE2b-256 e06ce8047aa234204dff28547916cc76583a871564db102087dc3ee51142c0d9

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d25a164e25e703ac1c74483b741aaedf3fef30589e9ce3bbfc51a26f24addb79
MD5 eec868aac8f8c90710878d905d7de9c9
BLAKE2b-256 a817151219843ece39b8af67dfc989da947ca74df86438e0c8a6a1a38addd542

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce215ba99cd952bf94c403bf2b28c8856e73bdaa660f6f12c105dcecc92f0db0
MD5 70ff9ade959e8353550525030cb1e290
BLAKE2b-256 364333bdca32f8387beeabe97b4ad1fba4690a2096330b00fbe109179b14baff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dfbefd7acaa76cacfcf1b92a95986b78dffa9783cf91099e4ce11ec6b4f6cb2
MD5 fb8584c61cd0628e9efbea5a214835ab
BLAKE2b-256 0f117832cdc4ce87473da0a0a081b5ce06758c3dc26ca584103c1f13ae8f7641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7298312afdb480bf152ca8851040308644a96c694de83a6cebc9e2137d72e75
MD5 61a31310e035c7d253585d1f724ed2aa
BLAKE2b-256 fa16fdb3e5d31a8b959109fc489fdc91d5f0b267775a0dcd3149c5dcddd84cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ae8882a6ab97761afecadf31adde1bb14ccd2d8e1a7663469ec56b30ce2d3458
MD5 7803dd41c0e45220d31064ce7f870f60
BLAKE2b-256 4a8529ad3c4aa86fdbc666ae1caef5edef939244b3dc65369e9c6348514a3a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f73af1e2cb7cabbf0e26c4dc87a58f6e47d8179ce0de82457b73a3e96a66cbf3
MD5 18b45a0ddca5b3eba486534e161ab6ff
BLAKE2b-256 a0ecb4dfa7aafe992c011e2248928ab128935d2d7bf8fe4fdc0da946853b642b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 00b0a99aacea60f7348a742193b5254d5b0ac1172e766b40e6fa24102a1d8840
MD5 768a61a58301b5a7b5b0a523fcc76ad5
BLAKE2b-256 45df8adde8036bbff3904d880eff3336362faa1aa917ca580a657e67bef6e861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1add67d2f00844f121e1809059d17e6973f71f3cffb963dfd0036251bb80b97f
MD5 98fb3f5340b8285d8e53f8fb983c3a77
BLAKE2b-256 4c9d51f7bb8f9e70563d517c82fcc002cd44421fb00471ca71263b68822f1456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5ed14467fc3274c5583b5bc9b989f04090dc46ba88580744258b3482e0f8da24
MD5 1ace3e6d2317fdf5fd8d6d970d9bcfef
BLAKE2b-256 0dda78e2b822ca1d1bf7f1ba4816fe129867b9a79629b8f64a4e4faefc026a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cda4d8bdab31d8824db4d0daa3d221d87f0fb5a4b9a9ad0668e052aa3c09aa8a
MD5 d1d69b43d47546702fce6059d3ef23da
BLAKE2b-256 cdabd8e986da44acce2d21a425f6c3d43706dc8f01eacdec338a062809edbf01

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9702b210202a8aff0031f091c4e2a7619561e89730bd3d0174f0862799a4476
MD5 00010fce40d80c135c5938783c943640
BLAKE2b-256 de4afe45835e2f8f63baa1b946646db862aeb394718c8e8595b66cf467481ce5

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.1-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.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0a0e74634c6b6798db5917dba0ad7b98796b688efb45f44117a89dd0e60135d
MD5 e43be77427c4f9e9e8c600c53f3ed837
BLAKE2b-256 9d741d9f81454aeafd19dcf4ab6bbeaad0efab873d24619ce6c0b9c678ea671b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 23247f82634c7b073ce4fd1be5a9d8116cf7a876617b56d2c9d7f56a6b1532d4
MD5 869ed64ae77f57a4278abca2ae77ea80
BLAKE2b-256 82fe66483beab932338b1dd958e624ff4088ac8d60077036bed1752dd506ba0e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page