clickhouse-driver


Nameclickhouse-driver JSON
Version 0.2.7 PyPI version JSON
download
home_pagehttps://github.com/mymarilyn/clickhouse-driver
SummaryPython driver with native interface for ClickHouse
upload_time2024-02-20 12:37:25
maintainer
docs_urlNone
authorKonstantin Lebedev
requires_python>=3.7, <4
licenseMIT
keywords clickhouse db database cloud analytics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            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": "",
    "docs_url": null,
    "requires_python": ">=3.7, <4",
    "maintainer_email": "",
    "keywords": "ClickHouse db database cloud analytics",
    "author": "Konstantin Lebedev",
    "author_email": "kostyan.lebedev@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/17/c0/68b0dadeb4c9eb81c569b5cda66f88b016144f67505801f403bf1dab5d1a/clickhouse-driver-0.2.7.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.7",
    "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": "9e1156c731c4553d6463875292d9bd101575a6cd4cedd51f427adeddfefbcb6b",
                "md5": "5f74a8bf65227e907dc4612770235847",
                "sha256": "c44fefc2fd44f432d5b162bfe34ad76840137c34167d46a18c554a7c7c6e3566"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f74a8bf65227e907dc4612770235847",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 217957,
            "upload_time": "2024-02-20T12:33:09",
            "upload_time_iso_8601": "2024-02-20T12:33:09.187669Z",
            "url": "https://files.pythonhosted.org/packages/9e/11/56c731c4553d6463875292d9bd101575a6cd4cedd51f427adeddfefbcb6b/clickhouse_driver-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe7fd0f2f27689432e26e253037a7f5c465d7aa8e0b4c450859c38b9618fbd02",
                "md5": "f219bb8c06327e9949406d64c43cd78f",
                "sha256": "e018452a7bf8d8c0adf958afbc5b0d29e402fc09a1fb34e9186293eae57f3b4e"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f219bb8c06327e9949406d64c43cd78f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 213136,
            "upload_time": "2024-02-20T12:33:11",
            "upload_time_iso_8601": "2024-02-20T12:33:11.654168Z",
            "url": "https://files.pythonhosted.org/packages/fe/7f/d0f2f27689432e26e253037a7f5c465d7aa8e0b4c450859c38b9618fbd02/clickhouse_driver-0.2.7-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0269a4d86ff7b394f621460ac2b9c0c53ccc5927968ffd5ea83c78c2e5ea744",
                "md5": "3ec484a01721f71e479cb20eff60d81f",
                "sha256": "ff8b09f8b13df28d2f91ee3d0d2edd9589cbda76b74acf60669112219cea8c9d"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3ec484a01721f71e479cb20eff60d81f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 922272,
            "upload_time": "2024-02-20T12:33:14",
            "upload_time_iso_8601": "2024-02-20T12:33:14.956118Z",
            "url": "https://files.pythonhosted.org/packages/b0/26/9a4d86ff7b394f621460ac2b9c0c53ccc5927968ffd5ea83c78c2e5ea744/clickhouse_driver-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d54aa5f5de0495f3af0de09c694121600afcc4e358663fc0ee93c073bea0a6b4",
                "md5": "9bdbcb00cabf70090c9246a6f3f289e4",
                "sha256": "54aa91c9512fd5a73f038cae4f67ca2ff0b2f8a84de846179a31530936ef4e20"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9bdbcb00cabf70090c9246a6f3f289e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 966779,
            "upload_time": "2024-02-20T12:33:18",
            "upload_time_iso_8601": "2024-02-20T12:33:18.613784Z",
            "url": "https://files.pythonhosted.org/packages/d5/4a/a5f5de0495f3af0de09c694121600afcc4e358663fc0ee93c073bea0a6b4/clickhouse_driver-0.2.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df6bc230ec4a05603ab3ef36c994747b008e91f381b91c241296a70ca75d2ad5",
                "md5": "5ad55a857b61e4958a7e70ebf90b9fd5",
                "sha256": "b8342a7ba31ccb393ee31dfd61173aa84c995b4ac0b44d404adc8463534233d5"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5ad55a857b61e4958a7e70ebf90b9fd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 964809,
            "upload_time": "2024-02-20T12:33:21",
            "upload_time_iso_8601": "2024-02-20T12:33:21.890908Z",
            "url": "https://files.pythonhosted.org/packages/df/6b/c230ec4a05603ab3ef36c994747b008e91f381b91c241296a70ca75d2ad5/clickhouse_driver-0.2.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42571dfa30654face3711090890135aa12a2f3c07c3392c39ac60086e015d01a",
                "md5": "b49e88fd506ebd17331f3bfa8facfde2",
                "sha256": "199000f8adf38fade0b5a52c273a396168105539de741a18ba3e68d7fc06e0e6"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b49e88fd506ebd17331f3bfa8facfde2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 935121,
            "upload_time": "2024-02-20T12:33:25",
            "upload_time_iso_8601": "2024-02-20T12:33:25.213578Z",
            "url": "https://files.pythonhosted.org/packages/42/57/1dfa30654face3711090890135aa12a2f3c07c3392c39ac60086e015d01a/clickhouse_driver-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7482ea1ec11843816cc5c440be3d25bb8cf2eabf375f8b8b55a29fc2339ed3b9",
                "md5": "39d924abec2a882334838e176a25f6ba",
                "sha256": "f60a2a40602b207506e505cfb184a81cd4b752bde17153bc0b32c3931ddb792f"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "39d924abec2a882334838e176a25f6ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 910728,
            "upload_time": "2024-02-20T12:33:28",
            "upload_time_iso_8601": "2024-02-20T12:33:28.220057Z",
            "url": "https://files.pythonhosted.org/packages/74/82/ea1ec11843816cc5c440be3d25bb8cf2eabf375f8b8b55a29fc2339ed3b9/clickhouse_driver-0.2.7-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": "3c5b996e40c687b75b456fb2f6468a891d42a1b3b339b275c315fbf438fa8709",
                "md5": "d79e39533b41f6172cb9b2191e96ccbb",
                "sha256": "5db3a26b18146b2b0b06d3f32ce588af5afaa38c719daf6f9606981514228a8b"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d79e39533b41f6172cb9b2191e96ccbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 932160,
            "upload_time": "2024-02-20T12:33:30",
            "upload_time_iso_8601": "2024-02-20T12:33:30.447220Z",
            "url": "https://files.pythonhosted.org/packages/3c/5b/996e40c687b75b456fb2f6468a891d42a1b3b339b275c315fbf438fa8709/clickhouse_driver-0.2.7-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97a512a46a4bfda9b46fcae53ad104fe858f5fe8b46d25fd72f42afaeef24daa",
                "md5": "0e86893e24a1e4f6a6c85910a7b7b5d8",
                "sha256": "5579a31da1f3cf49630e43fbbb11cab891b78161abdcb33908b79820b7cd3a23"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "0e86893e24a1e4f6a6c85910a7b7b5d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 918906,
            "upload_time": "2024-02-20T12:33:32",
            "upload_time_iso_8601": "2024-02-20T12:33:32.859343Z",
            "url": "https://files.pythonhosted.org/packages/97/a5/12a46a4bfda9b46fcae53ad104fe858f5fe8b46d25fd72f42afaeef24daa/clickhouse_driver-0.2.7-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f774c09836daf816872f346c313e742add4ab5ea8ef910b4a7bf266fd80b14f5",
                "md5": "89c8bd008f8b07e615ee44d6cee4f45d",
                "sha256": "cc39f0fb761aed96917b0f55679174a50f9591afc0e696e745cd698ef822661f"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "89c8bd008f8b07e615ee44d6cee4f45d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 972076,
            "upload_time": "2024-02-20T12:33:35",
            "upload_time_iso_8601": "2024-02-20T12:33:35.064834Z",
            "url": "https://files.pythonhosted.org/packages/f7/74/c09836daf816872f346c313e742add4ab5ea8ef910b4a7bf266fd80b14f5/clickhouse_driver-0.2.7-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69c7a2e7066d4f1d1a17cda17d09be856554ca4076e8592871a4f485ae06a846",
                "md5": "d5e90eaf39df827c2d8398198c384ae4",
                "sha256": "9aa0f7c740e4e61886c6d388792c5d1a2084d4b5462e6dcfc24e30ca7e7f8e68"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "d5e90eaf39df827c2d8398198c384ae4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 979883,
            "upload_time": "2024-02-20T12:33:37",
            "upload_time_iso_8601": "2024-02-20T12:33:37.504297Z",
            "url": "https://files.pythonhosted.org/packages/69/c7/a2e7066d4f1d1a17cda17d09be856554ca4076e8592871a4f485ae06a846/clickhouse_driver-0.2.7-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4363465763db48d7b3b3e3ded73f6c472884e44bbead037f640faf2b6f97fa7",
                "md5": "7c5ca496e1ceeb6b3a821e59ecccdf32",
                "sha256": "2caee88b6eec7b33ddbccd24501ad99ff8ff2b0a6a4471945cbfb28947a9a791"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c5ca496e1ceeb6b3a821e59ecccdf32",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 949231,
            "upload_time": "2024-02-20T12:33:39",
            "upload_time_iso_8601": "2024-02-20T12:33:39.592104Z",
            "url": "https://files.pythonhosted.org/packages/f4/36/3465763db48d7b3b3e3ded73f6c472884e44bbead037f640faf2b6f97fa7/clickhouse_driver-0.2.7-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f9a882092183290359b19b374d6210bbe948a4aa303e45590cbc63f21a40171",
                "md5": "6082316d00346b5e5673a561d3d1b7b9",
                "sha256": "a4aef432cc7120a971eebb7ca2fddac4472e810b57e403d3a371b0c69cbb2bb0"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "6082316d00346b5e5673a561d3d1b7b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 196987,
            "upload_time": "2024-02-20T12:33:41",
            "upload_time_iso_8601": "2024-02-20T12:33:41.495713Z",
            "url": "https://files.pythonhosted.org/packages/8f/9a/882092183290359b19b374d6210bbe948a4aa303e45590cbc63f21a40171/clickhouse_driver-0.2.7-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66cae0e6b54c81937becb00d89b0264901418c8826ff0d55f3c56760edbae383",
                "md5": "63b5bdef3085b39a00c20f3644edc64b",
                "sha256": "f307de7df6bc23ad5ec8a1ba1db157f4d14de673ddd4798f37790f23255605b0"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "63b5bdef3085b39a00c20f3644edc64b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7, <4",
            "size": 212215,
            "upload_time": "2024-02-20T12:33:43",
            "upload_time_iso_8601": "2024-02-20T12:33:43.549107Z",
            "url": "https://files.pythonhosted.org/packages/66/ca/e0e6b54c81937becb00d89b0264901418c8826ff0d55f3c56760edbae383/clickhouse_driver-0.2.7-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5166403d3708933ac9c54eecc57c1151a8f020bb9a4e9d47bd5222a4507a8e60",
                "md5": "073a23d4d8cd60d8e3b4b47837ac7560",
                "sha256": "cbf3ca8919bf856ca6588669a863065fb732a32a6387095f64d19038fd99db9f"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "073a23d4d8cd60d8e3b4b47837ac7560",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 219346,
            "upload_time": "2024-02-20T12:33:46",
            "upload_time_iso_8601": "2024-02-20T12:33:46.124887Z",
            "url": "https://files.pythonhosted.org/packages/51/66/403d3708933ac9c54eecc57c1151a8f020bb9a4e9d47bd5222a4507a8e60/clickhouse_driver-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36130f0411695aa489e99baabc945806b1107847042213192827e3863d529475",
                "md5": "68f26c69b083b60ce0f2c73d49b9ca18",
                "sha256": "ab68b3d9b9d1386adfd3a57edd47b62858a145bf7ccc7f11b31d308195d966e5"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "68f26c69b083b60ce0f2c73d49b9ca18",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 213882,
            "upload_time": "2024-02-20T12:33:48",
            "upload_time_iso_8601": "2024-02-20T12:33:48.758441Z",
            "url": "https://files.pythonhosted.org/packages/36/13/0f0411695aa489e99baabc945806b1107847042213192827e3863d529475/clickhouse_driver-0.2.7-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5641167c7ecb3f7b7917fe81f32acb51941b7e7f9de32747b14c3fefab0315ed",
                "md5": "b8241026712d63b5b4587132cc6fb011",
                "sha256": "985a9d60044c5ad39c6e018b852c7105ec4ebfdf4c3abe23183b4867454e570a"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b8241026712d63b5b4587132cc6fb011",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 1013764,
            "upload_time": "2024-02-20T12:33:51",
            "upload_time_iso_8601": "2024-02-20T12:33:51.689926Z",
            "url": "https://files.pythonhosted.org/packages/56/41/167c7ecb3f7b7917fe81f32acb51941b7e7f9de32747b14c3fefab0315ed/clickhouse_driver-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afbf7b30c0b6d8b484819d5490ee3cdfd5106d4299e4502dd4ced910e677492f",
                "md5": "7f4f9f268d2c0bf52827054d02e7b738",
                "sha256": "6c94330054c8d92d2286898906f843f26e2f96fc2aa11a9a96a7b5593d299bf0"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7f4f9f268d2c0bf52827054d02e7b738",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 1057434,
            "upload_time": "2024-02-20T12:33:53",
            "upload_time_iso_8601": "2024-02-20T12:33:53.886414Z",
            "url": "https://files.pythonhosted.org/packages/af/bf/7b30c0b6d8b484819d5490ee3cdfd5106d4299e4502dd4ced910e677492f/clickhouse_driver-0.2.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3320d404d07ec63c10370a45bf471ec9f78fc8143e1cdfc21ecc5e3b26d7744",
                "md5": "5cc7664446a88b533e2eab21b9047625",
                "sha256": "92938f55c8f797e50e624a4b96e685178d043cdf0ede306a7fd4e7dda19b8dfd"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5cc7664446a88b533e2eab21b9047625",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 1056871,
            "upload_time": "2024-02-20T12:33:56",
            "upload_time_iso_8601": "2024-02-20T12:33:56.067088Z",
            "url": "https://files.pythonhosted.org/packages/a3/32/0d404d07ec63c10370a45bf471ec9f78fc8143e1cdfc21ecc5e3b26d7744/clickhouse_driver-0.2.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02cfa5f2fec644518ab7de8fc00c175408bbb1fdf03578bc0d0f18475504ecc8",
                "md5": "d8babf3c7353bb5092fc38e98ac7fbda",
                "sha256": "05bd53e9bf49c3013d06f9e6d2812872d44b150f7a2d1cf18e1498257d42330e"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8babf3c7353bb5092fc38e98ac7fbda",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 1025476,
            "upload_time": "2024-02-20T12:33:59",
            "upload_time_iso_8601": "2024-02-20T12:33:59.343173Z",
            "url": "https://files.pythonhosted.org/packages/02/cf/a5f2fec644518ab7de8fc00c175408bbb1fdf03578bc0d0f18475504ecc8/clickhouse_driver-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fcbe989914408831d830480e44cae2be8c995b0387aad831b0d957608c84f88",
                "md5": "71a360cb5d4be8672bf651e6ff47cc80",
                "sha256": "0f1f8ed5404e283a9ded499c33eade2423fdc15e31f8a711d75e91f890d0f70b"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "71a360cb5d4be8672bf651e6ff47cc80",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 986665,
            "upload_time": "2024-02-20T12:34:02",
            "upload_time_iso_8601": "2024-02-20T12:34:02.395471Z",
            "url": "https://files.pythonhosted.org/packages/8f/cb/e989914408831d830480e44cae2be8c995b0387aad831b0d957608c84f88/clickhouse_driver-0.2.7-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": "7244498b34a5a42d96a2bf5671920a96dbcb55c44158f76b1940970cdaeba094",
                "md5": "96aad3646c0fc1417a66018a487554e9",
                "sha256": "a398085e4a1766d907ac32c282d4172db38a44243bde303372396208d1cbf4bb"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "96aad3646c0fc1417a66018a487554e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 1014081,
            "upload_time": "2024-02-20T12:34:05",
            "upload_time_iso_8601": "2024-02-20T12:34:05.653898Z",
            "url": "https://files.pythonhosted.org/packages/72/44/498b34a5a42d96a2bf5671920a96dbcb55c44158f76b1940970cdaeba094/clickhouse_driver-0.2.7-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f5c0b133b89a56523129b351af6135c6e304876d55df78848d8d4a68c051ad1",
                "md5": "1d8f6847688e5e1954d3afdc3cd0a523",
                "sha256": "fa1808593123b6056f93808f0afbc7938f06a8149cb4e381aa7b1a234c1d3c18"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1d8f6847688e5e1954d3afdc3cd0a523",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 992336,
            "upload_time": "2024-02-20T12:34:07",
            "upload_time_iso_8601": "2024-02-20T12:34:07.720865Z",
            "url": "https://files.pythonhosted.org/packages/2f/5c/0b133b89a56523129b351af6135c6e304876d55df78848d8d4a68c051ad1/clickhouse_driver-0.2.7-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22d32652e42819060281420ceb7c686702bdae2826b87c4201b8352afda1b93d",
                "md5": "8cbc84e1c2fc39b28361a615378f9801",
                "sha256": "0512d54ae23bd4a69278e04f42b651d7c71b63ba6043e2c6bd97b11329692f99"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8cbc84e1c2fc39b28361a615378f9801",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 1051002,
            "upload_time": "2024-02-20T12:34:09",
            "upload_time_iso_8601": "2024-02-20T12:34:09.600133Z",
            "url": "https://files.pythonhosted.org/packages/22/d3/2652e42819060281420ceb7c686702bdae2826b87c4201b8352afda1b93d/clickhouse_driver-0.2.7-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "475be56ec71ae31de44d301c841179893f070e034daf6a52f9290e1962a3f2ab",
                "md5": "a8afa333f592e5e93e96a512d7a75ea1",
                "sha256": "5bc2b67e7e68f74ccebf95a8b3a13f13a7c34b89b32c9813103221de14c06c8b"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "a8afa333f592e5e93e96a512d7a75ea1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 1059890,
            "upload_time": "2024-02-20T12:34:11",
            "upload_time_iso_8601": "2024-02-20T12:34:11.755301Z",
            "url": "https://files.pythonhosted.org/packages/47/5b/e56ec71ae31de44d301c841179893f070e034daf6a52f9290e1962a3f2ab/clickhouse_driver-0.2.7-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6170c19aa86357b08d52856f0477f86e2c52da3a51c88d43aa24d524dfe2854a",
                "md5": "58a80ba69bc2c22646cd3e46ba481c2a",
                "sha256": "04a37cdafc671cb796af3e566cef0aeb39111d82aebeecd9106a049434953b26"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58a80ba69bc2c22646cd3e46ba481c2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 1028974,
            "upload_time": "2024-02-20T12:34:14",
            "upload_time_iso_8601": "2024-02-20T12:34:14.456280Z",
            "url": "https://files.pythonhosted.org/packages/61/70/c19aa86357b08d52856f0477f86e2c52da3a51c88d43aa24d524dfe2854a/clickhouse_driver-0.2.7-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba26de67082465fd3234d2bd3283b8c527a43f3bafa0bde3d3659ed0e4ca00e0",
                "md5": "e472315cb9ae1581d9fed7a70f83a601",
                "sha256": "019538c7c23e976538e5081dd2f77a8a40bf663c638a62d857ff05f42b0c9052"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "e472315cb9ae1581d9fed7a70f83a601",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 196569,
            "upload_time": "2024-02-20T12:34:16",
            "upload_time_iso_8601": "2024-02-20T12:34:16.322605Z",
            "url": "https://files.pythonhosted.org/packages/ba/26/de67082465fd3234d2bd3283b8c527a43f3bafa0bde3d3659ed0e4ca00e0/clickhouse_driver-0.2.7-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d562bd289b55fe833cd48a7e8f18e6e5329f97e64653bd5c8edc5f2f0587116",
                "md5": "c05b1d5880b673e156482744a6d28d91",
                "sha256": "5166643683584bc53fcadda73c65f6a9077feb472f3d167ecef1a1a7024973aa"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c05b1d5880b673e156482744a6d28d91",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7, <4",
            "size": 212192,
            "upload_time": "2024-02-20T12:34:18",
            "upload_time_iso_8601": "2024-02-20T12:34:18.106177Z",
            "url": "https://files.pythonhosted.org/packages/0d/56/2bd289b55fe833cd48a7e8f18e6e5329f97e64653bd5c8edc5f2f0587116/clickhouse_driver-0.2.7-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13496e984fc8e665f446d9d72434b6cf9782383073b3010b1a444d8b21efac5d",
                "md5": "e4f632f5a0cfa56815af926ca7785d22",
                "sha256": "59affab7b5a3c4aab5b6a730f606575efdefea213458de2eb14927ee4e0640f4"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4f632f5a0cfa56815af926ca7785d22",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 220515,
            "upload_time": "2024-02-20T12:34:20",
            "upload_time_iso_8601": "2024-02-20T12:34:20.303463Z",
            "url": "https://files.pythonhosted.org/packages/13/49/6e984fc8e665f446d9d72434b6cf9782383073b3010b1a444d8b21efac5d/clickhouse_driver-0.2.7-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd12beca4170f36569c42001a6c8837d8592d82eeb4dc4f419767cf69ebbd1fc",
                "md5": "bbe60edc3516582954bdc50bfacd160e",
                "sha256": "dcb93dd07fe65ac4f1a2bc0b8967911d4ad2152dbee000f025ea5cb575da5ecb"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bbe60edc3516582954bdc50bfacd160e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 215028,
            "upload_time": "2024-02-20T12:34:22",
            "upload_time_iso_8601": "2024-02-20T12:34:22.420748Z",
            "url": "https://files.pythonhosted.org/packages/cd/12/beca4170f36569c42001a6c8837d8592d82eeb4dc4f419767cf69ebbd1fc/clickhouse_driver-0.2.7-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39a82011dc69bc0edf00bef8699aac36c11f93620640665918e6053914ced92e",
                "md5": "503bcc8d0876d655f826d3d54905b59c",
                "sha256": "55a48019b79181ae1ca90e980e74c5d413c3f8829f6744e2b056646c2d435a1a"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "503bcc8d0876d655f826d3d54905b59c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 1016085,
            "upload_time": "2024-02-20T12:34:24",
            "upload_time_iso_8601": "2024-02-20T12:34:24.618740Z",
            "url": "https://files.pythonhosted.org/packages/39/a8/2011dc69bc0edf00bef8699aac36c11f93620640665918e6053914ced92e/clickhouse_driver-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "612dec836d6199716c837ea86d98a6bd55b29892d31e04702c7d8b48f19178da",
                "md5": "0b08667f717391db008f80a81fe32816",
                "sha256": "507463c9157240fd7c3246781e8c30df8db3c80bf68925b36ff3ad4a80c4b924"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0b08667f717391db008f80a81fe32816",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 1044694,
            "upload_time": "2024-02-20T12:34:26",
            "upload_time_iso_8601": "2024-02-20T12:34:26.700623Z",
            "url": "https://files.pythonhosted.org/packages/61/2d/ec836d6199716c837ea86d98a6bd55b29892d31e04702c7d8b48f19178da/clickhouse_driver-0.2.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "754e65da6576fa71bb3b0b0d0a1c11d16b702becc566c3081f71c11e4b57d001",
                "md5": "c4984fe3b3a43bd616145e8546131c2e",
                "sha256": "1e2d8d2295ee9e0cfab8ad77cb635a05da2160334b4f16ed8c3d00fbf39a2343"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c4984fe3b3a43bd616145e8546131c2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 1055684,
            "upload_time": "2024-02-20T12:34:29",
            "upload_time_iso_8601": "2024-02-20T12:34:29.126749Z",
            "url": "https://files.pythonhosted.org/packages/75/4e/65da6576fa71bb3b0b0d0a1c11d16b702becc566c3081f71c11e4b57d001/clickhouse_driver-0.2.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70e32ccaf8b5b6874ccd62050990e88d90c7ed73d49d87270210d1c0fc3d12fb",
                "md5": "f9c66c1287e00ec1272b010db98067da",
                "sha256": "e38c44546dcdb956b5ab0944cb3d51e8c98f816e75bab1a2254c478865bc6e7b"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9c66c1287e00ec1272b010db98067da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 1031142,
            "upload_time": "2024-02-20T12:34:32",
            "upload_time_iso_8601": "2024-02-20T12:34:32.135560Z",
            "url": "https://files.pythonhosted.org/packages/70/e3/2ccaf8b5b6874ccd62050990e88d90c7ed73d49d87270210d1c0fc3d12fb/clickhouse_driver-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdf41862f10aa01ea1bea3ce79c1375997e4093b08b023d06357717a0f9a6feb",
                "md5": "5663ca2096cc25db7f342f0d59d3e45a",
                "sha256": "e6690a2bdd9e7531fe50b53193279f8b35cbcd5c5ee36c0fcc112518a7d24f16"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5663ca2096cc25db7f342f0d59d3e45a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 982285,
            "upload_time": "2024-02-20T12:34:34",
            "upload_time_iso_8601": "2024-02-20T12:34:34.118765Z",
            "url": "https://files.pythonhosted.org/packages/cd/f4/1862f10aa01ea1bea3ce79c1375997e4093b08b023d06357717a0f9a6feb/clickhouse_driver-0.2.7-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": "f841cc8c6a93cc56b00d4bfe17cf49e842b9ee6833292d1bc4993149e1415f10",
                "md5": "42d6c8e3f5147e2bc9a7783b43187c58",
                "sha256": "bc6b4ba0a6467fd09021aa1d87a44fb4589600d61b010fca41e0dfffd0dee322"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "42d6c8e3f5147e2bc9a7783b43187c58",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 1019320,
            "upload_time": "2024-02-20T12:34:36",
            "upload_time_iso_8601": "2024-02-20T12:34:36.588300Z",
            "url": "https://files.pythonhosted.org/packages/f8/41/cc8c6a93cc56b00d4bfe17cf49e842b9ee6833292d1bc4993149e1415f10/clickhouse_driver-0.2.7-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eff69890792dc83f31ea374755a5bc7dbddc5f8676473a83b841b2f84e8806a3",
                "md5": "e8ffe94d63a08ebb50b4e4b9e304d6ff",
                "sha256": "254bbd400eb87ff547a08755bc714f712e11f7a6d3ebbbb7aaa1dd454fb16d44"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e8ffe94d63a08ebb50b4e4b9e304d6ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 987890,
            "upload_time": "2024-02-20T12:34:39",
            "upload_time_iso_8601": "2024-02-20T12:34:39.312595Z",
            "url": "https://files.pythonhosted.org/packages/ef/f6/9890792dc83f31ea374755a5bc7dbddc5f8676473a83b841b2f84e8806a3/clickhouse_driver-0.2.7-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f58c5b7488af25ea7a8b536ae421c5926ead2bd833b54993956efcdb0bcc1a4",
                "md5": "0104fc196e4307bfec9d2662e80ebb85",
                "sha256": "7bbbe3f8b87fc1489bc15fa9c88cc9fac9d4d7d683d076f058c2c83e6ee422fd"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0104fc196e4307bfec9d2662e80ebb85",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 1044095,
            "upload_time": "2024-02-20T12:34:41",
            "upload_time_iso_8601": "2024-02-20T12:34:41.295480Z",
            "url": "https://files.pythonhosted.org/packages/0f/58/c5b7488af25ea7a8b536ae421c5926ead2bd833b54993956efcdb0bcc1a4/clickhouse_driver-0.2.7-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ffb81380703bcdb2f1820fcc37e89348f8d712007556aa42f77323407be84ba",
                "md5": "0e7e248f75c34c950e7cdc57b5186acf",
                "sha256": "745e5b18f0957d932151527f1523d0e516c199de8c589638e5f55ab2559886f3"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "0e7e248f75c34c950e7cdc57b5186acf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 1061319,
            "upload_time": "2024-02-20T12:34:44",
            "upload_time_iso_8601": "2024-02-20T12:34:44.054479Z",
            "url": "https://files.pythonhosted.org/packages/6f/fb/81380703bcdb2f1820fcc37e89348f8d712007556aa42f77323407be84ba/clickhouse_driver-0.2.7-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c427fbd90dfe92ada432f1908074e75ca9d73280ada8bbaa09b8fddb56bb972a",
                "md5": "ad91dfb83095ecf7f6c85cedb0d3e041",
                "sha256": "0fa0357fb5f26149e3df86a117d3678329b85d8827b78a5a09bbf224d8dd4541"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad91dfb83095ecf7f6c85cedb0d3e041",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 1037642,
            "upload_time": "2024-02-20T12:34:47",
            "upload_time_iso_8601": "2024-02-20T12:34:47.237369Z",
            "url": "https://files.pythonhosted.org/packages/c4/27/fbd90dfe92ada432f1908074e75ca9d73280ada8bbaa09b8fddb56bb972a/clickhouse_driver-0.2.7-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0de5b9811069da7406f9b0d7edd3bd727fcd5766acb164a133a40c468600bd6f",
                "md5": "6459d2397650e5f3867d095637a45de7",
                "sha256": "ace652af7ca94ba3cb3a04a5c363e135dc5009f31d8201903e21db9d5daf2358"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "6459d2397650e5f3867d095637a45de7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 196947,
            "upload_time": "2024-02-20T12:34:49",
            "upload_time_iso_8601": "2024-02-20T12:34:49.713697Z",
            "url": "https://files.pythonhosted.org/packages/0d/e5/b9811069da7406f9b0d7edd3bd727fcd5766acb164a133a40c468600bd6f/clickhouse_driver-0.2.7-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33e4b690a252e420782e65ff9bb15380ab77008496eec6f0feaa642fed674628",
                "md5": "244523ec55b31faa835ef13c718bf2a1",
                "sha256": "c0ba68489544df89e4138a14b0ec3e1e5eb102d5d3283a91d9b837c420c0ab97"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "244523ec55b31faa835ef13c718bf2a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7, <4",
            "size": 212207,
            "upload_time": "2024-02-20T12:34:51",
            "upload_time_iso_8601": "2024-02-20T12:34:51.750854Z",
            "url": "https://files.pythonhosted.org/packages/33/e4/b690a252e420782e65ff9bb15380ab77008496eec6f0feaa642fed674628/clickhouse_driver-0.2.7-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca1d57b9171a2b0516dcf8c4816b3ed510430bdca0c313dbf217e03ea342af31",
                "md5": "1954927dcec1b0768a23ddca81d9dc9b",
                "sha256": "66267e4ba21fa66c97ce784a5de2202d3b7d4db3e50bfcdde92830a68f6fae30"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1954927dcec1b0768a23ddca81d9dc9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 218531,
            "upload_time": "2024-02-20T12:34:54",
            "upload_time_iso_8601": "2024-02-20T12:34:54.224514Z",
            "url": "https://files.pythonhosted.org/packages/ca/1d/57b9171a2b0516dcf8c4816b3ed510430bdca0c313dbf217e03ea342af31/clickhouse_driver-0.2.7-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72891cc566d50adddab8baf53385c292d836442a0ed33388db87473fc8b5b59d",
                "md5": "66fe1556630cff6891547b8a9bdf67e3",
                "sha256": "6cf55c285b75c178487407721baef4980b3c6515c9c0c1a6c1ea8b001afe658e"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "66fe1556630cff6891547b8a9bdf67e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 857863,
            "upload_time": "2024-02-20T12:34:56",
            "upload_time_iso_8601": "2024-02-20T12:34:56.343798Z",
            "url": "https://files.pythonhosted.org/packages/72/89/1cc566d50adddab8baf53385c292d836442a0ed33388db87473fc8b5b59d/clickhouse_driver-0.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe052a5954812006f2716c9c3f7a469b5a50b1fe3c77b70ae8a06a6c728c32db",
                "md5": "5fd79079b566361f634ff2942567206b",
                "sha256": "deeb66bb56490db2157f199c6d9aa2c53f046677be430cc834fc1e74eec6e654"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5fd79079b566361f634ff2942567206b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 900297,
            "upload_time": "2024-02-20T12:34:59",
            "upload_time_iso_8601": "2024-02-20T12:34:59.226465Z",
            "url": "https://files.pythonhosted.org/packages/fe/05/2a5954812006f2716c9c3f7a469b5a50b1fe3c77b70ae8a06a6c728c32db/clickhouse_driver-0.2.7-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "590b6eaaeb1e16ceda70040f87408e6be9b626304c14cafd8eb6dd3a99adaf6b",
                "md5": "c846133ef57b97a553ad47ccb0d19c16",
                "sha256": "dfe5b4020939abeeb407b4eead598c954b1573d2d2b4f174f793b196d378b9d9"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c846133ef57b97a553ad47ccb0d19c16",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 899811,
            "upload_time": "2024-02-20T12:35:02",
            "upload_time_iso_8601": "2024-02-20T12:35:02.184482Z",
            "url": "https://files.pythonhosted.org/packages/59/0b/6eaaeb1e16ceda70040f87408e6be9b626304c14cafd8eb6dd3a99adaf6b/clickhouse_driver-0.2.7-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82d81e0d359e92d761eb20ea1dcbc569344b58b3154cd276f47cb85ea430c99a",
                "md5": "cb922c1c83f321f5a6fa89bad6a87d81",
                "sha256": "84d39506b5f8d86a1195ebde1c66aba168f34ebce6ebd828888f0625cac54774"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb922c1c83f321f5a6fa89bad6a87d81",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 871396,
            "upload_time": "2024-02-20T12:35:05",
            "upload_time_iso_8601": "2024-02-20T12:35:05.098174Z",
            "url": "https://files.pythonhosted.org/packages/82/d8/1e0d359e92d761eb20ea1dcbc569344b58b3154cd276f47cb85ea430c99a/clickhouse_driver-0.2.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61889bee787b10846a2c88a16d50ee0fcf064561f8658309ce9fa58e5ccc5dcd",
                "md5": "f4c55f082666ad6a63459386ed892f59",
                "sha256": "f93a27db2dcbbd3ecad36e8df4395d047cb7410e2dc69f6d037674e15442f4ee"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f4c55f082666ad6a63459386ed892f59",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 839860,
            "upload_time": "2024-02-20T12:35:07",
            "upload_time_iso_8601": "2024-02-20T12:35:07.847468Z",
            "url": "https://files.pythonhosted.org/packages/61/88/9bee787b10846a2c88a16d50ee0fcf064561f8658309ce9fa58e5ccc5dcd/clickhouse_driver-0.2.7-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": "f753b146c45506ead3320790cc20e81151e945b858c8b67cad13213ed2c76b65",
                "md5": "5478c0764d96e21f62b31924bf4011e1",
                "sha256": "ebc29e501e47ecbfd44c89c0e5c87b2a722049d38b9e93fdd4bea510a82e16ac"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5478c0764d96e21f62b31924bf4011e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 868645,
            "upload_time": "2024-02-20T12:35:10",
            "upload_time_iso_8601": "2024-02-20T12:35:10.801614Z",
            "url": "https://files.pythonhosted.org/packages/f7/53/b146c45506ead3320790cc20e81151e945b858c8b67cad13213ed2c76b65/clickhouse_driver-0.2.7-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea2096988a5a1dff4e435ea3c78024b21a8477cc80ecd45c28c33d916b19e8d8",
                "md5": "c05f915bbca270bbd8aa3823036f3674",
                "sha256": "f9cc8c186fea09a94d89e5c9c4e8d05ec3a80e2f6d25673c48efec8117a13cfc"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c05f915bbca270bbd8aa3823036f3674",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 851687,
            "upload_time": "2024-02-20T12:35:14",
            "upload_time_iso_8601": "2024-02-20T12:35:14.008340Z",
            "url": "https://files.pythonhosted.org/packages/ea/20/96988a5a1dff4e435ea3c78024b21a8477cc80ecd45c28c33d916b19e8d8/clickhouse_driver-0.2.7-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c1f6a81ad9abcf51e5a263e4302e51d045b7e9d62032e6fdb6a8a2c3fb83d0e",
                "md5": "bc1af5a8660a10cacf977603147c294f",
                "sha256": "0757dfde5410c42230b24825ea3ab904a78160520e5ceb953482e133e368733b"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bc1af5a8660a10cacf977603147c294f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 898779,
            "upload_time": "2024-02-20T12:35:17",
            "upload_time_iso_8601": "2024-02-20T12:35:17.097688Z",
            "url": "https://files.pythonhosted.org/packages/2c/1f/6a81ad9abcf51e5a263e4302e51d045b7e9d62032e6fdb6a8a2c3fb83d0e/clickhouse_driver-0.2.7-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00e6806e791fc617c4360415333c44af640aba9570f239bfd721b27461105c22",
                "md5": "9fd511883a8123f9479355bbadbbec04",
                "sha256": "c9f88818cf411f928c29ba295c677cd95773bd256b8490f5655fb489e0c6658c"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "9fd511883a8123f9479355bbadbbec04",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 907580,
            "upload_time": "2024-02-20T12:35:19",
            "upload_time_iso_8601": "2024-02-20T12:35:19.313348Z",
            "url": "https://files.pythonhosted.org/packages/00/e6/806e791fc617c4360415333c44af640aba9570f239bfd721b27461105c22/clickhouse_driver-0.2.7-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4f6bf5f735279c8956a96896ddcaaef3e3bd6474824c191c187ce5d0df41e67",
                "md5": "f7b8446764e643f7a7f995713992af6d",
                "sha256": "e19952f158ebe274c65ffeb294ba378d75048a48f31b77573948d606bed019d5"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7b8446764e643f7a7f995713992af6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 882797,
            "upload_time": "2024-02-20T12:35:21",
            "upload_time_iso_8601": "2024-02-20T12:35:21.927666Z",
            "url": "https://files.pythonhosted.org/packages/f4/f6/bf5f735279c8956a96896ddcaaef3e3bd6474824c191c187ce5d0df41e67/clickhouse_driver-0.2.7-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a3c75f7f7d897121c72e66d7a681ed259d95bf450c584b2093833285bc647a9",
                "md5": "6bbfaf50cc209e1a58e841b8f7decdb8",
                "sha256": "008b1f32c7c68564de8051482b72a5289b6933bca9d9b1ad1474dd448d6768ba"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "6bbfaf50cc209e1a58e841b8f7decdb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 196922,
            "upload_time": "2024-02-20T12:35:24",
            "upload_time_iso_8601": "2024-02-20T12:35:24.505765Z",
            "url": "https://files.pythonhosted.org/packages/9a/3c/75f7f7d897121c72e66d7a681ed259d95bf450c584b2093833285bc647a9/clickhouse_driver-0.2.7-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e20379712c7812a17e41621abf6e6d521613b5bb42c53eb60674c84acfe53ae",
                "md5": "8d5038f6f0614c853e6ba22b799d847d",
                "sha256": "622933cc9834c39f03de5d43a12f13fc7133d31d6d2597e67866d4a549ca9e60"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8d5038f6f0614c853e6ba22b799d847d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7, <4",
            "size": 212795,
            "upload_time": "2024-02-20T12:35:26",
            "upload_time_iso_8601": "2024-02-20T12:35:26.468484Z",
            "url": "https://files.pythonhosted.org/packages/5e/20/379712c7812a17e41621abf6e6d521613b5bb42c53eb60674c84acfe53ae/clickhouse_driver-0.2.7-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2de1a1b280101b34378dcf16a2f481eb1b481473be55066e1bdce2b79fdff70",
                "md5": "b904a939ef6acfa7c3cffaca626b7d77",
                "sha256": "92540581e5b5f36d915f14d05c30244870fb123c74b38c645fa47663053c5471"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b904a939ef6acfa7c3cffaca626b7d77",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 219945,
            "upload_time": "2024-02-20T12:35:28",
            "upload_time_iso_8601": "2024-02-20T12:35:28.347705Z",
            "url": "https://files.pythonhosted.org/packages/e2/de/1a1b280101b34378dcf16a2f481eb1b481473be55066e1bdce2b79fdff70/clickhouse_driver-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f88bb1dc64bae4b3d04678a86e7c8562334c53bad2e94a2b029000ccfe47c5c6",
                "md5": "49cb7d8351ffb00d57262bf75ff1715f",
                "sha256": "02dfadc6111b64e01c20b8c11266cab97d4f06685a392a183af437f2f1afb990"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "49cb7d8351ffb00d57262bf75ff1715f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 214877,
            "upload_time": "2024-02-20T12:35:30",
            "upload_time_iso_8601": "2024-02-20T12:35:30.881118Z",
            "url": "https://files.pythonhosted.org/packages/f8/8b/b1dc64bae4b3d04678a86e7c8562334c53bad2e94a2b029000ccfe47c5c6/clickhouse_driver-0.2.7-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43a610090bfa89a63fc355cd529f5fe9ba5db40d51a88e19ba2d81dd44771183",
                "md5": "5963ff4b0f9af97c422975f0f57237e5",
                "sha256": "e3ca17fece86fe85d97705024bec881978271931b3d00db273c9d63244f7d606"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5963ff4b0f9af97c422975f0f57237e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 941382,
            "upload_time": "2024-02-20T12:35:33",
            "upload_time_iso_8601": "2024-02-20T12:35:33.196994Z",
            "url": "https://files.pythonhosted.org/packages/43/a6/10090bfa89a63fc355cd529f5fe9ba5db40d51a88e19ba2d81dd44771183/clickhouse_driver-0.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e81e3040110305cc7a2406cb14a1f7a31b1565648e03f08f3c304b1b0d245edf",
                "md5": "bd74134033b68a090cef13e64c928726",
                "sha256": "76474f1315ca3ab484ae28ad085b8f756c8b9a755882f93912b2149290482033"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bd74134033b68a090cef13e64c928726",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 993688,
            "upload_time": "2024-02-20T12:35:35",
            "upload_time_iso_8601": "2024-02-20T12:35:35.409241Z",
            "url": "https://files.pythonhosted.org/packages/e8/1e/3040110305cc7a2406cb14a1f7a31b1565648e03f08f3c304b1b0d245edf/clickhouse_driver-0.2.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "968fd0bd8308feacf15516d666cf5b2ec23d66b937f591d86027271b4a5cf9d2",
                "md5": "ad9954ffbd9b655a495637525c14eb1f",
                "sha256": "f5c0ff12368b34aaf58dd948b0819e5b54d261911de334d3f048328dc9354013"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ad9954ffbd9b655a495637525c14eb1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 989727,
            "upload_time": "2024-02-20T12:35:38",
            "upload_time_iso_8601": "2024-02-20T12:35:38.501909Z",
            "url": "https://files.pythonhosted.org/packages/96/8f/d0bd8308feacf15516d666cf5b2ec23d66b937f591d86027271b4a5cf9d2/clickhouse_driver-0.2.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adf48d27613ee4179c4bddced7814532d50fd430e341af9b12352ec3ba0ace85",
                "md5": "cc58b6d2af146c0feab3cd7075ba4b36",
                "sha256": "8cd441b17294e90e313b08fabf84fcc782c191d2b9b2a924f163928202db6fcc"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc58b6d2af146c0feab3cd7075ba4b36",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 955562,
            "upload_time": "2024-02-20T12:35:40",
            "upload_time_iso_8601": "2024-02-20T12:35:40.535490Z",
            "url": "https://files.pythonhosted.org/packages/ad/f4/8d27613ee4179c4bddced7814532d50fd430e341af9b12352ec3ba0ace85/clickhouse_driver-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f124d4e16aa087efc8b8e08479ed8840003e0ffe9f5ca8a5e54cdc440cabcbc7",
                "md5": "1602ae07ca8fe06013c495de7564f320",
                "sha256": "62aa158f61d7d84c58e8cd75b3b8340b28607e5a70132395078f578d518aaae3"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1602ae07ca8fe06013c495de7564f320",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 927123,
            "upload_time": "2024-02-20T12:35:42",
            "upload_time_iso_8601": "2024-02-20T12:35:42.623247Z",
            "url": "https://files.pythonhosted.org/packages/f1/24/d4e16aa087efc8b8e08479ed8840003e0ffe9f5ca8a5e54cdc440cabcbc7/clickhouse_driver-0.2.7-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": "e4a92c3a4019ca80c09c693b1dd2dec215e2c8dfdef5e99fffc6eedab3908929",
                "md5": "26fe29ac22b2495d7f9e3a91c23603aa",
                "sha256": "bcb2a39a1fef8bf1b581f06125c2a84a5b92c939b079d1a95126e3207b05dc77"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "26fe29ac22b2495d7f9e3a91c23603aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 976509,
            "upload_time": "2024-02-20T12:35:45",
            "upload_time_iso_8601": "2024-02-20T12:35:45.750603Z",
            "url": "https://files.pythonhosted.org/packages/e4/a9/2c3a4019ca80c09c693b1dd2dec215e2c8dfdef5e99fffc6eedab3908929/clickhouse_driver-0.2.7-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59d722efb3d9cbb723030b03c3f57899c002c9af941b8e9f1d446304c328ee82",
                "md5": "85a7fd213f46cf539f91798c3681546d",
                "sha256": "1f29cc641a65e89a51a15f6d195f565ad2761d1bd653408c6b4046c987c5fb99"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "85a7fd213f46cf539f91798c3681546d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 962231,
            "upload_time": "2024-02-20T12:35:47",
            "upload_time_iso_8601": "2024-02-20T12:35:47.957181Z",
            "url": "https://files.pythonhosted.org/packages/59/d7/22efb3d9cbb723030b03c3f57899c002c9af941b8e9f1d446304c328ee82/clickhouse_driver-0.2.7-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f68075870c29e10da9808a033bf66221e6a0b6a19f7b8edade8613b53488e37b",
                "md5": "c36957267f411487617eed15d4f9004a",
                "sha256": "ac1a43690696bda46c9a23fc6fd79b6fe22d428a18e880bdbdf5e6aeb31008c5"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c36957267f411487617eed15d4f9004a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 1017357,
            "upload_time": "2024-02-20T12:35:50",
            "upload_time_iso_8601": "2024-02-20T12:35:50.240449Z",
            "url": "https://files.pythonhosted.org/packages/f6/80/75870c29e10da9808a033bf66221e6a0b6a19f7b8edade8613b53488e37b/clickhouse_driver-0.2.7-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e21de39b4d7c217f31050b927e8487adebdba0b6f0bf80d896814105dbf97795",
                "md5": "27dabc84a38b2a3642d5de906d71a18a",
                "sha256": "1dd5ea4584c42f85d96ddfa7d07da2abb35a797c45e4d3a66ace149ee4977cad"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "27dabc84a38b2a3642d5de906d71a18a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 1021784,
            "upload_time": "2024-02-20T12:35:52",
            "upload_time_iso_8601": "2024-02-20T12:35:52.530815Z",
            "url": "https://files.pythonhosted.org/packages/e2/1d/e39b4d7c217f31050b927e8487adebdba0b6f0bf80d896814105dbf97795/clickhouse_driver-0.2.7-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d903b6845655eb695f0854ab43fd40b055f9773b52e71653365c79d93cdbf53",
                "md5": "cad8c68e70c7444cc4cca22459d10ae0",
                "sha256": "a736c0af858a3c83af03848b18754ab18dc594cc7f3bf6be0b1fac682def182c"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cad8c68e70c7444cc4cca22459d10ae0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 991034,
            "upload_time": "2024-02-20T12:35:54",
            "upload_time_iso_8601": "2024-02-20T12:35:54.760063Z",
            "url": "https://files.pythonhosted.org/packages/7d/90/3b6845655eb695f0854ab43fd40b055f9773b52e71653365c79d93cdbf53/clickhouse_driver-0.2.7-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f45ee5bf5355bc34ceb6456a8cc15b6f438ba0ee4d1cb08d6d12b0708dc239c6",
                "md5": "52a928c8945d53f1fbbef9337740d89a",
                "sha256": "6cb8ca47f5818c1bc5814b9ff775e383f3c50059b1fd28a02cb9be1b666929f8"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "52a928c8945d53f1fbbef9337740d89a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 198512,
            "upload_time": "2024-02-20T12:35:57",
            "upload_time_iso_8601": "2024-02-20T12:35:57.425549Z",
            "url": "https://files.pythonhosted.org/packages/f4/5e/e5bf5355bc34ceb6456a8cc15b6f438ba0ee4d1cb08d6d12b0708dc239c6/clickhouse_driver-0.2.7-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7889143e721c088eec96efcebcce2cc806d354ec7b3fde9e3922ce0defb8b2b",
                "md5": "bde2bf71caf826fae2f994c152776d95",
                "sha256": "a90e7dc92985669a5e6569356bb3028d9d475f95006d4487cb0789aa53f9489c"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bde2bf71caf826fae2f994c152776d95",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7, <4",
            "size": 213947,
            "upload_time": "2024-02-20T12:35:59",
            "upload_time_iso_8601": "2024-02-20T12:35:59.178262Z",
            "url": "https://files.pythonhosted.org/packages/a7/88/9143e721c088eec96efcebcce2cc806d354ec7b3fde9e3922ce0defb8b2b/clickhouse_driver-0.2.7-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17d9ebde8e754b777c7c7b135d3317d8d55887633c7b2740426bba8357b53a0d",
                "md5": "f3a2b734d5555bf04161e4bc4d303d63",
                "sha256": "04b77cd6c583da9135db4a62c5a7999ae248c2dbfc0cb8e8a3d8a853b1fbfa11"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f3a2b734d5555bf04161e4bc4d303d63",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 219458,
            "upload_time": "2024-02-20T12:36:01",
            "upload_time_iso_8601": "2024-02-20T12:36:01.388020Z",
            "url": "https://files.pythonhosted.org/packages/17/d9/ebde8e754b777c7c7b135d3317d8d55887633c7b2740426bba8357b53a0d/clickhouse_driver-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "327f570f38a2aea1f6f00e690c75685bc3784ab9a96f266820ce7bd03459423c",
                "md5": "a13e6b913471e56d6333b9354015aec4",
                "sha256": "c7671f8c0e8960d766b2e0eaefcae3088fccdd3920e9cd3dee8e344cfd0a6929"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a13e6b913471e56d6333b9354015aec4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 214330,
            "upload_time": "2024-02-20T12:36:03",
            "upload_time_iso_8601": "2024-02-20T12:36:03.589974Z",
            "url": "https://files.pythonhosted.org/packages/32/7f/570f38a2aea1f6f00e690c75685bc3784ab9a96f266820ce7bd03459423c/clickhouse_driver-0.2.7-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cc0f93a14b68f8f781ee49cb85bf2685770415abdadd8397179981bdd2472c0",
                "md5": "2c6345cffe51617db4267aa8c6e3c009",
                "sha256": "502d7cd28522b95a399e993ffd48487e8c12c50ce2d4e89b77b938f945304405"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2c6345cffe51617db4267aa8c6e3c009",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 929392,
            "upload_time": "2024-02-20T12:36:07",
            "upload_time_iso_8601": "2024-02-20T12:36:07.491074Z",
            "url": "https://files.pythonhosted.org/packages/0c/c0/f93a14b68f8f781ee49cb85bf2685770415abdadd8397179981bdd2472c0/clickhouse_driver-0.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f42db3f4a023fce069baabd58bcf537646ce9b43c91dd6e02b293ca9762f88d8",
                "md5": "67fbe9695c19dd747da7e41c345f5af3",
                "sha256": "969739279f4010e7b5b6b2c9d2ab56a463aed11fdaed5e02424c1b3915f144f8"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "67fbe9695c19dd747da7e41c345f5af3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 974335,
            "upload_time": "2024-02-20T12:36:09",
            "upload_time_iso_8601": "2024-02-20T12:36:09.612032Z",
            "url": "https://files.pythonhosted.org/packages/f4/2d/b3f4a023fce069baabd58bcf537646ce9b43c91dd6e02b293ca9762f88d8/clickhouse_driver-0.2.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7b135df825b58851c80e1eec8af6de0f305de4950bb2db7fb9fccc1c313f76d",
                "md5": "eeac5b0be71e2f06a82b89cfab9acacb",
                "sha256": "ed34b60f741eeb02407ea72180d77cbfc368c1be6fc2f2ff8319d1856ce67e10"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "eeac5b0be71e2f06a82b89cfab9acacb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 972222,
            "upload_time": "2024-02-20T12:36:11",
            "upload_time_iso_8601": "2024-02-20T12:36:11.707104Z",
            "url": "https://files.pythonhosted.org/packages/a7/b1/35df825b58851c80e1eec8af6de0f305de4950bb2db7fb9fccc1c313f76d/clickhouse_driver-0.2.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37dbbef12b37b7edfdbc70b920c58a15b9d880ea142ea726c626e62055783e34",
                "md5": "98fc110c5cd1d04223b72a656ee3ae5a",
                "sha256": "a667b48927f4420eb8c03fa33369edfbdf359a788897a01ac945263a2a611461"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98fc110c5cd1d04223b72a656ee3ae5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 942667,
            "upload_time": "2024-02-20T12:36:14",
            "upload_time_iso_8601": "2024-02-20T12:36:14.732754Z",
            "url": "https://files.pythonhosted.org/packages/37/db/bef12b37b7edfdbc70b920c58a15b9d880ea142ea726c626e62055783e34/clickhouse_driver-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9d948acfe8d94f70e7ef0389416cbefa5de637f437c709af8eb433ee663efb4",
                "md5": "fd025f04287ac9d0c9bb17ea28137ecb",
                "sha256": "1f93aa3a90f3847872d7464ec9076482b2e812c4e7d61682daedffdf3471be00"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fd025f04287ac9d0c9bb17ea28137ecb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 915229,
            "upload_time": "2024-02-20T12:36:17",
            "upload_time_iso_8601": "2024-02-20T12:36:17.354017Z",
            "url": "https://files.pythonhosted.org/packages/a9/d9/48acfe8d94f70e7ef0389416cbefa5de637f437c709af8eb433ee663efb4/clickhouse_driver-0.2.7-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": "71082ad349e3ca8bd5584a83a3fea1311f9f7eb712f5e07ad36f1554b037d6c1",
                "md5": "62c920d0bdd33bb4e5fb443ce6d7a56e",
                "sha256": "190890667215691fdf2155c3b233b39146054ab1cd854c7d91221e6ed633d71e"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "62c920d0bdd33bb4e5fb443ce6d7a56e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 935153,
            "upload_time": "2024-02-20T12:36:19",
            "upload_time_iso_8601": "2024-02-20T12:36:19.946538Z",
            "url": "https://files.pythonhosted.org/packages/71/08/2ad349e3ca8bd5584a83a3fea1311f9f7eb712f5e07ad36f1554b037d6c1/clickhouse_driver-0.2.7-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a42f50cdc0fb506d4cbcec37c63e37ac180c582b5285a930ceb0ba16df7b7fd0",
                "md5": "c9ead99a0ce41595b7e443445cfc4679",
                "sha256": "ff280aeac5e96c764cd31ba1077c95601337b9a97fb0b9ed4d24c64431f2c322"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c9ead99a0ce41595b7e443445cfc4679",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 922602,
            "upload_time": "2024-02-20T12:36:22",
            "upload_time_iso_8601": "2024-02-20T12:36:22.228742Z",
            "url": "https://files.pythonhosted.org/packages/a4/2f/50cdc0fb506d4cbcec37c63e37ac180c582b5285a930ceb0ba16df7b7fd0/clickhouse_driver-0.2.7-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc469ec4702b47817ed18d402a47ad7b104f408a567d341bd50db65e9214a15e",
                "md5": "e0cfd0f62480d6e864b55da2b5d41de1",
                "sha256": "01e63e35d2ab55b8eb48facf6e951968c80d27ee6703aa6c91c73d9d0a4d0efe"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e0cfd0f62480d6e864b55da2b5d41de1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 977995,
            "upload_time": "2024-02-20T12:36:25",
            "upload_time_iso_8601": "2024-02-20T12:36:25.262422Z",
            "url": "https://files.pythonhosted.org/packages/bc/46/9ec4702b47817ed18d402a47ad7b104f408a567d341bd50db65e9214a15e/clickhouse_driver-0.2.7-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9ac545ff7d94953d25c70d1dee3d16ae31c80eb1e640d3a1c9dd008d3af5dbc",
                "md5": "0a548bf8ba07304c73feffe9f97bd857",
                "sha256": "a29fb24b910dafc8c11ba882797d13ec0323a97dce80a57673116fa893d1b669"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "0a548bf8ba07304c73feffe9f97bd857",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 985264,
            "upload_time": "2024-02-20T12:36:28",
            "upload_time_iso_8601": "2024-02-20T12:36:28.546494Z",
            "url": "https://files.pythonhosted.org/packages/c9/ac/545ff7d94953d25c70d1dee3d16ae31c80eb1e640d3a1c9dd008d3af5dbc/clickhouse_driver-0.2.7-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0912ee2373e3dbc22460ef098b828a88ba1829f18125fb66166df5eadcdb6376",
                "md5": "57099ab2ebd11afc9759ab6a2c511003",
                "sha256": "5f229a7853fc767e63143ea69889d49f6fd5623adc2f7b0f7eb360117d7e91a5"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57099ab2ebd11afc9759ab6a2c511003",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 952282,
            "upload_time": "2024-02-20T12:36:30",
            "upload_time_iso_8601": "2024-02-20T12:36:30.865981Z",
            "url": "https://files.pythonhosted.org/packages/09/12/ee2373e3dbc22460ef098b828a88ba1829f18125fb66166df5eadcdb6376/clickhouse_driver-0.2.7-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c964df3cbfc658885932aac472b04420c98106a01fd5bd2d3e304754b2aeb0d",
                "md5": "8b3b3b40443af29af77dcfdd6671f7d5",
                "sha256": "b7f34ad2ed509f48f8ed1f9b96e89765173a7b35d286c7350aa85934a11c0f49"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "8b3b3b40443af29af77dcfdd6671f7d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 198401,
            "upload_time": "2024-02-20T12:36:33",
            "upload_time_iso_8601": "2024-02-20T12:36:33.340614Z",
            "url": "https://files.pythonhosted.org/packages/3c/96/4df3cbfc658885932aac472b04420c98106a01fd5bd2d3e304754b2aeb0d/clickhouse_driver-0.2.7-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d860c871440b85bd373341375b7b30b91ad1d9688db1872daa948ee513a29876",
                "md5": "2ecaef8758079c08290f42acddbb2079",
                "sha256": "78b166597afbe490cc0cdac44fed8c8b81668f87125601dda17b154f237eef5d"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2ecaef8758079c08290f42acddbb2079",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7, <4",
            "size": 213394,
            "upload_time": "2024-02-20T12:36:36",
            "upload_time_iso_8601": "2024-02-20T12:36:36.917441Z",
            "url": "https://files.pythonhosted.org/packages/d8/60/c871440b85bd373341375b7b30b91ad1d9688db1872daa948ee513a29876/clickhouse_driver-0.2.7-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae5c30f3717ef8177a6fb1d1ee4e7040eeaf5997d4d19c363be8d60d3899fc4f",
                "md5": "a279bf1e689eaeada28f22cb29dfe7f2",
                "sha256": "16ab64beb8d079cb9b3200539539a35168f524eedf890c9acefb719e25bdc96e"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a279bf1e689eaeada28f22cb29dfe7f2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7, <4",
            "size": 196551,
            "upload_time": "2024-02-20T12:36:39",
            "upload_time_iso_8601": "2024-02-20T12:36:39.052344Z",
            "url": "https://files.pythonhosted.org/packages/ae/5c/30f3717ef8177a6fb1d1ee4e7040eeaf5997d4d19c363be8d60d3899fc4f/clickhouse_driver-0.2.7-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9aeb4349c242caa0a61ae666d58dd3c226938dd81b4277336ed59c8fb7e26bbd",
                "md5": "ead81acd73f23d251b74f8300dc41ac6",
                "sha256": "03e28fd50fc7c54874bf8e638a2ea87f73ae35bfbbf90123fdb395f38d62f159"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ead81acd73f23d251b74f8300dc41ac6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7, <4",
            "size": 219446,
            "upload_time": "2024-02-20T12:36:41",
            "upload_time_iso_8601": "2024-02-20T12:36:41.348361Z",
            "url": "https://files.pythonhosted.org/packages/9a/eb/4349c242caa0a61ae666d58dd3c226938dd81b4277336ed59c8fb7e26bbd/clickhouse_driver-0.2.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87461d5ba495ccd79e5af4f49d8c4874dd3287f425f1049644fc9406a2519f84",
                "md5": "a99d098c4b69e108761d862770c0c236",
                "sha256": "0677b8350acd8d186b6acd0026b62dd262d6fee428a5fa3ad9561908d4b02c39"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a99d098c4b69e108761d862770c0c236",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7, <4",
            "size": 226957,
            "upload_time": "2024-02-20T12:36:43",
            "upload_time_iso_8601": "2024-02-20T12:36:43.330651Z",
            "url": "https://files.pythonhosted.org/packages/87/46/1d5ba495ccd79e5af4f49d8c4874dd3287f425f1049644fc9406a2519f84/clickhouse_driver-0.2.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4469848386c372be86730b740e9640ed087ba4cfa0163dabd556959df29b68f1",
                "md5": "11a717a62430a60510a0ce43db5f0b0e",
                "sha256": "a2f3c9e2182809131701bb28a606dec90525c7ab20490714714a4b3eb015454b"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "11a717a62430a60510a0ce43db5f0b0e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7, <4",
            "size": 232605,
            "upload_time": "2024-02-20T12:36:45",
            "upload_time_iso_8601": "2024-02-20T12:36:45.632472Z",
            "url": "https://files.pythonhosted.org/packages/44/69/848386c372be86730b740e9640ed087ba4cfa0163dabd556959df29b68f1/clickhouse_driver-0.2.7-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": "298ac4ccdcbf20b522f17d954951de3055306635ddaf5b634a45e44871544a3b",
                "md5": "8b00e04b39442243709e665a8bb1489e",
                "sha256": "e03a1a1b30cc58c9bd2cbe25bf5e40b1f1d16d52d44ddefb3af50435d1ed613c"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8b00e04b39442243709e665a8bb1489e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7, <4",
            "size": 197886,
            "upload_time": "2024-02-20T12:36:47",
            "upload_time_iso_8601": "2024-02-20T12:36:47.855623Z",
            "url": "https://files.pythonhosted.org/packages/29/8a/c4ccdcbf20b522f17d954951de3055306635ddaf5b634a45e44871544a3b/clickhouse_driver-0.2.7-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf0bae0e1fb731352457526ca5416c547c1283b0e0c25545645652c0ebce6e12",
                "md5": "7690ec355a18d0d86cbfce7521a73947",
                "sha256": "a1be8081306a4beb12444ed8e3208e1eb6c01ed207c471b33009c13504c88139"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7690ec355a18d0d86cbfce7521a73947",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7, <4",
            "size": 194417,
            "upload_time": "2024-02-20T12:36:49",
            "upload_time_iso_8601": "2024-02-20T12:36:49.892991Z",
            "url": "https://files.pythonhosted.org/packages/bf/0b/ae0e1fb731352457526ca5416c547c1283b0e0c25545645652c0ebce6e12/clickhouse_driver-0.2.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a222efdeb0a48b5a6ad7f1d6f990f140f9deabbdec6a59186768aeef6416f86",
                "md5": "107c40ac033ab720735d8dbaeb8dddfe",
                "sha256": "933b40722cbca9b1123a5bb2fb4bafafd234deae0f3481125cb6b6fa1d39aa84"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "107c40ac033ab720735d8dbaeb8dddfe",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7, <4",
            "size": 218458,
            "upload_time": "2024-02-20T12:36:51",
            "upload_time_iso_8601": "2024-02-20T12:36:51.734913Z",
            "url": "https://files.pythonhosted.org/packages/9a/22/2efdeb0a48b5a6ad7f1d6f990f140f9deabbdec6a59186768aeef6416f86/clickhouse_driver-0.2.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9cb8afe0944b7e3d5dc2490a645c223ff89525b85988c6b4baef303b267cf5e",
                "md5": "30d4b4e056ebf68859b17f38bb73b373",
                "sha256": "3054b5022f9bf15a5f4663a7cd190f466e70a2d7b8d45429d8742c515b556c10"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30d4b4e056ebf68859b17f38bb73b373",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7, <4",
            "size": 225466,
            "upload_time": "2024-02-20T12:36:54",
            "upload_time_iso_8601": "2024-02-20T12:36:54.089949Z",
            "url": "https://files.pythonhosted.org/packages/b9/cb/8afe0944b7e3d5dc2490a645c223ff89525b85988c6b4baef303b267cf5e/clickhouse_driver-0.2.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20c4f358a9199d5fe2c354b48ee8d20212fa569a24f4008f6fc5a05553e8db50",
                "md5": "b57afb10c6ea0c171582d283826c0107",
                "sha256": "61744760ee046c9a268cb801ca21bfe44c4873db9901a7cd0f3ca8830205feff"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b57afb10c6ea0c171582d283826c0107",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7, <4",
            "size": 231105,
            "upload_time": "2024-02-20T12:36:57",
            "upload_time_iso_8601": "2024-02-20T12:36:57.125785Z",
            "url": "https://files.pythonhosted.org/packages/20/c4/f358a9199d5fe2c354b48ee8d20212fa569a24f4008f6fc5a05553e8db50/clickhouse_driver-0.2.7-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": "4bdc0e2a0c1dfca6efcd9be5ab720e14e62e245ef0b882e03d285cf2bdc23ebe",
                "md5": "6baaaf717f9a531fa51795a8926b6f94",
                "sha256": "5e28427e05a72e7a4c3672e36703a2d80107ee0b3ab537e3380d726c96b07821"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6baaaf717f9a531fa51795a8926b6f94",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7, <4",
            "size": 196632,
            "upload_time": "2024-02-20T12:36:59",
            "upload_time_iso_8601": "2024-02-20T12:36:59.839459Z",
            "url": "https://files.pythonhosted.org/packages/4b/dc/0e2a0c1dfca6efcd9be5ab720e14e62e245ef0b882e03d285cf2bdc23ebe/clickhouse_driver-0.2.7-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e41c677e97ac826339e9a580c9a8f696d56f81dc5e405c389c6890550c1e172",
                "md5": "5eb91a65d611a9d78737dc99910f5573",
                "sha256": "c483f5ec836ae87803478f2a7b9daf15343078edd6a8be7364dd9db64905bbd0"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5eb91a65d611a9d78737dc99910f5573",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7, <4",
            "size": 194358,
            "upload_time": "2024-02-20T12:37:02",
            "upload_time_iso_8601": "2024-02-20T12:37:02.091956Z",
            "url": "https://files.pythonhosted.org/packages/9e/41/c677e97ac826339e9a580c9a8f696d56f81dc5e405c389c6890550c1e172/clickhouse_driver-0.2.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a97a4be18ec097dcead561bc32d44a7e414cc064e22fbb2a48ed615a21c1008b",
                "md5": "cf98396950cbffcdb904cda2e2fab37b",
                "sha256": "28220b794874e68bc2f06dbfff5748f1c5a3236922f59e127abd58d44ae20a3f"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cf98396950cbffcdb904cda2e2fab37b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7, <4",
            "size": 218471,
            "upload_time": "2024-02-20T12:37:04",
            "upload_time_iso_8601": "2024-02-20T12:37:04.117385Z",
            "url": "https://files.pythonhosted.org/packages/a9/7a/4be18ec097dcead561bc32d44a7e414cc064e22fbb2a48ed615a21c1008b/clickhouse_driver-0.2.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbce83e4958f68a994f032fb1bdfa174feb36bacd21c6925d4e82f510724c498",
                "md5": "66f7b578a2a0b5f39787e488fa584b2d",
                "sha256": "8c09877b59b34d5b3043ad70ec31543173cac8b64b4a8afaa89416b22fb28da5"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66f7b578a2a0b5f39787e488fa584b2d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7, <4",
            "size": 225495,
            "upload_time": "2024-02-20T12:37:06",
            "upload_time_iso_8601": "2024-02-20T12:37:06.379777Z",
            "url": "https://files.pythonhosted.org/packages/fb/ce/83e4958f68a994f032fb1bdfa174feb36bacd21c6925d4e82f510724c498/clickhouse_driver-0.2.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60876bbd4242aee106586ba62663190c635caaf753f2ed3b88c3e68b29ef83dc",
                "md5": "5712e497b17e9eccad85dc9c10149dd0",
                "sha256": "3580f78db27119f7380627873214ae1342066f1ecb35700c1d7bf418dd70ae73"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5712e497b17e9eccad85dc9c10149dd0",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7, <4",
            "size": 231101,
            "upload_time": "2024-02-20T12:37:08",
            "upload_time_iso_8601": "2024-02-20T12:37:08.483521Z",
            "url": "https://files.pythonhosted.org/packages/60/87/6bbd4242aee106586ba62663190c635caaf753f2ed3b88c3e68b29ef83dc/clickhouse_driver-0.2.7-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": "60c2ca8a1ccb95ef4252ce4874c40fb3698185d7b06fcd65181423d4a1101f9a",
                "md5": "384397cbcbd2d36242c35fb1bca44de5",
                "sha256": "0842ac1b2f7a9ca46dac2027849b241bccd8eb8ff1c59cb0a5874042b267b733"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "384397cbcbd2d36242c35fb1bca44de5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7, <4",
            "size": 196597,
            "upload_time": "2024-02-20T12:37:10",
            "upload_time_iso_8601": "2024-02-20T12:37:10.385365Z",
            "url": "https://files.pythonhosted.org/packages/60/c2/ca8a1ccb95ef4252ce4874c40fb3698185d7b06fcd65181423d4a1101f9a/clickhouse_driver-0.2.7-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1be10c6ead5ae6e12933778c3d8c775f2dcf04aef9cd687b21ab6f611542c3a9",
                "md5": "3f34edcc7d3a865914ff735eae4509a1",
                "sha256": "7a3fb585e2d3514196258a4a3b0267510c03477f3c2380239ade4c056ba689a7"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f34edcc7d3a865914ff735eae4509a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7, <4",
            "size": 196407,
            "upload_time": "2024-02-20T12:37:12",
            "upload_time_iso_8601": "2024-02-20T12:37:12.566000Z",
            "url": "https://files.pythonhosted.org/packages/1b/e1/0c6ead5ae6e12933778c3d8c775f2dcf04aef9cd687b21ab6f611542c3a9/clickhouse_driver-0.2.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94cd1b12bc0209dce224e0ecfb389120e9ba91a59ccf6e4bf1c6d1c68484c804",
                "md5": "42a3b3cc123a0a936d8e0c1a2b0414f7",
                "sha256": "48ea25287566d45efbaee0857ad25e8b33ffd7fd73e89424d79fe7f532962915"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "42a3b3cc123a0a936d8e0c1a2b0414f7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7, <4",
            "size": 219269,
            "upload_time": "2024-02-20T12:37:15",
            "upload_time_iso_8601": "2024-02-20T12:37:15.300820Z",
            "url": "https://files.pythonhosted.org/packages/94/cd/1b12bc0209dce224e0ecfb389120e9ba91a59ccf6e4bf1c6d1c68484c804/clickhouse_driver-0.2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92aa8994038cc6089fa6a0ec960b6cbff7b2b9c9a35413ec5f0df41f8be3b9b2",
                "md5": "2b21fc6cbefcf7722f2becbf1512c7cb",
                "sha256": "ee4a4935667b59b4816a5ca77300f5dbe5a7416860551d17376426b8fefc1175"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b21fc6cbefcf7722f2becbf1512c7cb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7, <4",
            "size": 226716,
            "upload_time": "2024-02-20T12:37:18",
            "upload_time_iso_8601": "2024-02-20T12:37:18.018075Z",
            "url": "https://files.pythonhosted.org/packages/92/aa/8994038cc6089fa6a0ec960b6cbff7b2b9c9a35413ec5f0df41f8be3b9b2/clickhouse_driver-0.2.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20b89f2ebb0681e0d7d968e753e7d4ab8f5f6d658c580cbc330726cffdc34642",
                "md5": "1011cf3c7e5ffcefdabec4eceb062699",
                "sha256": "358058cfceea9b43c4af9de81842563746f16984b34525a15b41eacf8fc2bed2"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1011cf3c7e5ffcefdabec4eceb062699",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7, <4",
            "size": 232368,
            "upload_time": "2024-02-20T12:37:20",
            "upload_time_iso_8601": "2024-02-20T12:37:20.661023Z",
            "url": "https://files.pythonhosted.org/packages/20/b8/9f2ebb0681e0d7d968e753e7d4ab8f5f6d658c580cbc330726cffdc34642/clickhouse_driver-0.2.7-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": "67066b0237c3aac45442aa40bf66a4754debc1d55a5e11c85d1ef3592957dd5f",
                "md5": "ce9e996271b8f00a618abf984a39b0a4",
                "sha256": "ae760fb843dec0b5c398536ca8dfaf243f494ba8fc68132ae1bd62004b0c396a"
            },
            "downloads": -1,
            "filename": "clickhouse_driver-0.2.7-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ce9e996271b8f00a618abf984a39b0a4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7, <4",
            "size": 197803,
            "upload_time": "2024-02-20T12:37:23",
            "upload_time_iso_8601": "2024-02-20T12:37:23.259613Z",
            "url": "https://files.pythonhosted.org/packages/67/06/6b0237c3aac45442aa40bf66a4754debc1d55a5e11c85d1ef3592957dd5f/clickhouse_driver-0.2.7-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17c068b0dadeb4c9eb81c569b5cda66f88b016144f67505801f403bf1dab5d1a",
                "md5": "83bbae3c9fd7ac74e56aeb61e7353a82",
                "sha256": "299cfbe6d561955d88eeab6e09f3de31e2f6daccc6fdd904a59e46357d2d28d9"
            },
            "downloads": -1,
            "filename": "clickhouse-driver-0.2.7.tar.gz",
            "has_sig": false,
            "md5_digest": "83bbae3c9fd7ac74e56aeb61e7353a82",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7, <4",
            "size": 356176,
            "upload_time": "2024-02-20T12:37:25",
            "upload_time_iso_8601": "2024-02-20T12:37:25.748254Z",
            "url": "https://files.pythonhosted.org/packages/17/c0/68b0dadeb4c9eb81c569b5cda66f88b016144f67505801f403bf1dab5d1a/clickhouse-driver-0.2.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-20 12:37:25",
    "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"
}
        
Elapsed time: 0.26840s