ClickHouse Python Driver
========================
.. image:: https://img.shields.io/pypi/v/clickhouse-driver.svg
:target: https://pypi.org/project/clickhouse-driver
.. image:: https://coveralls.io/repos/github/mymarilyn/clickhouse-driver/badge.svg?branch=master
:target: https://coveralls.io/github/mymarilyn/clickhouse-driver?branch=master
.. image:: https://img.shields.io/pypi/l/clickhouse-driver.svg
:target: https://pypi.org/project/clickhouse-driver
.. image:: https://img.shields.io/pypi/pyversions/clickhouse-driver.svg
:target: https://pypi.org/project/clickhouse-driver
.. image:: https://img.shields.io/pypi/dm/clickhouse-driver.svg
:target: https://pypi.org/project/clickhouse-driver
.. image:: https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml/badge.svg
:target: https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml
ClickHouse Python Driver with native (TCP) interface support.
Asynchronous wrapper is available here: https://github.com/mymarilyn/aioch
Features
========
- External data for query processing.
- Query settings.
- Compression support.
- TLS support.
- Types support:
* Float32/64
* [U]Int8/16/32/64/128/256
* Date/Date32/DateTime('timezone')/DateTime64('timezone')
* String/FixedString(N)
* Enum8/16
* Array(T)
* Nullable(T)
* Bool
* UUID
* Decimal
* IPv4/IPv6
* LowCardinality(T)
* SimpleAggregateFunction(F, T)
* Tuple(T1, T2, ...)
* Nested
* Map(key, value)
- Query progress information.
- Block by block results streaming.
- Reading query profile info.
- Receiving server logs.
- Multiple hosts support.
- Python DB API 2.0 specification support.
- Optional NumPy arrays support.
Documentation
=============
Documentation is available at https://clickhouse-driver.readthedocs.io.
Usage
=====
There are two ways to communicate with server:
- using pure Client;
- using DB API.
Pure Client example:
.. code-block:: python
>>> from clickhouse_driver import Client
>>>
>>> client = Client('localhost')
>>>
>>> client.execute('SHOW TABLES')
[('test',)]
>>> client.execute('DROP TABLE IF EXISTS test')
[]
>>> client.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
[]
>>> client.execute(
... 'INSERT INTO test (x) VALUES',
... [{'x': 100}]
... )
1
>>> client.execute('INSERT INTO test (x) VALUES', [[200]])
1
>>> client.execute(
... 'INSERT INTO test (x) '
... 'SELECT * FROM system.numbers LIMIT %(limit)s',
... {'limit': 3}
... )
[]
>>> client.execute('SELECT sum(x) FROM test')
[(303,)]
DB API example:
.. code-block:: python
>>> from clickhouse_driver import connect
>>>
>>> conn = connect('clickhouse://localhost')
>>> cursor = conn.cursor()
>>>
>>> cursor.execute('SHOW TABLES')
>>> cursor.fetchall()
[('test',)]
>>> cursor.execute('DROP TABLE IF EXISTS test')
>>> cursor.fetchall()
[]
>>> cursor.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
>>> cursor.fetchall()
[]
>>> cursor.executemany(
... 'INSERT INTO test (x) VALUES',
... [{'x': 100}]
... )
>>> cursor.rowcount
1
>>> cursor.executemany('INSERT INTO test (x) VALUES', [[200]])
>>> cursor.rowcount
1
>>> cursor.execute(
... 'INSERT INTO test (x) '
... 'SELECT * FROM system.numbers LIMIT %(limit)s',
... {'limit': 3}
... )
>>> cursor.rowcount
0
>>> cursor.execute('SELECT sum(x) FROM test')
>>> cursor.fetchall()
[(303,)]
License
=======
ClickHouse Python Driver is distributed under the `MIT license
<http://www.opensource.org/licenses/mit-license.php>`_.
Raw data
{
"_id": null,
"home_page": "https://github.com/mymarilyn/clickhouse-driver",
"name": "clickhouse-driver",
"maintainer": null,
"docs_url": null,
"requires_python": "<4,>=3.7",
"maintainer_email": null,
"keywords": "ClickHouse db database cloud analytics",
"author": "Konstantin Lebedev",
"author_email": "kostyan.lebedev@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/bf/0b/3790274f7591fc55b1f91bcc8e576338859cc632b1b17288b5bab79b769d/clickhouse-driver-0.2.9.tar.gz",
"platform": null,
"description": "ClickHouse Python Driver\n========================\n\n.. image:: https://img.shields.io/pypi/v/clickhouse-driver.svg\n :target: https://pypi.org/project/clickhouse-driver\n\n.. image:: https://coveralls.io/repos/github/mymarilyn/clickhouse-driver/badge.svg?branch=master\n :target: https://coveralls.io/github/mymarilyn/clickhouse-driver?branch=master\n\n.. image:: https://img.shields.io/pypi/l/clickhouse-driver.svg\n :target: https://pypi.org/project/clickhouse-driver\n\n.. image:: https://img.shields.io/pypi/pyversions/clickhouse-driver.svg\n :target: https://pypi.org/project/clickhouse-driver\n\n.. image:: https://img.shields.io/pypi/dm/clickhouse-driver.svg\n :target: https://pypi.org/project/clickhouse-driver\n\n.. image:: https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml/badge.svg\n :target: https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml\n\nClickHouse Python Driver with native (TCP) interface support.\n\nAsynchronous wrapper is available here: https://github.com/mymarilyn/aioch\n\nFeatures\n========\n\n- External data for query processing.\n\n- Query settings.\n\n- Compression support.\n\n- TLS support.\n\n- Types support:\n\n * Float32/64\n * [U]Int8/16/32/64/128/256\n * Date/Date32/DateTime('timezone')/DateTime64('timezone')\n * String/FixedString(N)\n * Enum8/16\n * Array(T)\n * Nullable(T)\n * Bool\n * UUID\n * Decimal\n * IPv4/IPv6\n * LowCardinality(T)\n * SimpleAggregateFunction(F, T)\n * Tuple(T1, T2, ...)\n * Nested\n * Map(key, value)\n\n- Query progress information.\n\n- Block by block results streaming.\n\n- Reading query profile info.\n\n- Receiving server logs.\n\n- Multiple hosts support.\n\n- Python DB API 2.0 specification support.\n\n- Optional NumPy arrays support.\n\nDocumentation\n=============\n\nDocumentation is available at https://clickhouse-driver.readthedocs.io.\n\nUsage\n=====\n\nThere are two ways to communicate with server:\n\n- using pure Client;\n- using DB API.\n\nPure Client example:\n\n .. code-block:: python\n\n >>> from clickhouse_driver import Client\n >>>\n >>> client = Client('localhost')\n >>>\n >>> client.execute('SHOW TABLES')\n [('test',)]\n >>> client.execute('DROP TABLE IF EXISTS test')\n []\n >>> client.execute('CREATE TABLE test (x Int32) ENGINE = Memory')\n []\n >>> client.execute(\n ... 'INSERT INTO test (x) VALUES',\n ... [{'x': 100}]\n ... )\n 1\n >>> client.execute('INSERT INTO test (x) VALUES', [[200]])\n 1\n >>> client.execute(\n ... 'INSERT INTO test (x) '\n ... 'SELECT * FROM system.numbers LIMIT %(limit)s',\n ... {'limit': 3}\n ... )\n []\n >>> client.execute('SELECT sum(x) FROM test')\n [(303,)]\n\nDB API example:\n\n .. code-block:: python\n\n >>> from clickhouse_driver import connect\n >>>\n >>> conn = connect('clickhouse://localhost')\n >>> cursor = conn.cursor()\n >>>\n >>> cursor.execute('SHOW TABLES')\n >>> cursor.fetchall()\n [('test',)]\n >>> cursor.execute('DROP TABLE IF EXISTS test')\n >>> cursor.fetchall()\n []\n >>> cursor.execute('CREATE TABLE test (x Int32) ENGINE = Memory')\n >>> cursor.fetchall()\n []\n >>> cursor.executemany(\n ... 'INSERT INTO test (x) VALUES',\n ... [{'x': 100}]\n ... )\n >>> cursor.rowcount\n 1\n >>> cursor.executemany('INSERT INTO test (x) VALUES', [[200]])\n >>> cursor.rowcount\n 1\n >>> cursor.execute(\n ... 'INSERT INTO test (x) '\n ... 'SELECT * FROM system.numbers LIMIT %(limit)s',\n ... {'limit': 3}\n ... )\n >>> cursor.rowcount\n 0\n >>> cursor.execute('SELECT sum(x) FROM test')\n >>> cursor.fetchall()\n [(303,)]\n\nLicense\n=======\n\nClickHouse Python Driver is distributed under the `MIT license\n<http://www.opensource.org/licenses/mit-license.php>`_.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Python driver with native interface for ClickHouse",
"version": "0.2.9",
"project_urls": {
"Changes": "https://github.com/mymarilyn/clickhouse-driver/blob/master/CHANGELOG.md",
"Documentation": "https://clickhouse-driver.readthedocs.io",
"Homepage": "https://github.com/mymarilyn/clickhouse-driver"
},
"split_keywords": [
"clickhouse",
"db",
"database",
"cloud",
"analytics"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "bd0ae5bb8a527f88acc1ee2efca28354cf5eab40e26e974df2221ab27abf9b9a",
"md5": "38ad16e9a99a1ec0b7fb1827f2349d25",
"sha256": "6ce04e9d0d0f39561f312d1ac1a8147bc9206e4267e1a23e20e0423ebac95534"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "38ad16e9a99a1ec0b7fb1827f2349d25",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 219246,
"upload_time": "2024-08-16T18:02:51",
"upload_time_iso_8601": "2024-08-16T18:02:51.067557Z",
"url": "https://files.pythonhosted.org/packages/bd/0a/e5bb8a527f88acc1ee2efca28354cf5eab40e26e974df2221ab27abf9b9a/clickhouse_driver-0.2.9-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1fd8d057e77c8e7f1c739fcb76277edf83a863a259505031a2f8668d5bb2221",
"md5": "c4bb3b378c0c0e28400f8ff6780295a6",
"sha256": "7ae5c8931bf290b9d85582e7955b9aad7f19ff9954e48caa4f9a180ea4d01078"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c4bb3b378c0c0e28400f8ff6780295a6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 215395,
"upload_time": "2024-08-16T18:02:54",
"upload_time_iso_8601": "2024-08-16T18:02:54.249697Z",
"url": "https://files.pythonhosted.org/packages/e1/fd/8d057e77c8e7f1c739fcb76277edf83a863a259505031a2f8668d5bb2221/clickhouse_driver-0.2.9-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e71fa053b0327a8e7cdd3f69e3f01a5683f901e2b1388f057db9d39de86f016",
"md5": "984288ee37075ea3dd08d4fcb95f651b",
"sha256": "3e51792f3bd12c32cb15a907f12de3c9d264843f0bb33dce400e3966c9f09a3f"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "984288ee37075ea3dd08d4fcb95f651b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 923279,
"upload_time": "2024-08-16T18:02:59",
"upload_time_iso_8601": "2024-08-16T18:02:59.010425Z",
"url": "https://files.pythonhosted.org/packages/8e/71/fa053b0327a8e7cdd3f69e3f01a5683f901e2b1388f057db9d39de86f016/clickhouse_driver-0.2.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2a79be2e1a40543959c9c008bf01ae54aef793153eeef9885fca8a16ab677b8",
"md5": "2697dbcf66467173d56cf46132ff3051",
"sha256": "42fc546c31e4a04c97b749769335a679c9044dc693fa7a93e38c97fd6727173d"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2697dbcf66467173d56cf46132ff3051",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 967909,
"upload_time": "2024-08-16T18:03:03",
"upload_time_iso_8601": "2024-08-16T18:03:03.453606Z",
"url": "https://files.pythonhosted.org/packages/a2/a7/9be2e1a40543959c9c008bf01ae54aef793153eeef9885fca8a16ab677b8/clickhouse_driver-0.2.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fec16b320623a30de3b62f37f7aec4d33fc10a09bd095160346abd288a71822",
"md5": "6e39f43680d5f9b424cbf75d406a47b5",
"sha256": "6a383a403d185185c64e49edd6a19b2ec973c5adcb8ebff7ed2fc539a2cc65a5"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6e39f43680d5f9b424cbf75d406a47b5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 965883,
"upload_time": "2024-08-16T18:03:09",
"upload_time_iso_8601": "2024-08-16T18:03:09.093415Z",
"url": "https://files.pythonhosted.org/packages/7f/ec/16b320623a30de3b62f37f7aec4d33fc10a09bd095160346abd288a71822/clickhouse_driver-0.2.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df8b1997d8c3f88127441229c8080b5701e3d8b6ffd591a0890d6c518f8b1355",
"md5": "24260f86b1f41d20b8815082ab29caf5",
"sha256": "f05321a97e816afc75b3e4f9eda989848fecf14ecf1a91d0f22c04258123d1f7"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "24260f86b1f41d20b8815082ab29caf5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 935935,
"upload_time": "2024-08-16T18:03:11",
"upload_time_iso_8601": "2024-08-16T18:03:11.956962Z",
"url": "https://files.pythonhosted.org/packages/df/8b/1997d8c3f88127441229c8080b5701e3d8b6ffd591a0890d6c518f8b1355/clickhouse_driver-0.2.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca601751a1ef2b70026c6c0a5d9b7e31a19bcd54dcc6b245de5d3db2034108cc",
"md5": "114eeb674fa155c4e1051feaa406166f",
"sha256": "be47e793846aac28442b6b1c6554e0731b848a5a7759a54aa2489997354efe4a"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "114eeb674fa155c4e1051feaa406166f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 911710,
"upload_time": "2024-08-16T18:03:14",
"upload_time_iso_8601": "2024-08-16T18:03:14.958925Z",
"url": "https://files.pythonhosted.org/packages/ca/60/1751a1ef2b70026c6c0a5d9b7e31a19bcd54dcc6b245de5d3db2034108cc/clickhouse_driver-0.2.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a8e005697a02f3e388c64c57ae5bddc5deb45f5802d0d62a10c633965a3dad8b",
"md5": "d9a107972925f6f9b6a43e4c388efc41",
"sha256": "780e42a215d1ae2f6d695d74dd6f087781fb2fa51c508b58f79e68c24c5364e0"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "d9a107972925f6f9b6a43e4c388efc41",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 933821,
"upload_time": "2024-08-16T18:03:18",
"upload_time_iso_8601": "2024-08-16T18:03:18.801943Z",
"url": "https://files.pythonhosted.org/packages/a8/e0/05697a02f3e388c64c57ae5bddc5deb45f5802d0d62a10c633965a3dad8b/clickhouse_driver-0.2.9-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e44650ea0e3bfaa587b062a3da60233d061e568b412c21e429a116ce7134023",
"md5": "bd95e6083437d064ce42aaada3388ce6",
"sha256": "9e28f1fe850675e173db586e9f1ac790e8f7edd507a4227cd54cd7445f8e75b6"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "bd95e6083437d064ce42aaada3388ce6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 920276,
"upload_time": "2024-08-16T18:03:23",
"upload_time_iso_8601": "2024-08-16T18:03:23.252106Z",
"url": "https://files.pythonhosted.org/packages/7e/44/650ea0e3bfaa587b062a3da60233d061e568b412c21e429a116ce7134023/clickhouse_driver-0.2.9-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb660991e9f6a14838c900446b258ba55ef47a79bc224bf74c23c92dd157ad7d",
"md5": "11c03514b2aafecca36f50d7aded7165",
"sha256": "125aae7f1308d3083dadbb3c78f828ae492e060f13e4007a0cf53a8169ed7b39"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "11c03514b2aafecca36f50d7aded7165",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 973511,
"upload_time": "2024-08-16T18:03:27",
"upload_time_iso_8601": "2024-08-16T18:03:27.383449Z",
"url": "https://files.pythonhosted.org/packages/fb/66/0991e9f6a14838c900446b258ba55ef47a79bc224bf74c23c92dd157ad7d/clickhouse_driver-0.2.9-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b01733d6f55344093a2b87d05db864df9044e756c13894c19000be3535b062b",
"md5": "7ff8064b64a2edba41e18adf9bcbcbe2",
"sha256": "2f3c4fbb61e75c62a1ab93a1070d362de4cb5682f82833b2c12deccb3bae888d"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "7ff8064b64a2edba41e18adf9bcbcbe2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 980838,
"upload_time": "2024-08-16T18:03:32",
"upload_time_iso_8601": "2024-08-16T18:03:32.828177Z",
"url": "https://files.pythonhosted.org/packages/8b/01/733d6f55344093a2b87d05db864df9044e756c13894c19000be3535b062b/clickhouse_driver-0.2.9-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "630c5dba2a82fe1701c7f0db88a1d7d08134a8c80192f2548871b87c54b066c3",
"md5": "492f83c82db12f9d5b05f0e238d80e1d",
"sha256": "0dc03196a84e32d23b88b665be69afae98f57426f5fdf203e16715b756757961"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "492f83c82db12f9d5b05f0e238d80e1d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 950460,
"upload_time": "2024-08-16T18:03:37",
"upload_time_iso_8601": "2024-08-16T18:03:37.034248Z",
"url": "https://files.pythonhosted.org/packages/63/0c/5dba2a82fe1701c7f0db88a1d7d08134a8c80192f2548871b87c54b066c3/clickhouse_driver-0.2.9-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b2408f1d0afceaf5e2f325d851add6b9f80bd71c6c540dc29a1197d8d37eadb",
"md5": "a331ca6efe17cc6cf97c4f38af30db16",
"sha256": "25695d78a1d7ad6e221e800612eac08559f6182bf6dee0a220d08de7b612d993"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "a331ca6efe17cc6cf97c4f38af30db16",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 198432,
"upload_time": "2024-08-16T18:03:39",
"upload_time_iso_8601": "2024-08-16T18:03:39.119460Z",
"url": "https://files.pythonhosted.org/packages/5b/24/08f1d0afceaf5e2f325d851add6b9f80bd71c6c540dc29a1197d8d37eadb/clickhouse_driver-0.2.9-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "739b6c110f95530c26b9297bf204e487e645c90eb28dd3ca2cf40ac8ae61e4b4",
"md5": "5182f96a85b67d8ff8cf0cb7b1c3939f",
"sha256": "367acac95398d721a0a2a6cf87e93638c5588b79498a9848676ce7f182540a6c"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "5182f96a85b67d8ff8cf0cb7b1c3939f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 213541,
"upload_time": "2024-08-16T18:03:41",
"upload_time_iso_8601": "2024-08-16T18:03:41.141346Z",
"url": "https://files.pythonhosted.org/packages/73/9b/6c110f95530c26b9297bf204e487e645c90eb28dd3ca2cf40ac8ae61e4b4/clickhouse_driver-0.2.9-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53e98bf043fbac34e06eebb7d58647c1a28616bf065cdc3334c8d771902c8902",
"md5": "e41c65111832989922ef5a805099b40a",
"sha256": "5a7353a7a08eee3aa0001d8a5d771cb1f37e2acae1b48178002431f23892121a"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e41c65111832989922ef5a805099b40a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 220413,
"upload_time": "2024-08-16T18:03:43",
"upload_time_iso_8601": "2024-08-16T18:03:43.928462Z",
"url": "https://files.pythonhosted.org/packages/53/e9/8bf043fbac34e06eebb7d58647c1a28616bf065cdc3334c8d771902c8902/clickhouse_driver-0.2.9-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "886de8b534bee11c809f52b1c9d77160da48a3d84c775d7e547a73f2d2ba1f9f",
"md5": "2f0284624d175379e055d69caf1eedcf",
"sha256": "6af1c6cbc3481205503ab72a34aa76d6519249c904aa3f7a84b31e7b435555be"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2f0284624d175379e055d69caf1eedcf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 215881,
"upload_time": "2024-08-16T18:03:46",
"upload_time_iso_8601": "2024-08-16T18:03:46.153747Z",
"url": "https://files.pythonhosted.org/packages/88/6d/e8b534bee11c809f52b1c9d77160da48a3d84c775d7e547a73f2d2ba1f9f/clickhouse_driver-0.2.9-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f05e894f789b47a4deaff0a84b2660323b4b3e692c3ff5cc0783d59a7945b50d",
"md5": "90c2574366a56e8154aebf738ff07578",
"sha256": "48033803abd1100bfff6b9a1769d831b672cd3cda5147e0323b956fd1416d38d"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "90c2574366a56e8154aebf738ff07578",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1015584,
"upload_time": "2024-08-16T18:03:49",
"upload_time_iso_8601": "2024-08-16T18:03:49.407241Z",
"url": "https://files.pythonhosted.org/packages/f0/5e/894f789b47a4deaff0a84b2660323b4b3e692c3ff5cc0783d59a7945b50d/clickhouse_driver-0.2.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab91951e0aa20d110f8d801023fec28c9cbbb0cfa9c596170e732e66bb30bf9d",
"md5": "bcae0ae740021e5dda406a637d4f1ae8",
"sha256": "1f202a58a540c85e47c31dabc8f84b6fe79dca5315c866450a538d58d6fa0571"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bcae0ae740021e5dda406a637d4f1ae8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1058755,
"upload_time": "2024-08-16T18:03:53",
"upload_time_iso_8601": "2024-08-16T18:03:53.236045Z",
"url": "https://files.pythonhosted.org/packages/ab/91/951e0aa20d110f8d801023fec28c9cbbb0cfa9c596170e732e66bb30bf9d/clickhouse_driver-0.2.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a252ff96df78d078150e5bc01307657a21b8bd29f040c11bffed7841228eabe",
"md5": "0c18acd43ded608654441df23d940f0a",
"sha256": "e4df50fd84bfa4aa1eb7b52d48136066bfb64fabb7ceb62d4c318b45a296200b"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0c18acd43ded608654441df23d940f0a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1058250,
"upload_time": "2024-08-16T18:03:56",
"upload_time_iso_8601": "2024-08-16T18:03:56.978121Z",
"url": "https://files.pythonhosted.org/packages/7a/25/2ff96df78d078150e5bc01307657a21b8bd29f040c11bffed7841228eabe/clickhouse_driver-0.2.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7081b08d596dab964bd306a45d4d3fe84c1740888d5a392374621a5fac8f186",
"md5": "ae8b6cd773a76ed40f361fb41693a08f",
"sha256": "433a650571a0d7766eb6f402e8f5930222997686c2ee01ded22f1d8fd46af9d4"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ae8b6cd773a76ed40f361fb41693a08f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1026785,
"upload_time": "2024-08-16T18:03:59",
"upload_time_iso_8601": "2024-08-16T18:03:59.999888Z",
"url": "https://files.pythonhosted.org/packages/f7/08/1b08d596dab964bd306a45d4d3fe84c1740888d5a392374621a5fac8f186/clickhouse_driver-0.2.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e348b34c729719617373f645ad4cdff38ff7f7903b417208ad97859407edb3f",
"md5": "3004d73c2161b9606c452db84ee2d928",
"sha256": "232ee260475611cbf7adb554b81db6b5790b36e634fe2164f4ffcd2ca3e63a71"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3004d73c2161b9606c452db84ee2d928",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 988253,
"upload_time": "2024-08-16T18:04:03",
"upload_time_iso_8601": "2024-08-16T18:04:03.145478Z",
"url": "https://files.pythonhosted.org/packages/8e/34/8b34c729719617373f645ad4cdff38ff7f7903b417208ad97859407edb3f/clickhouse_driver-0.2.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f0b0d36ec521179b7d2966831ae875e2049800c653d6a6697e96c3143e09b66c",
"md5": "1d7c88804af1bccc9bee1a907be50989",
"sha256": "09049f7e71f15c9c9a03f597f77fc1f7b61ababd155c06c0d9e64d1453d945d7"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "1d7c88804af1bccc9bee1a907be50989",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1016946,
"upload_time": "2024-08-16T18:04:06",
"upload_time_iso_8601": "2024-08-16T18:04:06.418778Z",
"url": "https://files.pythonhosted.org/packages/f0/b0/d36ec521179b7d2966831ae875e2049800c653d6a6697e96c3143e09b66c/clickhouse_driver-0.2.9-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0f9074e9cc608a9c0aca8fc58e3fa1dc5f8dda4e0c00bd3d4be8c9abd31a4e54",
"md5": "b320cf3a62435d6e51d6cd1de2beeee2",
"sha256": "424153d1d5f5a807f596a48cc88119f9fb3213ca7e38f57b8d15dcc964dd91f7"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "b320cf3a62435d6e51d6cd1de2beeee2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 993030,
"upload_time": "2024-08-16T18:04:10",
"upload_time_iso_8601": "2024-08-16T18:04:10.521596Z",
"url": "https://files.pythonhosted.org/packages/0f/90/74e9cc608a9c0aca8fc58e3fa1dc5f8dda4e0c00bd3d4be8c9abd31a4e54/clickhouse_driver-0.2.9-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29b57831b1eefb8450e12b263cc8d9e60615e361d698485ffc66fd8704145381",
"md5": "b8b6da04c0e74d48053655c9bf83e423",
"sha256": "4f078fd1cf19c4ca63b8d1e0803df665310c8d5b644c5b02bf2465e8d6ef8f55"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "b8b6da04c0e74d48053655c9bf83e423",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1053397,
"upload_time": "2024-08-16T18:04:13",
"upload_time_iso_8601": "2024-08-16T18:04:13.313114Z",
"url": "https://files.pythonhosted.org/packages/29/b5/7831b1eefb8450e12b263cc8d9e60615e361d698485ffc66fd8704145381/clickhouse_driver-0.2.9-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcd24c2206105f7e8d5a06b1aea6ea345fadf42d299f0b642b89b86c3be8b726",
"md5": "e120884dbe29e569cf367f4cfc2d5212",
"sha256": "f138d939e26e767537f891170b69a55a88038919f5c10d8865b67b8777fe4848"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "e120884dbe29e569cf367f4cfc2d5212",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1061742,
"upload_time": "2024-08-16T18:04:16",
"upload_time_iso_8601": "2024-08-16T18:04:16.416474Z",
"url": "https://files.pythonhosted.org/packages/fc/d2/4c2206105f7e8d5a06b1aea6ea345fadf42d299f0b642b89b86c3be8b726/clickhouse_driver-0.2.9-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "101c0951208141bb26681c06ea0c84a0fe5e4374b1560c38abe8b5f93da6bbb5",
"md5": "da2082fdb7756ff000829f43ce873a87",
"sha256": "9aafabc7e32942f85dcb46f007f447ab69024831575df97cae28c6ed127654d1"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "da2082fdb7756ff000829f43ce873a87",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1031183,
"upload_time": "2024-08-16T18:04:19",
"upload_time_iso_8601": "2024-08-16T18:04:19.368770Z",
"url": "https://files.pythonhosted.org/packages/10/1c/0951208141bb26681c06ea0c84a0fe5e4374b1560c38abe8b5f93da6bbb5/clickhouse_driver-0.2.9-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "23942e533b5638fddb6abfb3f3de41f9938445661aae781209c5d6634d53b40f",
"md5": "e2f5183ff6c1ee2c7c3b15973963c7c7",
"sha256": "935e16ebf1a1998d8493979d858821a755503c9b8af572d9c450173d4b88868c"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "e2f5183ff6c1ee2c7c3b15973963c7c7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 198031,
"upload_time": "2024-08-16T18:04:21",
"upload_time_iso_8601": "2024-08-16T18:04:21.313151Z",
"url": "https://files.pythonhosted.org/packages/23/94/2e533b5638fddb6abfb3f3de41f9938445661aae781209c5d6634d53b40f/clickhouse_driver-0.2.9-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4587163e4469d298d5f74a61328a129494c84404932ae25d7c585b172609def7",
"md5": "06d3dd82ab8d426b43068cfe29d84fc8",
"sha256": "306b3102cba278b5dfec6f5f7dc8b78416c403901510475c74913345b56c9e42"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "06d3dd82ab8d426b43068cfe29d84fc8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 213510,
"upload_time": "2024-08-16T18:04:23",
"upload_time_iso_8601": "2024-08-16T18:04:23.639468Z",
"url": "https://files.pythonhosted.org/packages/45/87/163e4469d298d5f74a61328a129494c84404932ae25d7c585b172609def7/clickhouse_driver-0.2.9-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6058acc74be412330aa4d681df2d13e013e84e27cc767dea73a507cb71c74cff",
"md5": "299bd6ea3559f217f4c9f86d156e7933",
"sha256": "fcb2fd00e58650ae206a6d5dbc83117240e622471aa5124733fbf2805eb8bda0"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "299bd6ea3559f217f4c9f86d156e7933",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 221487,
"upload_time": "2024-08-16T18:04:25",
"upload_time_iso_8601": "2024-08-16T18:04:25.610706Z",
"url": "https://files.pythonhosted.org/packages/60/58/acc74be412330aa4d681df2d13e013e84e27cc767dea73a507cb71c74cff/clickhouse_driver-0.2.9-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5bc09b69a1be0155e02a0df9ecafb63c9a2f7d9e412c865dd3c711e07967e85",
"md5": "9aa366f34a6c1e7624cb3cc701a82895",
"sha256": "b7a3e6b0a1eb218e3d870a94c76daaf65da46dca8f6888ea6542f94905c24d88"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9aa366f34a6c1e7624cb3cc701a82895",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 217362,
"upload_time": "2024-08-16T18:04:27",
"upload_time_iso_8601": "2024-08-16T18:04:27.565315Z",
"url": "https://files.pythonhosted.org/packages/f5/bc/09b69a1be0155e02a0df9ecafb63c9a2f7d9e412c865dd3c711e07967e85/clickhouse_driver-0.2.9-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed5879eadc238d6ee0d7920ae36f0ea3a6479a8310bffb6c97ea6aa060a98434",
"md5": "934efe1d5700806e9e1725244b5b3144",
"sha256": "4a8d8e2888a857d8db3d98765a5ad23ab561241feaef68bbffc5a0bd9c142342"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "934efe1d5700806e9e1725244b5b3144",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1018173,
"upload_time": "2024-08-16T18:04:31",
"upload_time_iso_8601": "2024-08-16T18:04:31.052416Z",
"url": "https://files.pythonhosted.org/packages/ed/58/79eadc238d6ee0d7920ae36f0ea3a6479a8310bffb6c97ea6aa060a98434/clickhouse_driver-0.2.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44611647a0d8aae2c4a3d8c3093d1799f943ff38a0cb81d5e4050be18993f3fa",
"md5": "3e4baa85a82556203aaacc389c6592db",
"sha256": "85d50c011467f5ff6772c4059345968b854b72e07a0219030b7c3f68419eb7f7"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3e4baa85a82556203aaacc389c6592db",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1046542,
"upload_time": "2024-08-16T18:04:34",
"upload_time_iso_8601": "2024-08-16T18:04:34.750065Z",
"url": "https://files.pythonhosted.org/packages/44/61/1647a0d8aae2c4a3d8c3093d1799f943ff38a0cb81d5e4050be18993f3fa/clickhouse_driver-0.2.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "772332bab0efeec64d56313b90c73d067440829630f9a5980de73cb52350a4c9",
"md5": "76ec4a2a9cd5e33dce82ba500822d552",
"sha256": "93b395c1370629ccce8fb3e14cd5be2646d227bd32018c21f753c543e9a7e96b"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "76ec4a2a9cd5e33dce82ba500822d552",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1057508,
"upload_time": "2024-08-16T18:04:38",
"upload_time_iso_8601": "2024-08-16T18:04:38.810225Z",
"url": "https://files.pythonhosted.org/packages/77/23/32bab0efeec64d56313b90c73d067440829630f9a5980de73cb52350a4c9/clickhouse_driver-0.2.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "078e9b79fd85d28a9e83b87a8722a8e736d69ef5edde8cee5d1dde6950aa512f",
"md5": "7a026fbcbd5fa99b6a6594cbd2ec0471",
"sha256": "6dbcee870c60d9835e5dce1456ab6b9d807e6669246357f4b321ef747b90fa43"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7a026fbcbd5fa99b6a6594cbd2ec0471",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1032860,
"upload_time": "2024-08-16T18:04:43",
"upload_time_iso_8601": "2024-08-16T18:04:43.152619Z",
"url": "https://files.pythonhosted.org/packages/07/8e/9b79fd85d28a9e83b87a8722a8e736d69ef5edde8cee5d1dde6950aa512f/clickhouse_driver-0.2.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bdca208358dd8d80a25633b5f19a9acadb1fb23b55be7f2123e5e70d132de204",
"md5": "878b280b2adf877a24f1e0b5436e17ea",
"sha256": "fffa5a5f317b1ec92e406a30a008929054cf3164d2324a3c465d0a0330273bf8"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "878b280b2adf877a24f1e0b5436e17ea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 984133,
"upload_time": "2024-08-16T18:04:47",
"upload_time_iso_8601": "2024-08-16T18:04:47.357929Z",
"url": "https://files.pythonhosted.org/packages/bd/ca/208358dd8d80a25633b5f19a9acadb1fb23b55be7f2123e5e70d132de204/clickhouse_driver-0.2.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19e19767cea5bfc9451b7a2680d5b0d4bd3261c56db92002f90ce716209f59c1",
"md5": "97c0c4b3b273f9b2e0605dfbb9b2fa14",
"sha256": "476702740a279744badbd177ae1c4a2d089ec128bd676861219d1f92078e4530"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "97c0c4b3b273f9b2e0605dfbb9b2fa14",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1020897,
"upload_time": "2024-08-16T18:04:50",
"upload_time_iso_8601": "2024-08-16T18:04:50.270482Z",
"url": "https://files.pythonhosted.org/packages/19/e1/9767cea5bfc9451b7a2680d5b0d4bd3261c56db92002f90ce716209f59c1/clickhouse_driver-0.2.9-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5bc62511b61fbee97c8ab1c64ab4bf33045bcc132d236e61a65831c0de32b82",
"md5": "e4e5bf79ed2bd4d33ea17b54731e6fe5",
"sha256": "5cd6d95fab5ff80e9dc9baedc9a926f62f74072d42d5804388d63b63bec0bb63"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "e4e5bf79ed2bd4d33ea17b54731e6fe5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 989911,
"upload_time": "2024-08-16T18:04:53",
"upload_time_iso_8601": "2024-08-16T18:04:53.191308Z",
"url": "https://files.pythonhosted.org/packages/f5/bc/62511b61fbee97c8ab1c64ab4bf33045bcc132d236e61a65831c0de32b82/clickhouse_driver-0.2.9-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0a8e3ff5cbc24dbc087acf0733c47fe7a6a6a2f3225e9c168af2414fb803f3c",
"md5": "c264bb17321ccd663e190696f5c320bb",
"sha256": "05027d32d7cf3e46cb8d04f8c984745ae01bd1bc7b3579f9dadf9b3cca735697"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "c264bb17321ccd663e190696f5c320bb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1045389,
"upload_time": "2024-08-16T18:04:56",
"upload_time_iso_8601": "2024-08-16T18:04:56.183193Z",
"url": "https://files.pythonhosted.org/packages/a0/a8/e3ff5cbc24dbc087acf0733c47fe7a6a6a2f3225e9c168af2414fb803f3c/clickhouse_driver-0.2.9-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d65829f56e340094cfec72080773e3d94c7963c2e69f70edff83f2a139965d38",
"md5": "3e3f645dfafaca597404ff9a5640e66f",
"sha256": "3d11831842250b4c1b26503a6e9c511fc03db096608b7c6af743818c421a3032"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "3e3f645dfafaca597404ff9a5640e66f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1063242,
"upload_time": "2024-08-16T18:04:59",
"upload_time_iso_8601": "2024-08-16T18:04:59.452309Z",
"url": "https://files.pythonhosted.org/packages/d6/58/29f56e340094cfec72080773e3d94c7963c2e69f70edff83f2a139965d38/clickhouse_driver-0.2.9-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff0f161626812ad2bd9480ff390a96489983709d94b33da68f028ace9d1367be",
"md5": "d93d2de6b91e6ce66b8a164a2981ab98",
"sha256": "81b4b671b785ebb0b8aeabf2432e47072413d81db959eb8cfd8b6ab58c5799c6"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d93d2de6b91e6ce66b8a164a2981ab98",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1039703,
"upload_time": "2024-08-16T18:05:03",
"upload_time_iso_8601": "2024-08-16T18:05:03.040890Z",
"url": "https://files.pythonhosted.org/packages/ff/0f/161626812ad2bd9480ff390a96489983709d94b33da68f028ace9d1367be/clickhouse_driver-0.2.9-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a29e353c4e835d722b4f6b259d668c2ac47f35bf6a0053414a80522df649ff5",
"md5": "80423064883f96c9584bccb7f8fa04c9",
"sha256": "e893bd4e014877174a59e032b0e99809c95ec61328a0e6bd9352c74a2f6111a8"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "80423064883f96c9584bccb7f8fa04c9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 198390,
"upload_time": "2024-08-16T18:05:05",
"upload_time_iso_8601": "2024-08-16T18:05:05.175513Z",
"url": "https://files.pythonhosted.org/packages/4a/29/e353c4e835d722b4f6b259d668c2ac47f35bf6a0053414a80522df649ff5/clickhouse_driver-0.2.9-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b09ff81e99e9ecbb85f2ada57a690b1d0cfee6f2e1eff59ee08609a160d5644",
"md5": "c6c342677107af33222896c4b0fa0bd9",
"sha256": "de6624e28eeffd01668803d28ae89e3d4e359b1bff8b60e4933e1cb3c6f86f18"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "c6c342677107af33222896c4b0fa0bd9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 213585,
"upload_time": "2024-08-16T18:05:06",
"upload_time_iso_8601": "2024-08-16T18:05:06.981402Z",
"url": "https://files.pythonhosted.org/packages/5b/09/ff81e99e9ecbb85f2ada57a690b1d0cfee6f2e1eff59ee08609a160d5644/clickhouse_driver-0.2.9-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07c089aeb489281af9680ebe436cc65eb35cb9835a34c786b34b688e8cfba305",
"md5": "affd6153f2f2bfba997c5dd285295279",
"sha256": "909205324089a9ee59bee7ecbfa94595435118cca310fd62efdf13f225aa2965"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "affd6153f2f2bfba997c5dd285295279",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 219707,
"upload_time": "2024-08-16T18:05:09",
"upload_time_iso_8601": "2024-08-16T18:05:09.012660Z",
"url": "https://files.pythonhosted.org/packages/07/c0/89aeb489281af9680ebe436cc65eb35cb9835a34c786b34b688e8cfba305/clickhouse_driver-0.2.9-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "440706dce9dd0b5075c8d5d00e0fac5b325950cd48c0e02e37f6a719ae26a96b",
"md5": "4663f655ab74204b2b22f23796c405bb",
"sha256": "03f31d6e47dc2b0f367f598f5629147ed056d7216c1788e25190fcfbfa02e749"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4663f655ab74204b2b22f23796c405bb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 858629,
"upload_time": "2024-08-16T18:05:12",
"upload_time_iso_8601": "2024-08-16T18:05:12.864906Z",
"url": "https://files.pythonhosted.org/packages/44/07/06dce9dd0b5075c8d5d00e0fac5b325950cd48c0e02e37f6a719ae26a96b/clickhouse_driver-0.2.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9d3254217562d08e03c25bb513beaabf2a7f40421df7318757a85714b8e75311",
"md5": "037fdfb21736e576605a4cceb99e954f",
"sha256": "ed84179914b2b7bb434c2322a6e7fd83daa681c97a050450511b66d917a129bb"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "037fdfb21736e576605a4cceb99e954f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 901646,
"upload_time": "2024-08-16T18:05:15",
"upload_time_iso_8601": "2024-08-16T18:05:15.945601Z",
"url": "https://files.pythonhosted.org/packages/9d/32/54217562d08e03c25bb513beaabf2a7f40421df7318757a85714b8e75311/clickhouse_driver-0.2.9-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "204b6c91db1bf522d1cb29b8d7b80486f8b5259724664d481ff1700a38daa181",
"md5": "6d4b5b096042bb75073cbf332f94a964",
"sha256": "67d1bf63efb4ba14ae6c6da99622e4a549e68fc3ee14d859bf611d8e6a61b3fa"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6d4b5b096042bb75073cbf332f94a964",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 901084,
"upload_time": "2024-08-16T18:05:19",
"upload_time_iso_8601": "2024-08-16T18:05:19.475366Z",
"url": "https://files.pythonhosted.org/packages/20/4b/6c91db1bf522d1cb29b8d7b80486f8b5259724664d481ff1700a38daa181/clickhouse_driver-0.2.9-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4c3e6c8f3b60df52366c396cac1af5de93fc4f35b84e215c59b09cda54f5b5a",
"md5": "ca3a30e10bf472cf90f27c36193cd255",
"sha256": "9eed23ea41dd582d76f7a2ec7e09cbe5e9fec008f11a4799fa35ce44a3ebd283"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ca3a30e10bf472cf90f27c36193cd255",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 871659,
"upload_time": "2024-08-16T18:05:22",
"upload_time_iso_8601": "2024-08-16T18:05:22.415690Z",
"url": "https://files.pythonhosted.org/packages/d4/c3/e6c8f3b60df52366c396cac1af5de93fc4f35b84e215c59b09cda54f5b5a/clickhouse_driver-0.2.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "651fe4841fa1d648124da823e6f10f6f801bd7998722c03bbcb94f4ace608914",
"md5": "783db1779e8f7b22322e5d9bbcb2fecd",
"sha256": "a654291132766efa2703058317749d7c69b69f02d89bac75703eaf7f775e20da"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "783db1779e8f7b22322e5d9bbcb2fecd",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 842373,
"upload_time": "2024-08-16T18:05:25",
"upload_time_iso_8601": "2024-08-16T18:05:25.412743Z",
"url": "https://files.pythonhosted.org/packages/65/1f/e4841fa1d648124da823e6f10f6f801bd7998722c03bbcb94f4ace608914/clickhouse_driver-0.2.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c69b5a23e1039c4691bab0bd638876497f86cc6a9ef14f2c2c2360f0bbc0745",
"md5": "8580a48a1b657cb25f8dee0edb3bdc70",
"sha256": "1c26c5ef16d0ef3cabc5bc03e827e01b0a4afb5b4eaf8850b7cf740cee04a1d4"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "8580a48a1b657cb25f8dee0edb3bdc70",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 868985,
"upload_time": "2024-08-16T18:05:28",
"upload_time_iso_8601": "2024-08-16T18:05:28.769400Z",
"url": "https://files.pythonhosted.org/packages/1c/69/b5a23e1039c4691bab0bd638876497f86cc6a9ef14f2c2c2360f0bbc0745/clickhouse_driver-0.2.9-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e37c665bd858d9e2fefc717b7de1c151823677b10059be4384b55d48149b53e",
"md5": "d3c5a18a9a05b8a79e8a57ae760778c7",
"sha256": "b57e83d7986d3cbda6096974a9510eb53cb33ad9072288c87c820ba5eee3370e"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "d3c5a18a9a05b8a79e8a57ae760778c7",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 852780,
"upload_time": "2024-08-16T18:05:32",
"upload_time_iso_8601": "2024-08-16T18:05:32.833039Z",
"url": "https://files.pythonhosted.org/packages/9e/37/c665bd858d9e2fefc717b7de1c151823677b10059be4384b55d48149b53e/clickhouse_driver-0.2.9-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "65dea19379791584a105a85500b10d64a2163b2cb459ba29acba0020c5e01c88",
"md5": "565cd07d9480d592e9fbf6556cb44d8a",
"sha256": "153cc03b36f22cbde55aa6a5bbe99072a025567a54c48b262eb0da15d8cd7c83"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "565cd07d9480d592e9fbf6556cb44d8a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 898345,
"upload_time": "2024-08-16T18:05:36",
"upload_time_iso_8601": "2024-08-16T18:05:36.790000Z",
"url": "https://files.pythonhosted.org/packages/65/de/a19379791584a105a85500b10d64a2163b2cb459ba29acba0020c5e01c88/clickhouse_driver-0.2.9-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47adb0301cfd9133e99e423ffc4b236236dd5176c212de79cf2954c4dd3110db",
"md5": "7ee3c074c5537309343dda03b53cd976",
"sha256": "83a857d99192936091f495826ae97497cd1873af213b1e069d56369fb182ab8e"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "7ee3c074c5537309343dda03b53cd976",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 908443,
"upload_time": "2024-08-16T18:05:40",
"upload_time_iso_8601": "2024-08-16T18:05:40.181357Z",
"url": "https://files.pythonhosted.org/packages/47/ad/b0301cfd9133e99e423ffc4b236236dd5176c212de79cf2954c4dd3110db/clickhouse_driver-0.2.9-cp37-cp37m-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7e3ab0d29b581515faefc39af08cec1bed98f9c14ca57e06caea8e72fe6780a",
"md5": "dc962f7258f2ff6842a2d92f69fdf779",
"sha256": "bb05a9bb22cbe9ad187ad268f86adf7e60df6083331fe59c01571b7b725212dd"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "dc962f7258f2ff6842a2d92f69fdf779",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 882364,
"upload_time": "2024-08-16T18:05:43",
"upload_time_iso_8601": "2024-08-16T18:05:43.171651Z",
"url": "https://files.pythonhosted.org/packages/f7/e3/ab0d29b581515faefc39af08cec1bed98f9c14ca57e06caea8e72fe6780a/clickhouse_driver-0.2.9-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6ed8228d876f36d378eb3ea0e024ad8e7aad4a0a76e001c6926e95739fbe043",
"md5": "29149c5be274af151ae00bf5cc062111",
"sha256": "3e282c5c25e32d96ed151e5460d2bf4ecb805ea64449197dd918e84e768016df"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "29149c5be274af151ae00bf5cc062111",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 198350,
"upload_time": "2024-08-16T18:05:46",
"upload_time_iso_8601": "2024-08-16T18:05:46.099309Z",
"url": "https://files.pythonhosted.org/packages/a6/ed/8228d876f36d378eb3ea0e024ad8e7aad4a0a76e001c6926e95739fbe043/clickhouse_driver-0.2.9-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ed02565f310b598bb20c467bb50f0d1d8cf18bd394318c19f1483dd68e3ee06",
"md5": "2b3e2b41e8618b916530f225d4d6d5b2",
"sha256": "c46dccfb04a9afd61a1b0e60bfefceff917f76da2c863f9b36b39248496d5c77"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "2b3e2b41e8618b916530f225d4d6d5b2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 214176,
"upload_time": "2024-08-16T18:05:48",
"upload_time_iso_8601": "2024-08-16T18:05:48.506747Z",
"url": "https://files.pythonhosted.org/packages/8e/d0/2565f310b598bb20c467bb50f0d1d8cf18bd394318c19f1483dd68e3ee06/clickhouse_driver-0.2.9-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "336cdde199b97292cd9a50967fce6d908dba33f8d92be90de66ad46adbebc2a3",
"md5": "e1e06212969b41cb4be28bccd19571eb",
"sha256": "612ca9028c718f362c97f552e63d313cf1a70a616ef8532ddb0effdaf12ebef9"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e1e06212969b41cb4be28bccd19571eb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 221272,
"upload_time": "2024-08-16T18:05:50",
"upload_time_iso_8601": "2024-08-16T18:05:50.801829Z",
"url": "https://files.pythonhosted.org/packages/33/6c/dde199b97292cd9a50967fce6d908dba33f8d92be90de66ad46adbebc2a3/clickhouse_driver-0.2.9-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2385b30245dc8c291d0588b0d8ce7eb6d833011222bbd40d3fb31f43b8277ab",
"md5": "719fc1df141356d383b056d51618b858",
"sha256": "471b884d318e012f68d858476052742048918854f7dfe87d78e819f87a848ffb"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "719fc1df141356d383b056d51618b858",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 217147,
"upload_time": "2024-08-16T18:05:52",
"upload_time_iso_8601": "2024-08-16T18:05:52.864203Z",
"url": "https://files.pythonhosted.org/packages/a2/38/5b30245dc8c291d0588b0d8ce7eb6d833011222bbd40d3fb31f43b8277ab/clickhouse_driver-0.2.9-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf5fbd910fec4f96be1b4623d08007ced85d09a6bce5ff9e871b66a499761529",
"md5": "8ea394bba5730eb6809c8789ac3aa382",
"sha256": "58ee63c35e99da887eb035c8d6d9e64fd298a0efc1460395297dd5cc281a6912"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8ea394bba5730eb6809c8789ac3aa382",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 942629,
"upload_time": "2024-08-16T18:05:57",
"upload_time_iso_8601": "2024-08-16T18:05:57.007578Z",
"url": "https://files.pythonhosted.org/packages/cf/5f/bd910fec4f96be1b4623d08007ced85d09a6bce5ff9e871b66a499761529/clickhouse_driver-0.2.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03651bb272208f6e757f88710d623fd5ac7ee1c2f680dcf046348edca9611f04",
"md5": "620c8f68bdaa5d597732f20ffd7848c3",
"sha256": "0819bb63d2c5025a1fb9589f57ef82602687cef11081d6dfa6f2ce44606a1772"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "620c8f68bdaa5d597732f20ffd7848c3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 995042,
"upload_time": "2024-08-16T18:06:00",
"upload_time_iso_8601": "2024-08-16T18:06:00.753709Z",
"url": "https://files.pythonhosted.org/packages/03/65/1bb272208f6e757f88710d623fd5ac7ee1c2f680dcf046348edca9611f04/clickhouse_driver-0.2.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ddcdb45a6e2bac1cb93bd9bbd622416982a475d5589065b9abc32b6dc4f1f91d",
"md5": "7531d502d1c4001b299b2d697de3efd9",
"sha256": "f6680ee18870bca1fbab1736c8203a965efaec119ab4c37821ad99add248ee08"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7531d502d1c4001b299b2d697de3efd9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 990896,
"upload_time": "2024-08-16T18:06:04",
"upload_time_iso_8601": "2024-08-16T18:06:04.059211Z",
"url": "https://files.pythonhosted.org/packages/dd/cd/b45a6e2bac1cb93bd9bbd622416982a475d5589065b9abc32b6dc4f1f91d/clickhouse_driver-0.2.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5102d6407206e04366299b9f59c48856d0c64529148618a5a767ad91675dec29",
"md5": "db089ef337823e6c3273d6d4ea2bc3f3",
"sha256": "713c498741b54debd3a10a5529e70b6ed85ca33c3e8629e24ae5cd8160b5a5f2"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "db089ef337823e6c3273d6d4ea2bc3f3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 956131,
"upload_time": "2024-08-16T18:06:07",
"upload_time_iso_8601": "2024-08-16T18:06:07.473222Z",
"url": "https://files.pythonhosted.org/packages/51/02/d6407206e04366299b9f59c48856d0c64529148618a5a767ad91675dec29/clickhouse_driver-0.2.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4cbf33f970d486aaf615c410cd3412aa8f318f025da5147728efc10d933e637b",
"md5": "8619300a47f95b7d7c5863a56aee7614",
"sha256": "730837b8f63941065c9c955c44286aef0987fb084ffb3f55bf1e4fe07df62269"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8619300a47f95b7d7c5863a56aee7614",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 928255,
"upload_time": "2024-08-16T18:06:11",
"upload_time_iso_8601": "2024-08-16T18:06:11.586744Z",
"url": "https://files.pythonhosted.org/packages/4c/bf/33f970d486aaf615c410cd3412aa8f318f025da5147728efc10d933e637b/clickhouse_driver-0.2.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62e166e692a7e2d1cbcc081b0f6c9cc8fc1f5033de738400fa8fcca0e43c50ef",
"md5": "0559532d50f52321de83b69a91072e05",
"sha256": "9f4e38b2ea09214c8e7848a19391009a18c56a3640e1ba1a606b9e57aeb63404"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "0559532d50f52321de83b69a91072e05",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 978677,
"upload_time": "2024-08-16T18:06:15",
"upload_time_iso_8601": "2024-08-16T18:06:15.246158Z",
"url": "https://files.pythonhosted.org/packages/62/e1/66e692a7e2d1cbcc081b0f6c9cc8fc1f5033de738400fa8fcca0e43c50ef/clickhouse_driver-0.2.9-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "268ca28dde4602e6b528f9283396f562d06433a5bcca64c0954d221081a4cb40",
"md5": "7e748c8a2baaa9225926e666af66fcfd",
"sha256": "457f1d6639e0345b717ae603c79bd087a35361ce68c1c308d154b80b841e5e7d"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "7e748c8a2baaa9225926e666af66fcfd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 964183,
"upload_time": "2024-08-16T18:06:19",
"upload_time_iso_8601": "2024-08-16T18:06:19.355631Z",
"url": "https://files.pythonhosted.org/packages/26/8c/a28dde4602e6b528f9283396f562d06433a5bcca64c0954d221081a4cb40/clickhouse_driver-0.2.9-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1db4bd265611fd754e2aeb532f769dee545909818eac79e0bacffbe4038822d9",
"md5": "e11dfcd45119db1b37cd0123c93b4ec9",
"sha256": "49a55aeb8ea625a87965a96e361bbb1ad67d0931bfb2a575f899c1064e70c2da"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "e11dfcd45119db1b37cd0123c93b4ec9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 1018688,
"upload_time": "2024-08-16T18:06:22",
"upload_time_iso_8601": "2024-08-16T18:06:22.074660Z",
"url": "https://files.pythonhosted.org/packages/1d/b4/bd265611fd754e2aeb532f769dee545909818eac79e0bacffbe4038822d9/clickhouse_driver-0.2.9-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5590b772ebdac81eedb5268b18e019f312352a2e611ccd115b74abd253c90b4",
"md5": "9de9be8313feb35d3fdaedb36385cc80",
"sha256": "9230058d8c9b1a04079afae4650fb67745f0f1c39db335728f64d48bd2c19246"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "9de9be8313feb35d3fdaedb36385cc80",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 1024448,
"upload_time": "2024-08-16T18:06:25",
"upload_time_iso_8601": "2024-08-16T18:06:25.552813Z",
"url": "https://files.pythonhosted.org/packages/e5/59/0b772ebdac81eedb5268b18e019f312352a2e611ccd115b74abd253c90b4/clickhouse_driver-0.2.9-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78f81ea067c5e492bc01f94a01a62d7c95140f95ad165ade5eb0832950dc88fe",
"md5": "4251bcc6ce837e877385830772c78055",
"sha256": "8798258bd556542dd9c6b8ebe62f9c5110c9dcdf97c57fb077e7b8b6d6da0826"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4251bcc6ce837e877385830772c78055",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 992729,
"upload_time": "2024-08-16T18:06:29",
"upload_time_iso_8601": "2024-08-16T18:06:29.924007Z",
"url": "https://files.pythonhosted.org/packages/78/f8/1ea067c5e492bc01f94a01a62d7c95140f95ad165ade5eb0832950dc88fe/clickhouse_driver-0.2.9-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "163224187892ac71158f76adffe6048e9a0c07f82b3aaff1ba97318ea61d21db",
"md5": "0a4fd9dc58c04fe696deb4a39fdf67ea",
"sha256": "ce8e3f4be46bcc63555863f70ab0035202b082b37e6f16876ef50e7bc4b47056"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "0a4fd9dc58c04fe696deb4a39fdf67ea",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 199985,
"upload_time": "2024-08-16T18:06:32",
"upload_time_iso_8601": "2024-08-16T18:06:32.379429Z",
"url": "https://files.pythonhosted.org/packages/16/32/24187892ac71158f76adffe6048e9a0c07f82b3aaff1ba97318ea61d21db/clickhouse_driver-0.2.9-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7211608e54bc836ee735ca988c836435a2f12fdfa006e57f0c29378564220449",
"md5": "935b88f746e31d6236429e89826a2036",
"sha256": "2d982959ff628255808d895a67493f2dab0c3a9bfc65eeda0f00c8ae9962a1b3"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "935b88f746e31d6236429e89826a2036",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 215282,
"upload_time": "2024-08-16T18:06:34",
"upload_time_iso_8601": "2024-08-16T18:06:34.141866Z",
"url": "https://files.pythonhosted.org/packages/72/11/608e54bc836ee735ca988c836435a2f12fdfa006e57f0c29378564220449/clickhouse_driver-0.2.9-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9bb8500648908e72c53a691f853a8692274c07556b128dd27a355f31e9b5140",
"md5": "60cea2817ae5e4210424a7be57252000",
"sha256": "a46b227fab4420566ed24ee70d90076226d16fcf09c6ad4d428717efcf536446"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "60cea2817ae5e4210424a7be57252000",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 220741,
"upload_time": "2024-08-16T18:06:37",
"upload_time_iso_8601": "2024-08-16T18:06:37.186094Z",
"url": "https://files.pythonhosted.org/packages/d9/bb/8500648908e72c53a691f853a8692274c07556b128dd27a355f31e9b5140/clickhouse_driver-0.2.9-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a2478a4e543c98d5317be28a933e1fffaa9211ede6424c606db406039731aa2",
"md5": "6bbd92273a90168dc6e97119d0203a6a",
"sha256": "7eaa2ce5ea08cf5fddebb8c274c450e102f329f9e6966b6cd85aa671c48e5552"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6bbd92273a90168dc6e97119d0203a6a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 216678,
"upload_time": "2024-08-16T18:06:40",
"upload_time_iso_8601": "2024-08-16T18:06:40.057869Z",
"url": "https://files.pythonhosted.org/packages/3a/24/78a4e543c98d5317be28a933e1fffaa9211ede6424c606db406039731aa2/clickhouse_driver-0.2.9-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ff489a62565b138da166f4046b54e4b0e91b434ed88845095f62f5eed76ae1c",
"md5": "ba8412982a2670ecc55f6015b710b090",
"sha256": "f97f0083194d6e23b5ef6156ed0d5388c37847b298118199d7937ba26412a9e2"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ba8412982a2670ecc55f6015b710b090",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 930441,
"upload_time": "2024-08-16T18:06:43",
"upload_time_iso_8601": "2024-08-16T18:06:43.956011Z",
"url": "https://files.pythonhosted.org/packages/5f/f4/89a62565b138da166f4046b54e4b0e91b434ed88845095f62f5eed76ae1c/clickhouse_driver-0.2.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c39075557317e1d4594e4c309d286d461806d333d57106485619a9149836695b",
"md5": "929cffddf6d193f52f5b95af33001e74",
"sha256": "a6cab5cdbb0f8ee51d879d977b78f07068b585225ac656f3c081896c362e8f83"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "929cffddf6d193f52f5b95af33001e74",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 975763,
"upload_time": "2024-08-16T18:06:48",
"upload_time_iso_8601": "2024-08-16T18:06:48.618220Z",
"url": "https://files.pythonhosted.org/packages/c3/90/75557317e1d4594e4c309d286d461806d333d57106485619a9149836695b/clickhouse_driver-0.2.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1954763ae4db2f5317f779c989e45904a3de55adc0d6481beb49a83359974351",
"md5": "ca1c5e5ab1ad590f50fdf411b7360973",
"sha256": "cdb1b011a53ee71539e9dc655f268b111bac484db300da92829ed59e910a8fd0"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ca1c5e5ab1ad590f50fdf411b7360973",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 973494,
"upload_time": "2024-08-16T18:06:53",
"upload_time_iso_8601": "2024-08-16T18:06:53.842555Z",
"url": "https://files.pythonhosted.org/packages/19/54/763ae4db2f5317f779c989e45904a3de55adc0d6481beb49a83359974351/clickhouse_driver-0.2.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9d3f2aec5b1ad03b2cc175fa6e0e86a13369d52b1da62920b54a1b6671f142cd",
"md5": "0c360e7a0ed16fe60d5a45e127a9e310",
"sha256": "7bf51bb761b281d20910b4b689c699ef98027845467daa5bb5dfdb53bd6ee404"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0c360e7a0ed16fe60d5a45e127a9e310",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 943742,
"upload_time": "2024-08-16T18:06:59",
"upload_time_iso_8601": "2024-08-16T18:06:59.291465Z",
"url": "https://files.pythonhosted.org/packages/9d/3f/2aec5b1ad03b2cc175fa6e0e86a13369d52b1da62920b54a1b6671f142cd/clickhouse_driver-0.2.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0f9249dd26adc1f1bf81070ef88ce02d18874919255e4359209a332672c7ce23",
"md5": "c6da8caf5b530751ea4a96158db1a893",
"sha256": "b8ea462e3cebb121ff55002e9c8a9a0a3fd9b5bbbf688b4960f0a83c0172fb31"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c6da8caf5b530751ea4a96158db1a893",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 916390,
"upload_time": "2024-08-16T18:07:03",
"upload_time_iso_8601": "2024-08-16T18:07:03.876355Z",
"url": "https://files.pythonhosted.org/packages/0f/92/49dd26adc1f1bf81070ef88ce02d18874919255e4359209a332672c7ce23/clickhouse_driver-0.2.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d44b58c0b9e850ec5757fc77c83c29e811a6d98cc5409101c8848796b42fd4e",
"md5": "3ac80b81da5e45b541cff7d7bc595e24",
"sha256": "70bee21c245226ad0d637bf470472e2d487b86911b6d673a862127b934336ff4"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "3ac80b81da5e45b541cff7d7bc595e24",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 936953,
"upload_time": "2024-08-16T18:07:09",
"upload_time_iso_8601": "2024-08-16T18:07:09.232016Z",
"url": "https://files.pythonhosted.org/packages/0d/44/b58c0b9e850ec5757fc77c83c29e811a6d98cc5409101c8848796b42fd4e/clickhouse_driver-0.2.9-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00050f9a51bd3c649aa3cceec56429de408bb2b3eb12d3293410d0227e2a7c00",
"md5": "8ac40d0d98e5610b9b03bc2a7f641424",
"sha256": "253a3c223b944d691bf0abbd599f592ea3b36f0a71d2526833b1718f37eca5c2"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "8ac40d0d98e5610b9b03bc2a7f641424",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 924109,
"upload_time": "2024-08-16T18:07:13",
"upload_time_iso_8601": "2024-08-16T18:07:13.832483Z",
"url": "https://files.pythonhosted.org/packages/00/05/0f9a51bd3c649aa3cceec56429de408bb2b3eb12d3293410d0227e2a7c00/clickhouse_driver-0.2.9-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c510800c9002ab342edefbaa4d432404b96aaf61179e0b0f7117523424710b3c",
"md5": "6bc1c562fb0d7e0956d715e1301a7001",
"sha256": "a6549b53fc5c403dc556cb39b2ae94d73f9b113daa00438a660bb1dd5380ae4d"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "6bc1c562fb0d7e0956d715e1301a7001",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 979587,
"upload_time": "2024-08-16T18:07:18",
"upload_time_iso_8601": "2024-08-16T18:07:18.349065Z",
"url": "https://files.pythonhosted.org/packages/c5/10/800c9002ab342edefbaa4d432404b96aaf61179e0b0f7117523424710b3c/clickhouse_driver-0.2.9-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7085f4d44509dce6dd20c78f425921f0624ae5e377f77c3b42f0d44d9cdb5b4a",
"md5": "3644774a2c7202640c5e91702b5659f8",
"sha256": "1c685cd4abe61af1c26279ff04b9f567eb4d6c1ec7fb265af7481b1f153043aa"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "3644774a2c7202640c5e91702b5659f8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 986099,
"upload_time": "2024-08-16T18:07:22",
"upload_time_iso_8601": "2024-08-16T18:07:22.115325Z",
"url": "https://files.pythonhosted.org/packages/70/85/f4d44509dce6dd20c78f425921f0624ae5e377f77c3b42f0d44d9cdb5b4a/clickhouse_driver-0.2.9-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6cc41a8e9a1f4521f7fe46cf326b9b1f09a0b09ba4c15b9c01507d0cfefc02b7",
"md5": "4ce06dd748e6f0c84e07ab9367e4334d",
"sha256": "7e25144219577491929d032a6c3ddd63c6cd7fa764af829a5637f798190d9b26"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4ce06dd748e6f0c84e07ab9367e4334d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 953477,
"upload_time": "2024-08-16T18:07:25",
"upload_time_iso_8601": "2024-08-16T18:07:25.350180Z",
"url": "https://files.pythonhosted.org/packages/6c/c4/1a8e9a1f4521f7fe46cf326b9b1f09a0b09ba4c15b9c01507d0cfefc02b7/clickhouse_driver-0.2.9-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f417182d40fd30da2f31f5758a3d3003383fd9520cc728dd1445057ed8304d91",
"md5": "89fe0ba610c63f5c462ca3a1ce53957c",
"sha256": "0b9925610d25405a8e6d83ff4f54fc2456a121adb0155999972f5edd6ba3efc8"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "89fe0ba610c63f5c462ca3a1ce53957c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 199857,
"upload_time": "2024-08-16T18:07:27",
"upload_time_iso_8601": "2024-08-16T18:07:27.539059Z",
"url": "https://files.pythonhosted.org/packages/f4/17/182d40fd30da2f31f5758a3d3003383fd9520cc728dd1445057ed8304d91/clickhouse_driver-0.2.9-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05963d7af33167edd2ec94d3bc89b2f7e093f64225ccc13bb97131e19f6c4b01",
"md5": "3171b86f00135b53132a9d2ae9f82068",
"sha256": "b243de483cfa02716053b0148d73558f4694f3c27b97fc1eaa97d7079563a14d"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "3171b86f00135b53132a9d2ae9f82068",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 214727,
"upload_time": "2024-08-16T18:07:29",
"upload_time_iso_8601": "2024-08-16T18:07:29.695782Z",
"url": "https://files.pythonhosted.org/packages/05/96/3d7af33167edd2ec94d3bc89b2f7e093f64225ccc13bb97131e19f6c4b01/clickhouse_driver-0.2.9-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "767a961029af713ae42e43f2691abbcee248ed057229d24613d693260edbcb32",
"md5": "fe3e766f173d8e99375b2c558fdbf704",
"sha256": "45a3d5b1d06750fd6a18c29b871494a2635670099ec7693e756a5885a4a70dbf"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "fe3e766f173d8e99375b2c558fdbf704",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4,>=3.7",
"size": 197672,
"upload_time": "2024-08-16T18:07:32",
"upload_time_iso_8601": "2024-08-16T18:07:32.041022Z",
"url": "https://files.pythonhosted.org/packages/76/7a/961029af713ae42e43f2691abbcee248ed057229d24613d693260edbcb32/clickhouse_driver-0.2.9-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5bd41da419cb98e829bbacea4c07e184a747804f11543ff976c6539f4fbd62f2",
"md5": "d84908a0aea2c312094630aa3012f67e",
"sha256": "8415ffebd6ca9eef3024763abc450f8659f1716d015bd563c537d01c7fbc3569"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d84908a0aea2c312094630aa3012f67e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4,>=3.7",
"size": 220898,
"upload_time": "2024-08-16T18:07:34",
"upload_time_iso_8601": "2024-08-16T18:07:34.029694Z",
"url": "https://files.pythonhosted.org/packages/5b/d4/1da419cb98e829bbacea4c07e184a747804f11543ff976c6539f4fbd62f2/clickhouse_driver-0.2.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86d6f9042e885f4510ab3a09ef2f5d1acfd40f328794dff66ae12e52954cda04",
"md5": "c21bb47d3e8e083a48e439bd694739b8",
"sha256": "ace48db993aa4bd31c42de0fa8d38c94ad47405916d6b61f7a7168a48fb52ac1"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c21bb47d3e8e083a48e439bd694739b8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4,>=3.7",
"size": 228801,
"upload_time": "2024-08-16T18:07:35",
"upload_time_iso_8601": "2024-08-16T18:07:35.959459Z",
"url": "https://files.pythonhosted.org/packages/86/d6/f9042e885f4510ab3a09ef2f5d1acfd40f328794dff66ae12e52954cda04/clickhouse_driver-0.2.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "826288ece5b7ca32d8a4bb4b1d0250cb54d1cfb1e7abfc759355d1fb51fda23a",
"md5": "6d7134b60f01dfb418e9a7aac33d9be9",
"sha256": "b07123334fe143bfe6fa4e3d4b732d647d5fd2cfb9ec7f2f76104b46fe9d20c6"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6d7134b60f01dfb418e9a7aac33d9be9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4,>=3.7",
"size": 234107,
"upload_time": "2024-08-16T18:07:38",
"upload_time_iso_8601": "2024-08-16T18:07:38.296250Z",
"url": "https://files.pythonhosted.org/packages/82/62/88ece5b7ca32d8a4bb4b1d0250cb54d1cfb1e7abfc759355d1fb51fda23a/clickhouse_driver-0.2.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2baaf473c973b853a9de1312d73f929f39e17424bd723966b398b898188a13a",
"md5": "019bb1b7a86ccf06ec40f0281715a16f",
"sha256": "e2af3efa73d296420ce6362789f5b1febf75d4aa159a479393f01549115509d5"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "019bb1b7a86ccf06ec40f0281715a16f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4,>=3.7",
"size": 199442,
"upload_time": "2024-08-16T18:07:41",
"upload_time_iso_8601": "2024-08-16T18:07:41.879022Z",
"url": "https://files.pythonhosted.org/packages/b2/ba/af473c973b853a9de1312d73f929f39e17424bd723966b398b898188a13a/clickhouse_driver-0.2.9-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab471ff66f53725e5bf103cd152c4ccc0acfe0b6e23a09d4d3dd4ef0d51ba662",
"md5": "13f49f15b5b3d341bd70c835482f7be3",
"sha256": "baf57eede88d07a1eb04352d26fc58a4d97991ca3d8840f7c5d48691dec9f251"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "13f49f15b5b3d341bd70c835482f7be3",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": "<4,>=3.7",
"size": 195576,
"upload_time": "2024-08-16T18:07:45",
"upload_time_iso_8601": "2024-08-16T18:07:45.519239Z",
"url": "https://files.pythonhosted.org/packages/ab/47/1ff66f53725e5bf103cd152c4ccc0acfe0b6e23a09d4d3dd4ef0d51ba662/clickhouse_driver-0.2.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c60ab076431bd4740c42470c0893bf9b3c981d1ebf11e5956f1e1204d0b18e56",
"md5": "d5909f45c57fdc4c90f26879517950df",
"sha256": "275d0ccdab9c3571bdb3e9acfab4497930aa584ff2766b035bb2f854deaf8b82"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d5909f45c57fdc4c90f26879517950df",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": "<4,>=3.7",
"size": 219977,
"upload_time": "2024-08-16T18:07:50",
"upload_time_iso_8601": "2024-08-16T18:07:50.062893Z",
"url": "https://files.pythonhosted.org/packages/c6/0a/b076431bd4740c42470c0893bf9b3c981d1ebf11e5956f1e1204d0b18e56/clickhouse_driver-0.2.9-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "074accba0804abe4c58d692cb21fae9561214edfb569276252a8cdeba8b96d59",
"md5": "ba0c59eb8c432211985b5ce4c61a7e9d",
"sha256": "293da77bfcac3168fb35b27c242f97c1a05502435c0686ecbb8e2e4abcb3de26"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ba0c59eb8c432211985b5ce4c61a7e9d",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": "<4,>=3.7",
"size": 226930,
"upload_time": "2024-08-16T18:07:53",
"upload_time_iso_8601": "2024-08-16T18:07:53.062566Z",
"url": "https://files.pythonhosted.org/packages/07/4a/ccba0804abe4c58d692cb21fae9561214edfb569276252a8cdeba8b96d59/clickhouse_driver-0.2.9-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5875baccb8556d8e74dbf1be094ca4deaa15695f4f879c312bf6187f9342a3f",
"md5": "582d8d0293ead9bb63a58cb119cd1675",
"sha256": "8d6c2e5830705e4eeef33070ca4d5a24dfa221f28f2f540e5e6842c26e70b10b"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "582d8d0293ead9bb63a58cb119cd1675",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": "<4,>=3.7",
"size": 232374,
"upload_time": "2024-08-16T18:07:55",
"upload_time_iso_8601": "2024-08-16T18:07:55.729101Z",
"url": "https://files.pythonhosted.org/packages/a5/87/5baccb8556d8e74dbf1be094ca4deaa15695f4f879c312bf6187f9342a3f/clickhouse_driver-0.2.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d39daf4d4d5943be1179cdd54115d99f3ebe4dcddeb17811ffcef63c7b0cbdba",
"md5": "b64cf71d880ff7edd6f6c04784a4d27e",
"sha256": "11934bd78d97dd7e1a23a6222b5edd1e1b4d34e1ead5c846dc2b5c56fdc35ff5"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "b64cf71d880ff7edd6f6c04784a4d27e",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": "<4,>=3.7",
"size": 198152,
"upload_time": "2024-08-16T18:07:59",
"upload_time_iso_8601": "2024-08-16T18:07:59.404999Z",
"url": "https://files.pythonhosted.org/packages/d3/9d/af4d4d5943be1179cdd54115d99f3ebe4dcddeb17811ffcef63c7b0cbdba/clickhouse_driver-0.2.9-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "facdbea199d8428105fa802fe746d512764caf9f2b87a547c8bf6500b73a76fc",
"md5": "525eb39b5c34b8925c4187aef28b9b95",
"sha256": "b802b6f0fbdcc3ab81b87f09b694dde91ab049f44d1d2c08c3dc8ea9a5950cfa"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "525eb39b5c34b8925c4187aef28b9b95",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": "<4,>=3.7",
"size": 195706,
"upload_time": "2024-08-16T18:08:01",
"upload_time_iso_8601": "2024-08-16T18:08:01.278370Z",
"url": "https://files.pythonhosted.org/packages/fa/cd/bea199d8428105fa802fe746d512764caf9f2b87a547c8bf6500b73a76fc/clickhouse_driver-0.2.9-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7aea287197cc95766825bd3609b56e7e524d7e36eceeeb00ba870456fc7529a7",
"md5": "a474abb9a2ffe32f823a03f6303a4b60",
"sha256": "7af871c5315eb829ecf4533c790461ea8f73b3bfd5f533b0467e479fdf6ddcfd"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a474abb9a2ffe32f823a03f6303a4b60",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": "<4,>=3.7",
"size": 219977,
"upload_time": "2024-08-16T18:08:04",
"upload_time_iso_8601": "2024-08-16T18:08:04.319898Z",
"url": "https://files.pythonhosted.org/packages/7a/ea/287197cc95766825bd3609b56e7e524d7e36eceeeb00ba870456fc7529a7/clickhouse_driver-0.2.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6be3d05b925e321b0d99541f56a3d9ea47ddcbc4049c54a6e769d1aaac67feab",
"md5": "04a20721b2834fb9724b72e1cf32724e",
"sha256": "9d577dd4867b9e26cf60590e1f500990c8701a6e3cfbb9e644f4d0c0fb607028"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "04a20721b2834fb9724b72e1cf32724e",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": "<4,>=3.7",
"size": 226962,
"upload_time": "2024-08-16T18:08:06",
"upload_time_iso_8601": "2024-08-16T18:08:06.248739Z",
"url": "https://files.pythonhosted.org/packages/6b/e3/d05b925e321b0d99541f56a3d9ea47ddcbc4049c54a6e769d1aaac67feab/clickhouse_driver-0.2.9-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5eb48fed5c75fcc3301049e1bcb9eb43f0dd41b508459b3b6abac43ce50849f",
"md5": "2097baa27696cd4ddef21df0d254230b",
"sha256": "2ed3dea2d1eca85fef5b8564ddd76dedb15a610c77d55d555b49d9f7c896b64b"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2097baa27696cd4ddef21df0d254230b",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": "<4,>=3.7",
"size": 232375,
"upload_time": "2024-08-16T18:08:09",
"upload_time_iso_8601": "2024-08-16T18:08:09.500015Z",
"url": "https://files.pythonhosted.org/packages/e5/eb/48fed5c75fcc3301049e1bcb9eb43f0dd41b508459b3b6abac43ce50849f/clickhouse_driver-0.2.9-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f9006944a5ba8a83b819627b18ee2892e0dd0a469a4b8f50b0daa2a604e2d3c",
"md5": "1c5b1c4ef240bd2b44d0387d0378f423",
"sha256": "91ec96f2c48e5bdeac9eea43a9bc9cc19acb2d2c59df0a13d5520dfc32457605"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "1c5b1c4ef240bd2b44d0387d0378f423",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": "<4,>=3.7",
"size": 198129,
"upload_time": "2024-08-16T18:08:11",
"upload_time_iso_8601": "2024-08-16T18:08:11.530822Z",
"url": "https://files.pythonhosted.org/packages/9f/90/06944a5ba8a83b819627b18ee2892e0dd0a469a4b8f50b0daa2a604e2d3c/clickhouse_driver-0.2.9-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0be641fbf5c129af0c42260883d18563b6663e22578e79142ced138df339ad42",
"md5": "058de2b2ca1ed9cbb61616ffc5c273bc",
"sha256": "7667ab423452754f36ba8fb41e006a46baace9c94e2aca2a745689b9f2753dfb"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "058de2b2ca1ed9cbb61616ffc5c273bc",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4,>=3.7",
"size": 197550,
"upload_time": "2024-08-16T18:08:13",
"upload_time_iso_8601": "2024-08-16T18:08:13.673227Z",
"url": "https://files.pythonhosted.org/packages/0b/e6/41fbf5c129af0c42260883d18563b6663e22578e79142ced138df339ad42/clickhouse_driver-0.2.9-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db3616409306bb69b2195cd20728c1a89c714c839e8df17a7e825de227fba58e",
"md5": "d777ec64c81578b513174d17b20c207b",
"sha256": "653583b1f3b088d106f180d6f02c90917ecd669ec956b62903a05df4a7f44863"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d777ec64c81578b513174d17b20c207b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4,>=3.7",
"size": 220738,
"upload_time": "2024-08-16T18:08:15",
"upload_time_iso_8601": "2024-08-16T18:08:15.968318Z",
"url": "https://files.pythonhosted.org/packages/db/36/16409306bb69b2195cd20728c1a89c714c839e8df17a7e825de227fba58e/clickhouse_driver-0.2.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0388148b5a293bf3d716f0a58fc78000d29cca95950c4bbd9cd80b5d5c4bbb7f",
"md5": "5d1e84fe0a0a5f18ec148f8abfbc4b44",
"sha256": "7ef3dd0cbdf2f0171caab90389af0ede068ec802bf46c6a77f14e6edc86671bc"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5d1e84fe0a0a5f18ec148f8abfbc4b44",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4,>=3.7",
"size": 228544,
"upload_time": "2024-08-16T18:08:19",
"upload_time_iso_8601": "2024-08-16T18:08:19.048668Z",
"url": "https://files.pythonhosted.org/packages/03/88/148b5a293bf3d716f0a58fc78000d29cca95950c4bbd9cd80b5d5c4bbb7f/clickhouse_driver-0.2.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "442ac5b29314d22b21eae39b4337207f1a65b519c2cf73df9fbb25fc60d77c99",
"md5": "930c4e0e166fd8807e750af1577bbea6",
"sha256": "11b1833ee8ff8d5df39a34a895e060b57bd81e05ea68822bc60476daff4ce1c8"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "930c4e0e166fd8807e750af1577bbea6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4,>=3.7",
"size": 233877,
"upload_time": "2024-08-16T18:08:21",
"upload_time_iso_8601": "2024-08-16T18:08:21.900266Z",
"url": "https://files.pythonhosted.org/packages/44/2a/c5b29314d22b21eae39b4337207f1a65b519c2cf73df9fbb25fc60d77c99/clickhouse_driver-0.2.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ad678f0e1ffeeb06f04ac0994362eca03cd0da42f52071241f00959699246ce",
"md5": "a2c89d5d3118f68522536e0ccfb13015",
"sha256": "8a3195639e6393b9d4aafe736036881ff86b6be5855d4bf7d9f5c31637181ec3"
},
"downloads": -1,
"filename": "clickhouse_driver-0.2.9-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "a2c89d5d3118f68522536e0ccfb13015",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4,>=3.7",
"size": 199347,
"upload_time": "2024-08-16T18:08:25",
"upload_time_iso_8601": "2024-08-16T18:08:25.106407Z",
"url": "https://files.pythonhosted.org/packages/3a/d6/78f0e1ffeeb06f04ac0994362eca03cd0da42f52071241f00959699246ce/clickhouse_driver-0.2.9-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf0b3790274f7591fc55b1f91bcc8e576338859cc632b1b17288b5bab79b769d",
"md5": "5e9f8bf774a8c22469c902b33c20b2bd",
"sha256": "050ea4870ead993910b39e7fae965dc1c347b2e8191dcd977cd4b385f9e19f87"
},
"downloads": -1,
"filename": "clickhouse-driver-0.2.9.tar.gz",
"has_sig": false,
"md5_digest": "5e9f8bf774a8c22469c902b33c20b2bd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4,>=3.7",
"size": 357752,
"upload_time": "2024-08-16T18:08:28",
"upload_time_iso_8601": "2024-08-16T18:08:28.116024Z",
"url": "https://files.pythonhosted.org/packages/bf/0b/3790274f7591fc55b1f91bcc8e576338859cc632b1b17288b5bab79b769d/clickhouse-driver-0.2.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-16 18:08:28",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "mymarilyn",
"github_project": "clickhouse-driver",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "clickhouse-driver"
}