Skip to main content

ClickHouse core driver, SqlAlchemy, and Superset libraries

Project description

ClickHouse Connect

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

Installation

pip install clickhouse-connect

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

Getting Started

Basic query:

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

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

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

Bulk insert of a matrix of rows and columns.

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

Minimal SQLAlchemy Support

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

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

Superset Support

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

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

Optional Features

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

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

Tests

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

Main Client Interface

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

HTTP Client constructor/initialization parameters

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

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

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

Querying data

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

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

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

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

Numpy and Pandas queries

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

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

Datatype options for queries

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

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

Inserting data

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

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

Notes on data inserts

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

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

DDL and other "simple" SQL statements

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

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

clickhouse_connect-0.2.9-cp39-cp39-musllinux_1_1_x86_64.whl (198.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ i686

clickhouse_connect-0.2.9-cp39-cp39-musllinux_1_1_aarch64.whl (198.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

clickhouse_connect-0.2.9-cp38-cp38-musllinux_1_1_i686.whl (198.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

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

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

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

clickhouse_connect-0.2.9-cp38-cp38-macosx_11_0_arm64.whl (91.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for clickhouse-connect-0.2.9.tar.gz
Algorithm Hash digest
SHA256 b6f673c654d5065466fe949305deb16fef54fef0c6117dc855e750215ade48a2
MD5 976b8ac5922d6ffe356cc7664a7d5fff
BLAKE2b-256 74c11394d6ad8a226c0981dd7c46531ea9a98ecd17d4b187319819c1fdb4de2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c855d16fb827df70f517533fcacda98e9dbb48b7945c73eb1dc993a3c423518a
MD5 1a5ab6d482c552559e5316d2587c84a8
BLAKE2b-256 5311e2781b9f2f25a216b0abe344a309085bf17a349528d2734a71879977da6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a59de9bbeba8ad98c081f37d1a6d1796af5a20d3c8d1dc6ee9d8240ff3dd7403
MD5 c330215621f59d3b1e6d6d41be23b616
BLAKE2b-256 3c86a1e4c75174dee42481ebff6fa7810cc7d8da5c47de27099b678cf529741c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b2d68d7c9f5437589c8a2473927d551fd047af9be2566b100229ca48525a2d4
MD5 e375ddcdceea16a1fffd38709e45217c
BLAKE2b-256 bf0ac78ff9db014acf34be70eece6f7e895a267c0d4b62e880737ceb6650cbcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30ee6a03ad392bcd8d4f4b75f4b643e5757b12729eb26eb476d68fea768cbdf2
MD5 ff079b1c5df37e937a601f9b2124ec7f
BLAKE2b-256 27dd2b8d4f59fa11f1c0692f35dad8ba0edc94afc7b157727af67681f8329df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3201eb217a78db00671ee332ac8898f0c5f6934b9633d2dc0bbf6f0f6408e08f
MD5 3919aec6b80aac6f8a211eae9f283769
BLAKE2b-256 1763c4f108a0c4a98b99f04807cfb6b7725e8ca705eaf8c90ab15ff43ba40bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 300782682169b231b26ae3d9a7a8d32325a7a990a951ca133cbe591c1fa32de0
MD5 6cc20df6ef4b2b3ee1a664948f61fe1c
BLAKE2b-256 6ee09487ec8af463131b2317d92fffd164dba1a6077d9bdfd43f8bfc508fdcb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d32d4727ef402cdeb0e2774b8262175cd3bbc913e90aafa323639966e4ff420
MD5 d40ec1a6bcd657c872dcc774cb2fcf49
BLAKE2b-256 0bf96cbf0468a2a61ebe9849017b5e158177240171a9ebc4747c122c436264dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0313c53c1a837d39088416c8e7b48a5bafc54afcf12b74771f871d9284eea4cd
MD5 05607cc183b3465299eb9dd30e119907
BLAKE2b-256 b0e5b75cf84e0aa214ef55e27685762e6649768fec1a015134b29dae0a371289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0847b1ef566481f2ae76e40009c5bb0dfc1ffe3d1453732b8d7dd2d9175dd6bb
MD5 6b0bb17139079a0fd554f59862f29eea
BLAKE2b-256 acf5991a5e803e970079fd000ed38ecc52b1c328dec84066e6930ce5f13660e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9ddc949db81ab414b8e948895a9a34d40859e386f92463864b00e1a8c3b915b
MD5 fdc32d17bb7683e7e8510f217890839f
BLAKE2b-256 d608787b6f27f0871be44e1a2ad3798a2d4998526df577b2850cf20d745225ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7655b3ca99a45cce23bee73f07f1270f99e5d1199cf5df02f5dd7d4b0a107064
MD5 d2ea5b501a2c4dd3739b9d7e0219d8f7
BLAKE2b-256 7327250c65c771e6f000e924cef74af07435458b319a1d1902ff4de360fe07c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e29081138f0be2226b88358620fd329c4cfdec196efcbd81ef9cb98aa1e9386
MD5 45da23ffeb4cc2efb306a646c43e0aa7
BLAKE2b-256 309b8312b981420e3f40d845dc682f592a867a422d16f37f8dadfbbf10300a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0bbfb2be1535f5d02b353c3a888a33296b503d04b2d0b34e9a7c04243c1247f
MD5 67e92c367502d7237c6b5d6f637b93d7
BLAKE2b-256 81cf3e6e219eb3e9627f58b10f010cf9c55fba76f1525979047c229584106554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd48cd17866192855318cc49da48c234f954ffffb7cb117454cb38f39e9b85e9
MD5 d0452f50f063a0b601b2a8f53cc05114
BLAKE2b-256 230b0c4f557ab589e2a4377445048971e160f5f24ff31027047b2ecafc46bdc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e951277ec2f607e80aca10b3fbe7c7fb14086674308559aa93a27d4190840d9d
MD5 c1cb3286ccc9b38d173e405566e7279f
BLAKE2b-256 a77b7eebd7a5c79d88382781fbda464fc1390328591a70cebe46d9d80252de44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 51c84146467fd7411a0e7e1089ff02b72088706d53c105f115fed836c5f5acca
MD5 8610a674865874713a6d8d888ee5d10b
BLAKE2b-256 2f4ff07428b43fe76aa9996053bd6d67f614972564599b25c4c65f886c4095ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dfe7739a2d6798dc4eb3d869c50c4a2c03e335ff77fac6f034af0a6346263ea7
MD5 070c8e6f0936021898bcdbcc27f5eb64
BLAKE2b-256 8bb670743f46cc7237edf21e167d36fcf7f83b1dcb04050852c119fbf7f80e4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 30bccf58089a2b0cdfce3622518b97a26c655daa48699906851dfc71b37ead24
MD5 c55dddd101a3c3310c1086e85ed78a89
BLAKE2b-256 e976fef7e7c6673b02cfd2b484bf818ca82861edc7f0de1a88937f95e05de52e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5dded4b55d0a10e904965f7a939e9ed4e0adf6803b9887b905e0d81ebef4bae7
MD5 8d8bb2e420cfee0d14011b0fb92b4793
BLAKE2b-256 5e003fc23f9f594229499ec88b8b40376e7e9aeeffed7387dff5f5c672a852a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c208b94f4b16f72de752bfa8d43fee26228b2301a4e2e03c009b929aa26afa2f
MD5 08cb7bb1f9e90b69a0021939892125d0
BLAKE2b-256 e8f3ba77cc07886237974717921c35c48e610b64e9ca8a26c7d5c04a84247f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fca397fcf5624e9a54f5931dcc07520e2fdb198462a2263e8be2bbc6423b445
MD5 f9839f40305f80a73bca79672b7b3cf8
BLAKE2b-256 081a3bbdcb1bc80ff0c7ea8e28c40696963208f74458d2fcdf3515be60db97f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e27ba01c938fce489d4a8f3fed4ecbc6ec1ef82f3564eb9e444c0214f96f38d0
MD5 b9735109d9f6e80f82c304cd57cf56ef
BLAKE2b-256 549591ab9de85ba12b6dd2c28942cb3b7ab4746dc0c2a8a2610da473147554a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 333159daac779fdda801d49fd2b2d4235539fe939865bafed2360fec56ced5d9
MD5 8b40b42e37a22db89dfc4f8a5b7aee84
BLAKE2b-256 00a8b74994aaf798d4203a6f221de307c185fda97986d83fb68177d0a650784f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51c646464e9d62107bff86efaa297f388bdf6b5689a79203090dbb2cb4e19bf3
MD5 bb584fb0f7acb3772563939fa23d1b16
BLAKE2b-256 6be0094281637889099cf325d9d1185c28836bc06f2e67d93747a754b6b2910c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56490e383cd52e8fbef233ae7f0f3f19637e24dd817416a526801d7a71079b41
MD5 77f4e5169c9e1c04ace9882aa74808f9
BLAKE2b-256 d9469b035e8e0314c00b77fe74d119ce5965d31c8a97a45911581b3bcae1e650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 11e2379a357a67e6805126a2ebc3117387e7fe97c10c8c0ad182b20deeafe0ec
MD5 2e4ad75f98872e9564b3b87927efe13e
BLAKE2b-256 2255fd8afbbcbfaafee43ac408398415233d04fe4862848905027a4c30714754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0f9bb34505c8c718cb6d0efd4c737b6c2664f41b1ea7d5f6ffe92fe40149fcc0
MD5 c118bb65da4487a130aa7dd861b4bd50
BLAKE2b-256 6aa292ceb9fb501146796a1beac13440d04cf2afe846c3c3ea775db63b522c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a44621411e3bb45d18cbe0d1523e2482e282a596461736d0052411f56fdd7626
MD5 7fa0ca4912aadd082bebb22cae607d63
BLAKE2b-256 f4e524e40f72d1fd8d6cbd70ef4e2a4314e0d1406de5973e043ffb963719607d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c2e59f1e627d83e0e8f86cccee9017f2b8d609e0f24ae1cf5475dc051d8eda19
MD5 243ff0b3dc88951888618801ad9f88a1
BLAKE2b-256 92f5f1234129e49a40a4e87a0924a5c0d2c5c34b2200675caff1dd53212b4943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 32acd6d0b0d274f1b043ad7dfe6c1f05221857a3d185f1a58c2e532f4e21d53c
MD5 f0447c722d03d5b3684c9960e1d7d440
BLAKE2b-256 5418c64869d6361dc3c54cab2ce8a1bc15bf536674096831e62094c5ebad2c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b3011304aa39edd083ce91550dfb94d01cbf4edaa1f93f850a6c6919d169496
MD5 40c70b548096fbd457a3fc10e0522521
BLAKE2b-256 89642ac20ea286214c0cce23e4ea896298b1bf7b843d70b02c4be905e73e0a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ed31a0832a8eab99c0b01bc6d40385cb957523fbb5c89293b7c190f0e16ee83
MD5 54c6e49fc449200d6ce9c05a9a874513
BLAKE2b-256 a86a2923117c07a735464f0fc4d497b53f53e9c0ad5819af049a3150f2a962f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83bb4e5201b68d4f9632df28896fd16264056d44e3396ed84e572a36ba002e9a
MD5 75331b521b0c587ec7011eb880e76a2f
BLAKE2b-256 65bdd9692f58ad7a3a14088643a397c74a6c6e973516a92ceb9e1d47b066962c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4996043a6c95225f83b96e5720ff1e88bddcd8571c86bed3839e3c18da3646e
MD5 a7f92c9b560f8954c0cc6d0320bad62b
BLAKE2b-256 3f724cbb145873792dca2f74d060f276412dfad6792da64ed99dc5ff2cdaedb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f6adeda29440c91fb5bf3906c85282bfe533f7ee2d89a07468305feed25fe68
MD5 ef578ef1dcb98397c84ac4d33dd10514
BLAKE2b-256 94861ff4812dea9c79d1e6fadaa5ce0192d37b43d6098c031993a0112a6a84ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d3c45c6bd1e685cfacba1a65b9e508af8f6a81690e88fdd73a7a3a16e40a634b
MD5 aee67b05f0254ca36c94b8e8f39a7c16
BLAKE2b-256 14279eef2cf3a6f80c85c5fbdf7a7c8b26321e179d3a15e9a038a1dd939bf7f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c3f64fdb23bf89047b1992b0d82a8a88f0167fba348e143ad57bfa83dd83891c
MD5 20a85224fa36bae440c989dd542b58f0
BLAKE2b-256 2583649ea4b7f51a60510ebd4a67c1dc1c77a6b86f5a2c34cb5e739618dd7b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ed70a6ee927136dc3b0675ef84927b7763d41978cecbe286cfcb71796ffb0dd9
MD5 6439894e78382c3c1f36b74b8c7dd43e
BLAKE2b-256 ef1a765ca2a6df28d934f24bb8bee5ba39d6b00a1dfa691d2b14a3df62f96bef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 83f6cd5c947d65374ada329287d9153d457f205a4e6e2745a09571916a138387
MD5 380a1a5c901650b334309f9408929d1a
BLAKE2b-256 d74d7d0101bb4bad1a3a2b30b01bf78926151057b57a4d57c319e2f16dacb114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 47ffe9356ea5d753916df1a041da22cb8c1b3d6cefbc4b5d66dba1993cd75201
MD5 702652c2da51315917a61cc2559456c1
BLAKE2b-256 f8fdb955da9eacc9bb2e5e74db4b11aaa706283c682f2e78901f4e98986091c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ba53bae3364315eb0b648ba58caeb831c634cf4e52e366fd637d7d85d1252f3
MD5 91fde64ada4bbe25e6000f48d537117c
BLAKE2b-256 048a39021001aef62272ce2e48300400ba2007b9fb151b8f3890a8734b81d753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b0ebbf0eb46afaed83b23c3b633e91fcee7c1545cb79ddd9335479fb2c5fa62
MD5 f4b220733add05601f25ac57e8ae68ed
BLAKE2b-256 f2979e78a385042b7084dee1c94e5a86b967391af04cb234fa4ee6e741fd82d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4674f56dbc322df6ee1fee1ea72e3a1aa796654185f9efed72f0ae8d37668500
MD5 d0c15fac720b916ce599927a2459d6fe
BLAKE2b-256 c7f6dcbf1ffa28f8ab56803a5172dc34956bc4cac20e3ee405fb2a5093fe0786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a40ca5258fdfc977a701e1d1002ce7a65ce82459430562d1dd7007248111118
MD5 29f577b3d681aa7206e34a19a866fdad
BLAKE2b-256 9f33f1df6bb8c450a8426624390b02eb74ebe3d2a02f9b519e10b9d4bb2b7ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86d81ecd4267ad708ae86535b30593069d7ae53db2daa67b55c04fc0a953652b
MD5 2f0d005519a0f08f5b0da121b1f13a91
BLAKE2b-256 d6f284f5bea63e63e0057b0c0b34d7e03af4301a4b664aadb17b47b97552ee8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 12a0e765c79b8af5248c44db63612a5f746a9f73072f03460ef4f5e8c8f8582a
MD5 a310b33c31635d1ef1eea8529302c740
BLAKE2b-256 9e4e0fdc2498d6cfb8c64cb0379667975a4d0f09bcdef026fae86690aab991fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c507025d24fc0994d5b9065aae08347badbaad60f40e50acba2707cc540e7701
MD5 426c306344d2b31ff8163a505708e8a3
BLAKE2b-256 551fa5b123e1cc05c83b182d72c00b4ab6388cc09d7f6c59ab70b1614e983256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ed83f5f9caf53817756e7c999467a9dcb5db19c88c957d2bfb7edb06d68a42f1
MD5 a13380031418a55dd1efc4732e33fc13
BLAKE2b-256 ad2a722e71e6e823279629f9cdfe292f0e95ab8a315d755136c93902c88dd5fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 26e6f2fea5b07f69f220a8def1fdbc57f1c32d2944f18657dba093eccf345eda
MD5 53dd9027586548e172af1768b846664a
BLAKE2b-256 58e47a761d7f4e81e497d50eb322d2393baf60d789893a588c9c1668bb7c968e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5df5ab0a191192d313270764481c9d83929ca9dc83596eabc3ad56ccb31962fb
MD5 8632e292d4d4c0077c01430c5692d04c
BLAKE2b-256 f51c7509e6aff7ff25e69d0a2be2d1cec1bd0e2c1cb932d8d67264f44836a4d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aed12fb0247f583252f0264c2e087b4eddc450ab9513cc7dc586157abd9af577
MD5 f9a76064e9e17e68fc0f76cea47feafc
BLAKE2b-256 40d00233166dca9d243a4d4932c7359f49d2e4942c43b97d91663a3f1d86f44e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d3573f3ba791fb107427c28168caa296e1f155c2c89676d8234eb42bbe402cf
MD5 228d2a998347b64edd2534d8e27e5fa4
BLAKE2b-256 32696e8e3f0d3f0baaa40f9cf3f61431bffd02bdc9fb8e09f9abb0d5fdcb58e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 406da5d0c49d50f0d5b5b4c3b9323062c1e6cbe99c9f4db1c97c9a29186fc493
MD5 76cf3bebe18bae9817ce1088486f7715
BLAKE2b-256 9528c4a7bdd6bf344e30f614f6a0a740733efaa063b729fe2c3a0c6ff5f6bc3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7b52d56a528ac935d5a58084d1ea6ae937c24852eeef3e79e583eb11e164940
MD5 8373d6bbcefc97a14d69ec9d5014d850
BLAKE2b-256 c11a7de8a35877c71c6930124a8e1b1190eaa28b9e1bac9752afe4478aa7e5d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 487b631fafaeaf1c04aa2af6996a3c70217f1a966b40e11231371dafa56b232c
MD5 e888fe4b19b8d6851834af4a115ecdec
BLAKE2b-256 294f69dc1584f6c76e3cb1a50e6ca0dec69c70214745bd745a689f97f739fd0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c6f06eb239f94f5468f1cd0d517d88606353e965998db38ed127fb2681598e36
MD5 5d20a64c6e8286b4b38dde411e8707a4
BLAKE2b-256 235a7c2688ca6d96ec9d482f31b2206514c0fca4fcf6526db1129b8a7c768e31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 01657e40fcbfa0d110da2bc1ba175a3772d815608e34b91917a6644862072b40
MD5 e2b7f95cbf7a2435eb5af8927ab529db
BLAKE2b-256 4f96dfaafe684e179adfbdf974a06cef8a72800335789bd8b0180ac59684f5e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8925d8ca50c9685e6b2207b2b68a9274e88a08ca95fc83a805b8e189469d53a1
MD5 c06355c224c917d1235547a65a13612e
BLAKE2b-256 26bb3dd7a4699f70cade272e6a290ed5c9dbd22f62cf7e4134a8db49fb49ee5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d4368907c762e30bcaa349951b1e46a8e43c6bff0c7d71d47588e66072bfc1a8
MD5 021c1890063967ca4a360b6c2a2e137e
BLAKE2b-256 d9fa0eebe368d3e83bba6c291165e4eab9def6c713429a1ec82babf10e428c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2369f495fc78caf83432b1a2fa816f344897797f12696dadbb99d0362ec70fad
MD5 7d0260aeffce0091d0b511c60c982843
BLAKE2b-256 bee49663b027daa545a1a2c6815a5b9f5d37bf8c7c38b9f16680d215e23a5b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e9ba4ccaee4bf0047b2e0979bf5e58ce8c2b359d0bc6628674a64a43ecdf3b4
MD5 d37ba807cd649bf4baa97326e947f432
BLAKE2b-256 6e2be52ed7422f192772afbaf31f582ebdaf871084bc748695976e89d65138c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f915d604f010b44270245bf61bfb0d9ea70f7ba5005531977aacd769e56cd59
MD5 1f033568ca17ba255f721f9e807a8184
BLAKE2b-256 7da7a98cbdf7c6169a6d9997d29e852a07ceadc0986ee32fae9b6eb58c5cb366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1f0009c4bcd17ecb5be83e1305abd79e28b0ce6847e2ded6448b518f056324d
MD5 0e7f67f4f9cc7331e61ba45271075253
BLAKE2b-256 6bba43c89d3d10bf63b72c0104d9fae36c570d87fcc8c3ec964e01da80269656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for clickhouse_connect-0.2.9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ac891d4d15ac2d3fcf91fcdb44964c132d2549b6353f1bb203987403ea7a59f
MD5 eb0766516c1ec6dd94dfc5af6fa83e25
BLAKE2b-256 fc9f716cd5164b4266d76ff3de696397c7564fde2263b3f1f3e72377943d8b02

See more details on using hashes here.

Supported by

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