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.3.tar.gz (89.4 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.3-pp39-pypy39_pp73-win_amd64.whl (87.4 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-0.3.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.0 kB view details)

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

clickhouse_connect-0.3.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (90.8 kB view details)

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

clickhouse_connect-0.3.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (85.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_connect-0.3.3-pp38-pypy38_pp73-win_amd64.whl (87.6 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-0.3.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.0 kB view details)

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

clickhouse_connect-0.3.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (90.8 kB view details)

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

clickhouse_connect-0.3.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (85.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_connect-0.3.3-pp37-pypy37_pp73-win_amd64.whl (87.6 kB view details)

Uploaded PyPyWindows x86-64

clickhouse_connect-0.3.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.0 kB view details)

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

clickhouse_connect-0.3.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (90.8 kB view details)

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

clickhouse_connect-0.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (85.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

clickhouse_connect-0.3.3-cp311-cp311-win_amd64.whl (89.3 kB view details)

Uploaded CPython 3.11Windows x86-64

clickhouse_connect-0.3.3-cp311-cp311-win32.whl (87.4 kB view details)

Uploaded CPython 3.11Windows x86

clickhouse_connect-0.3.3-cp311-cp311-musllinux_1_1_x86_64.whl (184.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

clickhouse_connect-0.3.3-cp311-cp311-musllinux_1_1_i686.whl (181.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

clickhouse_connect-0.3.3-cp311-cp311-musllinux_1_1_aarch64.whl (181.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

clickhouse_connect-0.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (181.5 kB view details)

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

clickhouse_connect-0.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (177.8 kB view details)

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

clickhouse_connect-0.3.3-cp311-cp311-macosx_11_0_arm64.whl (87.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

clickhouse_connect-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl (88.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

clickhouse_connect-0.3.3-cp310-cp310-win_amd64.whl (89.7 kB view details)

Uploaded CPython 3.10Windows x86-64

clickhouse_connect-0.3.3-cp310-cp310-win32.whl (88.0 kB view details)

Uploaded CPython 3.10Windows x86

clickhouse_connect-0.3.3-cp310-cp310-musllinux_1_1_x86_64.whl (190.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

clickhouse_connect-0.3.3-cp310-cp310-musllinux_1_1_i686.whl (192.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

clickhouse_connect-0.3.3-cp310-cp310-musllinux_1_1_aarch64.whl (189.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

clickhouse_connect-0.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (184.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (186.4 kB view details)

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

clickhouse_connect-0.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (189.4 kB view details)

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

clickhouse_connect-0.3.3-cp310-cp310-macosx_11_0_arm64.whl (88.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

clickhouse_connect-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl (88.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

clickhouse_connect-0.3.3-cp39-cp39-win_amd64.whl (90.3 kB view details)

Uploaded CPython 3.9Windows x86-64

clickhouse_connect-0.3.3-cp39-cp39-win32.whl (88.4 kB view details)

Uploaded CPython 3.9Windows x86

clickhouse_connect-0.3.3-cp39-cp39-musllinux_1_1_x86_64.whl (195.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

clickhouse_connect-0.3.3-cp39-cp39-musllinux_1_1_i686.whl (195.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

clickhouse_connect-0.3.3-cp39-cp39-musllinux_1_1_aarch64.whl (195.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

clickhouse_connect-0.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (189.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (191.2 kB view details)

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

clickhouse_connect-0.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (193.8 kB view details)

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

clickhouse_connect-0.3.3-cp39-cp39-macosx_11_0_arm64.whl (88.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

clickhouse_connect-0.3.3-cp39-cp39-macosx_10_9_x86_64.whl (89.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

clickhouse_connect-0.3.3-cp38-cp38-win_amd64.whl (90.4 kB view details)

Uploaded CPython 3.8Windows x86-64

clickhouse_connect-0.3.3-cp38-cp38-win32.whl (88.4 kB view details)

Uploaded CPython 3.8Windows x86

clickhouse_connect-0.3.3-cp38-cp38-musllinux_1_1_x86_64.whl (194.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

clickhouse_connect-0.3.3-cp38-cp38-musllinux_1_1_i686.whl (195.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

clickhouse_connect-0.3.3-cp38-cp38-musllinux_1_1_aarch64.whl (191.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

clickhouse_connect-0.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (190.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (192.3 kB view details)

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

clickhouse_connect-0.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (196.2 kB view details)

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

clickhouse_connect-0.3.3-cp38-cp38-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

clickhouse_connect-0.3.3-cp38-cp38-macosx_10_9_x86_64.whl (89.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

clickhouse_connect-0.3.3-cp37-cp37m-win_amd64.whl (90.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

clickhouse_connect-0.3.3-cp37-cp37m-win32.whl (88.3 kB view details)

Uploaded CPython 3.7mWindows x86

clickhouse_connect-0.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl (183.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

clickhouse_connect-0.3.3-cp37-cp37m-musllinux_1_1_i686.whl (186.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

clickhouse_connect-0.3.3-cp37-cp37m-musllinux_1_1_aarch64.whl (180.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

clickhouse_connect-0.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (177.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

clickhouse_connect-0.3.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (180.3 kB view details)

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

clickhouse_connect-0.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (183.6 kB view details)

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

clickhouse_connect-0.3.3-cp37-cp37m-macosx_10_9_x86_64.whl (89.5 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: clickhouse-connect-0.3.3.tar.gz
  • Upload date:
  • Size: 89.4 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.3.tar.gz
Algorithm Hash digest
SHA256 d9ab64efbc42d59a490781c20781eb3bc0eb75cb9afb0c96c83326ee84f5347a
MD5 65ce3662dfe2f069c4c02c8a2c2dac8b
BLAKE2b-256 648593e307610ef54b7a649df0a74a94716879a65411812ac2a02dab15af583c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 27b6017a78f2344d5ed2d42ff721fd70b1523470336e6d1bc81b01e060e8be0d
MD5 c2fcda8cb9e010753287592fe95f2c67
BLAKE2b-256 d8d3b66ef74b397e7b1c854ca71cd8d17076c39b8a9dd43169a76af5edb190d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 116a3ed45223c01311ad7b6ee1def1e85baca9b44a5d8a243891bbfb414f8a81
MD5 5a0677a1762a7820ae072eb90b466176
BLAKE2b-256 67c68f0e4429d5733ed15764870b113d55e5563e5899452038cab676b18301f3

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28fb62dd30389605fa9f982c2e18e4fd93be4dd4f5d42e5bbfe6ab9a8798bb08
MD5 ffdd88bd5cf0213b62bb32fcab9e1132
BLAKE2b-256 3882a89a341187c4b2351745e861a234cae4e3781d7dcf0b6980f6cdf8a59a34

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 290cb112d6baf94bb5d75d9202d623fe347bfa6d0638532fe232096013594a21
MD5 9e7bcc7c8b75f2bce9e06c1df60f5a6c
BLAKE2b-256 156b7792e1c18e41833806964f76bf691fa82c40969126219546dd0b0f281198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d8e2b069c33b28b32628eec571184d08e7879e371c2d54adb486127e22bd98e
MD5 4d3ead0dcd04316bbbc3e6a96e4fddd8
BLAKE2b-256 2001591f2592793f22190af37b366cde90d53029e7c9dcc897068366d7e367d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2d4a06676a82f88196dd5b592259dc0c1d731bed42d6ea1170065bb91f7561eb
MD5 b965791c203593bfafb31a04ac640393
BLAKE2b-256 b7f4cc01d898f53c7f4fc0ad048d86671194dece9ae45acf708069a59525796b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a213d2e4cf840ab02dc1505f4ad1aabd2f4523d803cab1fb409ae48eff1c2b1
MD5 4ecf545b9f2a9edb2e8710a0394aeea8
BLAKE2b-256 fb9c23da3a413753d2398914af337539d8e312aea843f1a28def316be468178f

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0b7fb73f19c61a9be2f1495cc7d3f5120a9603d7f61881d1808a29c4880d035
MD5 63d66c7b3d71167cee8a088305a3433e
BLAKE2b-256 fae0037c70394405a140cd78ebc0cfff24ae76f520ed8cc443769dd5ae1d91a5

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 861fc64ddfe378e8c79372e942d864a38edae7463c29c46ffa05ebee7a485e83
MD5 457ef93f2e7527b011b3cd700811fbd7
BLAKE2b-256 488a71498201f2cf36e885f078fd20ae7697f4fd169275388144713459e01557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13a1caff459559fcba26ec767c86eb2e148521296326948fd5b83bf4b544bb68
MD5 ea319021a5d00c8be0febb332e020047
BLAKE2b-256 af70214425b2f48e77289abe4e87d381b9b7ea51ec042f764a28ee1e85887d71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d67000632ad7fa3a7babb87b38c994b14af3979da232984dadba385a0cd1b6cd
MD5 2aec0a28c16607351ebbe7225f624f11
BLAKE2b-256 1562a6a6803bba2eba38363c41471f9a01564b26685ed350ca28d2c333219c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c3a2442724a48105bc46ae1163d1677e4b471a6e630bafe798639ebbfc68fa3
MD5 a6a1604b66fd1e56ed4d693caa1a63d4
BLAKE2b-256 697db9b5f832c18e4736b78cac6966ae16143847d5e288f827e8008f189d1658

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be68dcbaf7238178540ed5a506bfd554f3262e16b7ff886254f5e61b77454ad4
MD5 d5e3462eddd7dfe72443a97e9e562555
BLAKE2b-256 47a31c23af35dd4baf5bfdcf5617e29f7f03939f141157607e1941281930ef62

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1887867643ec2f85cdeb801dbfa0e67f658ff58bf816732910c91177c844113b
MD5 64251a8b811e8ad7a81e1579dcf810f8
BLAKE2b-256 89f345d88cc1d504db2c8b03ec87e4b9e80745290db6d983f231d59b588c9f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7416aedd278f8d57aaf194518dbd509a3111d77ce3d7c7491a3d45452ee9da71
MD5 c5c650c04caf7e63c303a03a46c6ca50
BLAKE2b-256 16dbd147f66149efdb3f8926f80a1f1c1e17123dc7982d1c077bd609e8f343c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a6d72998042b415ab8195af5f48e861045e5fa107fd1d7b875f71eb3c0ad5453
MD5 0f44a76624b0fc0450d7fed02fb83ee3
BLAKE2b-256 a8021d13446cd7b3e5b6ad8766ecfdd8a09d40ce964e086dd3eb33ca33a8a12c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ff99ba57a545ed142b77cc66f612a4cb61f72c1f79039a8ed348324fbd2fcbe0
MD5 6016294014c23b249a913c01d6cc44fa
BLAKE2b-256 ab0d78a884eba02e93772f3a70c35ee8997c7a2352c790f6db7a726e56a8de26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b737d76564a3ded6bb11ed0c21d5755d4f1fdab7c1c316f41553113cdf644238
MD5 7ea9f1f90d3ecbda8c666dd041156cee
BLAKE2b-256 81e0ab19f9bd4baf21a44b2fe220f0840f459b3b175da2e38477b5541b20bbca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 81ba9ccc7cd61efb1e538467ac50643d4f48cf8e74398c41f099ec66b1965262
MD5 fe9ebe8a6c609d9de3527626be2e9c33
BLAKE2b-256 113aa97bd75237817e46a8047e8e58d9b74970444c6e99cff6083dc5a1b2ef7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 487dd344ef1258ee5e70bea44da3caca6ea3185efdf038ab3a58717e3677edd8
MD5 c8eef2fe0048da5f6756060456dbbf7e
BLAKE2b-256 6f62b17ca05ab4f2b58565189fee5d6f8704b58a23020ed52c6d2195d8d1643c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 faab4928e28727042f86cf943559251b1bbbaa69b71a37887536ae1259464a59
MD5 859776d0ae1b755923b6e0ed2bba92e6
BLAKE2b-256 bebc4296086cfb57f07635916cd02abde615b5a72a5e609d2caef078a5dd8fbd

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 657cc0c31f09edcf502e554b525aeee3fec57a03e00773c6eeeb5b7a505b00c6
MD5 730a9bbdd35e0181653cd9d8bea5b942
BLAKE2b-256 97437cc7ce04ae4c0e7e3c2c3f62fd75718fbf4d631bc91fcd64a4c73b3e6822

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffcf5182217f53804528cef87226a1acddb04c7b69a04c24b52f73f6f6111751
MD5 9f297a8134383ccf41cd911ba79fcbed
BLAKE2b-256 b54f9a6875c51efa73c29f2c3a011ae27ee205e42a6c88836c11160aa9e4dba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 922fb6697568c77277efea573a0bb5c4159a6772de26233bd578242523f3067b
MD5 ff0de1e44034d3ea0c28a53edb46f847
BLAKE2b-256 2013b7c80405e2555d7bbc599ea20872e51b0f2aed1882ec12e68fda22286e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ca8f6e25d55871e8aad134944de4e9c13c31da94f58bc19056c2413ed66f4fa
MD5 cc9f9c9b8994126d8eab4ad94c6e6afc
BLAKE2b-256 80433d39b88d6f17a94561db7aa25ebfed460dde83edd414f52083e00bbe353d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 791cc4c09f6233eaab844c3d01658b48be8fd6941e53293c1e93f366dcac94e6
MD5 5585e3d2d66c2815386459fff8c771d5
BLAKE2b-256 6b6e39c0af4862a0269bbe735e97c7804022cfa0e61eb213effed5791a3ee322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 559cc9390a0d347fa56199823d28d7b8676d8c45a29fbb3f0b3795b6de787b05
MD5 acb2a5a7c469387ae57471d54af4a5d1
BLAKE2b-256 da0badad312ccd561ea3824a4d83b0823c5954b7dddbede8b19d501043cc709d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c6083cc0104c5d51acaed08445ad0cf9e9a92732ce40cb7fbfb8e517072ad61c
MD5 7fa0fa40b09f0520f295b8206b149b92
BLAKE2b-256 a75dceac06c0d4e694a87598aac0586c1dc4df5bd10921b69c791ca07d8953d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fbf04f1dd06420bd4d89a3e52b741df27370d1399f2a953d9b90c3222bd2ef7c
MD5 cf81904c80ebc85cfc9caf6f1293263f
BLAKE2b-256 e8d3b2564ce946c95b02c61fe9753399ec1ff8cba36cac684ea0b612cf482462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a3eb05a4f67aa8115f7e5a05d4e3fde0f976cfa7215756fa117a014bce75e2ea
MD5 97ce1c187f0085808e792da29c0fa3d8
BLAKE2b-256 23ef0060dcd8964aff5d6307e3547fa49a41d2d1490605569cc17b8de9ff3b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e9876915552da509533c53850e0d1d168bc6ded80bab310bf20f1a234bef87d
MD5 f788002a274c2581dbae5c2fa69ca596
BLAKE2b-256 2a1488eb0812068da9b1e1fc9fbe38c78e89bed5d1ecf8d87647d8fef3489333

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6157318ad8fb656e34e6382764eb40fe367f584ac4d0a713cfde1a55acd900a7
MD5 6ddedaa11f0fc6d566a70d576a06aa72
BLAKE2b-256 18e5d95de8ddab3f25da4dcd32e0b4ab7b7b31cd1e2a5b12129f44ae957bde73

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bfe1436563390e9c854a2ccef454f0c5803516b5c9ff6881e913a0af95ec9e3e
MD5 c5bf2748ac98fa1a1b407f37b32c0014
BLAKE2b-256 9c6d7c1b72e86f31c36747c563c5d2bde83782f505da887dcf2639a7b766c2be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d33f12785fc3e88cb94053ae161219012819dcf3fe3ca2daf987a61f090b7edc
MD5 71da3cb7e4b913fbfdec31155ab3aec7
BLAKE2b-256 a39e12ba2d76669bfbc019f9855f8e14be90608e0245fa8d6e35c99e6d41d2ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba224f7c9973a9f3511852c7cce1559b0358fa23ba82485d50e3f1eda5e8db98
MD5 a87e510f52d55811318bb5b4ee5f30a6
BLAKE2b-256 951d8f3b70c7ee1031e18c43da2e3b872bb3ae9f95f918d36f63211b6d19773e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a4790040dc5350755480030260c8347e60d9f453b22bf56a313d6c0f1c5f412
MD5 856f65b04f27c0859aed7c2b32a278f0
BLAKE2b-256 95fd7d80b2c79256fce26c5c73a126e7bab9d79e30241ec34fb6b703138ae411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fd159c61589f073d987f0e7ab3fc5661feffbd5d90b526590b35ead5b71b818d
MD5 9a90b55a987a777e894696b26d11e203
BLAKE2b-256 279b92a12497d6c20983fa39675575f0bdc555db369d889752feb275247248dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23f277d09eb310e2c2b7fe380cb8eb04920b87ad64a5844c9e9d114ca34debe4
MD5 27f667a507e1136e3dfd9298dff75932
BLAKE2b-256 8408fc157988da6fe00e2c85ffc5e2f746d4ffacf45911886cc7149fc044fc14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d42862e057bd6cc91d9582e4428bd62dded98f7d92f50a89f3f161e2531c1086
MD5 f68f5cf90138d3b85c1693048b36520b
BLAKE2b-256 7b8de04096d473f2ca23d96efe3d71cac14f716085eaa60ce7ee97ade10243c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c946aa5f15a7b04a14ff8bc4a2aa9ddf9e78d75e69d4e8bb0698b56225d72321
MD5 c4d2915be2206ec8b84b34237364ef97
BLAKE2b-256 77cff1ce4223ae8ff0db2f05e9cc977628906687e71ef30c2cd0e317f0b23b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91e6a88f91941067ba4135dc1ecc7021c71aecd9259d55648e9a62b1133ee41a
MD5 91a69b7dc4c5390558c63ff080f97995
BLAKE2b-256 61ba7d8eaf14fb9bb5d766b61166223b77682cca3cb5d612a8fb4ff40832b92f

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da948c422cdb674fa3c31bacf04a72a4ba080fb2fbbd9968798d3934a1b50f48
MD5 29b6a67ca213d78171f68ba3d6536d15
BLAKE2b-256 8902284712ad3b69d517f0ca617aae615375d27718daba2b8fb2313a682516af

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3aa4d6dd2bd2928fd4c90b884ad337193e59c7be1b04d87aec7a5b55f7b6d7ab
MD5 98b31ef9a5d1fa27237e7c9c19edc0f1
BLAKE2b-256 76e0ba37c3d1dd59afa453edcc702d0fcad53f3ad8268e1e236a1c1ec7cf680d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dccf4b1333fa8221cfd778e579fc29029d7203921a57f4a00b1b1aa924d0f99
MD5 65d0d317b73d8e72314ef134db6eabc6
BLAKE2b-256 0e20f02e89bf80c2131334147b0e37af33ebc2443c8c7c9bf899e73a4a02c11e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2deb757543682450dc9048791057b70b3747134367df7905d440528652f8db5d
MD5 c4d70e75a3908376f917a2ce3d6d77d1
BLAKE2b-256 e8426746690692602daa45345a95cbb9d436a39590a6cd5ddb7af075d39cda8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f227fed88fda065660f7d5f180789c3b6d3d81e7b86420c224e7ea06f676f2f9
MD5 ea23ca3d950df8a9dbbfe3c80ad5c478
BLAKE2b-256 d431b39e8ab5ec673e93b0d33da4976f0d2f48d0531d617859fbb67fc5a133ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d6e00046ba4bfb270b71cf8fe416873103e4e44b312fda98a036a6bbaddc42a8
MD5 64e73d781316d03641d9dacb2e2b7a8e
BLAKE2b-256 c0544cf0bc226dc0226ae6702cf2192238ffe57bdc81b18ef8aba43590c5f2f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95416eb96320cd226ab673287486b045e09fdda1a875aff78847262bbc81995b
MD5 f1b7e2b8f1ab21a7014f0a24f7a2eb29
BLAKE2b-256 86bf2fb6ac9e36203ac8ac57031523257cfdd5632b6d94aa87729e60228e1a85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6174b433e8032591e6a80a440cd96f65c4a215ce11d032af096982b48cd2fffc
MD5 fce1d21ca557e19020ed3e6ebd9c80cc
BLAKE2b-256 3aa010b138f757d7b187d15c901f5fb95e18572462d249986af4df52b35d438d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d81bb92f6e0407515ca8429f930909ad76ae2577737e29af87dda9dc8047dda1
MD5 b27b1f491b1ac12dc8208a5e0a838681
BLAKE2b-256 70ab06040230ae0cb87b0880701e8c9c8c1f5a59a09941eccfed9f4945bb920a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a297df73fd3c0d84a87779d8136d166732c915f5ffee6c711e699cdab4057be6
MD5 901597599a7d4ab30c6b777d02cfb23f
BLAKE2b-256 3df27ef458491dd40684455901798f353b7528f42ce4c0071778d00066f2ddcb

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c92743a019b21a3fc9f39a19148cfdc1e6e8f0a79eedf0d2acd4ff52d1e741b
MD5 4bba82a8ee3f96b2bc630015ec77cd79
BLAKE2b-256 fa28791f062796688f86fcffde8711fa103418916e8aad2e35db5f627d40f9ce

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56979304dd6964799f8408e1d78443d19e94a1f28e93d4795d261b81bf590ea2
MD5 1efcab1042cf8dd1e5b0c5f58ffb10cb
BLAKE2b-256 1c5f316ab4aba3c286a8de74b3b83d9528026f7cbc1b7609834b3cb21d48162c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f637b22d1234593cc98a17c91c01fe0a9c6682d7229013599782dee63a013422
MD5 af1075b46d81049e2853b3453cf4600b
BLAKE2b-256 ec2e0c74ee0d59fc1a4f54e718ba761a28955318d70c2476aeeb47037e21a0a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 563b1251b894aa3a750f301e527d43432a8bec6fa797194cd6f3922add82b51d
MD5 7534623ac9e01f657fd7d902a10449f9
BLAKE2b-256 a190172646d25a8e33e18d09d818c08391e377c601ae9f7d3aafe4933eb34425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a3690fde2874aaa634f0715115b0e2a22b3f22d8812000accdeb9981028d112c
MD5 335821451098b1d541868aa84f6c93a3
BLAKE2b-256 bc5003038618bedb00a8122891bbdf6f7e892613275361f25080f536e007ec02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8587603d960ad17f4cdb94ea77502167f95d8a66f01eafd5f2ab3da2f9dac103
MD5 9e6c2f34bb8ad722660bbad4b2f6e977
BLAKE2b-256 abb538736bd7f825610153ed652a408d8717e0f57feeeb55b2b40145c20524cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b7fa74a775f0abaae3819e2fb7c788cca01065f1cbef7d63637e2a785e7e6343
MD5 55db8433360846afb355786a5aed8991
BLAKE2b-256 2e935da4ec7c461af66e0953e118d32ba668d1ae0b7cb5d6791316a904f684bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c815fae830b09b62055b85d03b4edb7fc20dc485eb3572861f064c8233362c34
MD5 9a83aa7d11a05c3d226ce47ee581ef18
BLAKE2b-256 6aef87b38fdd3b406f01741e946c4ab6abbaeda2c8e95dc59f5cca5fe4ed9e42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9c57b75abed19833ccfe548de258152600e4e50b4b8cbfaba3eef137dbf63ecf
MD5 f1ad41488ce4d1105b4fadebd7dfce4d
BLAKE2b-256 67089ca561a08c40932c261cf2af01b5b217a4ceb55c834f6d9679fa9924d3e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9b5785d06b52cdd7aed769d388cf2ff0e5a6701283c4bb9e04f5c2cdbc8012c
MD5 6d2d67cd02fa145a87e8d1174b2888bf
BLAKE2b-256 e7b62b5e584fe7946e9ad6b2d4b6ae77033fc8da80192362e84a697a0c14bc9b

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 199a9c2313c840568c89fdfdfb92d5814bd4511d19db83a52676d2f6003052f6
MD5 84f7968277d638134febf6c4deb9a258
BLAKE2b-256 be1df0917840641dee1148968c5e27ea29aa92aff2838ea6589ef2503a7689bd

See more details on using hashes here.

File details

Details for the file clickhouse_connect-0.3.3-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.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 51d878764dbc4941450d00792d8d6178ebfc1ff213776bfc25fcf0694610cff9
MD5 104e482214a4b65a8ab4d11d3f8e18bc
BLAKE2b-256 01b2c6c5d6073019a306afd9a9d5c703a26fab0a040e4bc89d477e06d27c2eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.3.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa544709d9b6ab14742a25c7d06d70b61dbd9d4f26b42500c337af7024e49c3d
MD5 b89ab55265c0db4d6b040779170e2688
BLAKE2b-256 0f48e2190e44aa50aba0f89cda54cc540d4a43ceda57d6f89ca8f2d9916eefac

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