hdbcli


Namehdbcli JSON
Version 2.20.15 PyPI version JSON
download
home_pagehttps://www.sap.com/
SummarySAP HANA Python Client
upload_time2024-03-19 17:18:54
maintainer
docs_urlNone
authorSAP SE
requires_python
licenseSAP DEVELOPER LICENSE AGREEMENT
keywords sap hana client in-memory database sql business application intelligent enterprise cloud analytics experience
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ######################
SAP HANA Python Client
######################

Introduction
------------

The Python Database API Specification v2.0 (PEP 249) defines a set of methods that provides a consistent database interface independent of the actual database being used. The Python extension module for SAP HANA implements PEP 249. Once you install the module, you can access and change the information in SAP HANA databases from Python.

In PEP 249, autocommit is turned off by default. In the SAP HANA Python driver, autocommit is turned on by default.

For information, see: `PEP 249 -- Python Database API Specification v2.0 <https://www.python.org/dev/peps/pep-0249/>`_

Getting Started
---------------

Install via ``pip install hdbcli`` or install manually via the `HANA Client Install <https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/39eca89d94ca464ca52385ad50fc7dea.html>`_

Quick Start
-----------

 * For HANA tenant databases, use the port number 3**NN**13 (where **NN** is the SAP instance number - e.g. 30013).
 * For HANA system databases in a multitenant system, the port number is 3**NN**13.
 * For HANA single-tenant databases, the port number is 3**NN**15.

::

    from hdbcli import dbapi
    conn = dbapi.connect(
        address="<hostname>",
        port=3<NN>MM,
        user="<username>",
        password="<password>"
    )
    cursor = conn.cursor()

Execute a single statement that does not return a result set:

::

    cursor.execute("CREATE TABLE T1 (ID INTEGER PRIMARY KEY, C2 VARCHAR(255))")
    cursor.close()


Use question mark parameter binding to insert values into the T1 table created above. The parameter values are supplied as a Python sequence and can be literal values or variable names. This example uses literal values:

::

    sql = 'INSERT INTO T1 (ID, C2) VALUES (?, ?)'
    cursor = conn.cursor()
    cursor.execute(sql, (1, 'hello'))
    # returns True
    cursor.execute(sql, (2, 'hello again'))
    # returns True
    cursor.close()

Use named parameter binding to insert values into the T1 table. The values are supplied as a Python dictionary, and this example uses variable names.

::

    sql = 'INSERT INTO T1 (ID, C2) VALUES (:id, :c2)'
    cursor = conn.cursor()
    id = 3
    c2 = "goodbye"
    cursor.execute(sql, {"id": id, "c2": c2})
    # returns True
    cursor.close()

Loop over the rows of the result set.

::

    sql = 'SELECT * FROM T1'
    cursor = conn.cursor()
    cursor.execute(sql)
    for row in cursor:
        print(row)

Help
----

See the `SAP HANA Client Interface Programming Reference <https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/f3b8fabf34324302b123297cdbe710f0.html>`_ for details about developing with the SAP HANA Python Client.

Community
---------

SAP Community provides a forum where you can ask and answer questions, and comment and vote on the questions of others and their answers.

See `SAP HANA Community Questions <https://answers.sap.com/tags/73554900100700000996>`_ for details.

Limitations of 32-bit Windows driver
------------------------------------

The maximum length of a LOB column for the 32-bit Python driver on Windows is 2147483647.
The maximum rowcount that can be returned for the 32-bit Python driver on Windows is 2147483647.

License
-------

The HANA Python Client is provided via the `SAP Developer License Agreement <https://tools.hana.ondemand.com/developer-license-3_1.txt>`_.

By using this software, you agree that the following text is incorporated into the terms of the Developer Agreement:

    If you are an existing SAP customer for On Premise software, your use of this current software is also covered by the
    terms of your software license agreement with SAP, including the Use Rights, the current version of which can be found at:
    `https://www.sap.com/about/agreements/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights <https://www.sap.com/about/agreements/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights>`_



            

Raw data

            {
    "_id": null,
    "home_page": "https://www.sap.com/",
    "name": "hdbcli",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "SAP HANA client in-memory database SQL business application intelligent enterprise cloud analytics experience",
    "author": "SAP SE",
    "author_email": "",
    "download_url": "",
    "platform": null,
    "description": "######################\nSAP HANA Python Client\n######################\n\nIntroduction\n------------\n\nThe Python Database API Specification v2.0 (PEP 249) defines a set of methods that provides a consistent database interface independent of the actual database being used. The Python extension module for SAP HANA implements PEP 249. Once you install the module, you can access and change the information in SAP HANA databases from Python.\n\nIn PEP 249, autocommit is turned off by default. In the SAP HANA Python driver, autocommit is turned on by default.\n\nFor information, see: `PEP 249 -- Python Database API Specification v2.0 <https://www.python.org/dev/peps/pep-0249/>`_\n\nGetting Started\n---------------\n\nInstall via ``pip install hdbcli`` or install manually via the `HANA Client Install <https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/39eca89d94ca464ca52385ad50fc7dea.html>`_\n\nQuick Start\n-----------\n\n * For HANA tenant databases, use the port number 3**NN**13 (where **NN** is the SAP instance number - e.g. 30013).\n * For HANA system databases in a multitenant system, the port number is 3**NN**13.\n * For HANA single-tenant databases, the port number is 3**NN**15.\n\n::\n\n    from hdbcli import dbapi\n    conn = dbapi.connect(\n        address=\"<hostname>\",\n        port=3<NN>MM,\n        user=\"<username>\",\n        password=\"<password>\"\n    )\n    cursor = conn.cursor()\n\nExecute a single statement that does not return a result set:\n\n::\n\n    cursor.execute(\"CREATE TABLE T1 (ID INTEGER PRIMARY KEY, C2 VARCHAR(255))\")\n    cursor.close()\n\n\nUse question mark parameter binding to insert values into the T1 table created above. The parameter values are supplied as a Python sequence and can be literal values or variable names. This example uses literal values:\n\n::\n\n    sql = 'INSERT INTO T1 (ID, C2) VALUES (?, ?)'\n    cursor = conn.cursor()\n    cursor.execute(sql, (1, 'hello'))\n    # returns True\n    cursor.execute(sql, (2, 'hello again'))\n    # returns True\n    cursor.close()\n\nUse named parameter binding to insert values into the T1 table. The values are supplied as a Python dictionary, and this example uses variable names.\n\n::\n\n    sql = 'INSERT INTO T1 (ID, C2) VALUES (:id, :c2)'\n    cursor = conn.cursor()\n    id = 3\n    c2 = \"goodbye\"\n    cursor.execute(sql, {\"id\": id, \"c2\": c2})\n    # returns True\n    cursor.close()\n\nLoop over the rows of the result set.\n\n::\n\n    sql = 'SELECT * FROM T1'\n    cursor = conn.cursor()\n    cursor.execute(sql)\n    for row in cursor:\n        print(row)\n\nHelp\n----\n\nSee the `SAP HANA Client Interface Programming Reference <https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/f3b8fabf34324302b123297cdbe710f0.html>`_ for details about developing with the SAP HANA Python Client.\n\nCommunity\n---------\n\nSAP Community provides a forum where you can ask and answer questions, and comment and vote on the questions of others and their answers.\n\nSee `SAP HANA Community Questions <https://answers.sap.com/tags/73554900100700000996>`_ for details.\n\nLimitations of 32-bit Windows driver\n------------------------------------\n\nThe maximum length of a LOB column for the 32-bit Python driver on Windows is 2147483647.\nThe maximum rowcount that can be returned for the 32-bit Python driver on Windows is 2147483647.\n\nLicense\n-------\n\nThe HANA Python Client is provided via the `SAP Developer License Agreement <https://tools.hana.ondemand.com/developer-license-3_1.txt>`_.\n\nBy using this software, you agree that the following text is incorporated into the terms of the Developer Agreement:\n\n    If you are an existing SAP customer for On Premise software, your use of this current software is also covered by the\n    terms of your software license agreement with SAP, including the Use Rights, the current version of which can be found at:\n    `https://www.sap.com/about/agreements/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights <https://www.sap.com/about/agreements/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights>`_\n\n\n",
    "bugtrack_url": null,
    "license": "SAP DEVELOPER LICENSE AGREEMENT",
    "summary": "SAP HANA Python Client",
    "version": "2.20.15",
    "project_urls": {
        "Documentation": "https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/f3b8fabf34324302b123297cdbe710f0.html",
        "Homepage": "https://www.sap.com/"
    },
    "split_keywords": [
        "sap",
        "hana",
        "client",
        "in-memory",
        "database",
        "sql",
        "business",
        "application",
        "intelligent",
        "enterprise",
        "cloud",
        "analytics",
        "experience"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35f9de84e4cac2cec096448ced25a95de7477f167953bdb2321ec42ba26f89a0",
                "md5": "2c3b3672d7bf15bab0e39c9270f7aa96",
                "sha256": "16642512ddd15505f528cd7597a701f109b9ea0144e4afd08ba247aba50d0e9c"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp27-cp27m-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c3b3672d7bf15bab0e39c9270f7aa96",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 5510343,
            "upload_time": "2024-03-19T17:18:54",
            "upload_time_iso_8601": "2024-03-19T17:18:54.938237Z",
            "url": "https://files.pythonhosted.org/packages/35/f9/de84e4cac2cec096448ced25a95de7477f167953bdb2321ec42ba26f89a0/hdbcli-2.20.15-cp27-cp27m-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb8123adc873d26b315ecd32ade17f526fca8d4e782c912e7788d2c7ac39aaa1",
                "md5": "fa54a3fd743b817ef7cb77a066171d1f",
                "sha256": "4878ba4395d1e4942d9a04bbe5f3e6b7c797057b3ae628b2a96e22b58a95ad28"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp27-cp27m-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa54a3fd743b817ef7cb77a066171d1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 10802813,
            "upload_time": "2024-03-19T17:18:58",
            "upload_time_iso_8601": "2024-03-19T17:18:58.780888Z",
            "url": "https://files.pythonhosted.org/packages/fb/81/23adc873d26b315ecd32ade17f526fca8d4e782c912e7788d2c7ac39aaa1/hdbcli-2.20.15-cp27-cp27m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4eb8947649591de4c896ab56c2d8d6300e367bf8dddd3ce6027be28c374eee63",
                "md5": "c34f903076f16d8bd955b3c498d42e70",
                "sha256": "b81db601c2e8245daa9b101dcdf2f32d333b2cb7013462d740f83518c7978fde"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp27-cp27m-manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c34f903076f16d8bd955b3c498d42e70",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 10904208,
            "upload_time": "2024-03-19T17:19:02",
            "upload_time_iso_8601": "2024-03-19T17:19:02.045540Z",
            "url": "https://files.pythonhosted.org/packages/4e/b8/947649591de4c896ab56c2d8d6300e367bf8dddd3ce6027be28c374eee63/hdbcli-2.20.15-cp27-cp27m-manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab30db0cdbdaebf6a6ad85b49515ea15ca623a3eaff98fc88b3a84b42dcc839f",
                "md5": "f03413057f194e83ea2f46125e3c0c76",
                "sha256": "74a40be3c95c1b5dc893043af4e8c6c7b42dcd87b40f763415cc2bf54676f0aa"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp27-cp27mu-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f03413057f194e83ea2f46125e3c0c76",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 5510343,
            "upload_time": "2024-03-19T17:19:08",
            "upload_time_iso_8601": "2024-03-19T17:19:08.166753Z",
            "url": "https://files.pythonhosted.org/packages/ab/30/db0cdbdaebf6a6ad85b49515ea15ca623a3eaff98fc88b3a84b42dcc839f/hdbcli-2.20.15-cp27-cp27mu-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77685214dafd08129102f92038a3dc520e95aaf6f4f163b9df65073ef56d7c39",
                "md5": "fd050dcc8d0101a611d201eab4e45314",
                "sha256": "cfdeccdfa2ee275993e975dcb5919825b6467f3a72caaa9a6903ff374dd9ee9d"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp27-cp27mu-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd050dcc8d0101a611d201eab4e45314",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 10802813,
            "upload_time": "2024-03-19T17:19:11",
            "upload_time_iso_8601": "2024-03-19T17:19:11.270714Z",
            "url": "https://files.pythonhosted.org/packages/77/68/5214dafd08129102f92038a3dc520e95aaf6f4f163b9df65073ef56d7c39/hdbcli-2.20.15-cp27-cp27mu-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "526d6fdd9dc5f9b3786da15e487e9648bc54da24ac77d19676e78cfe2e343373",
                "md5": "336b76cc607ab9dccf2d4642d680deb7",
                "sha256": "24147e184271e5fefa117686fab3e8491a9e93bfd055ba5fac0dcaa0c93adad8"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp27-cp27mu-manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "336b76cc607ab9dccf2d4642d680deb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 10904208,
            "upload_time": "2024-03-19T17:19:14",
            "upload_time_iso_8601": "2024-03-19T17:19:14.451460Z",
            "url": "https://files.pythonhosted.org/packages/52/6d/6fdd9dc5f9b3786da15e487e9648bc54da24ac77d19676e78cfe2e343373/hdbcli-2.20.15-cp27-cp27mu-manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f187b516cf1bb2355ce2c5e6874cfd54e8e63031358de78f8efc2cb24ce2e67a",
                "md5": "1a17b3024e32f48e1307524d67b16fa6",
                "sha256": "0e2209157b5cc154519d8e819eaf7f7746b57559600a623a328892b419d467a9"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp27-cp27m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1a17b3024e32f48e1307524d67b16fa6",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 3534596,
            "upload_time": "2024-03-19T17:19:05",
            "upload_time_iso_8601": "2024-03-19T17:19:05.613585Z",
            "url": "https://files.pythonhosted.org/packages/f1/87/b516cf1bb2355ce2c5e6874cfd54e8e63031358de78f8efc2cb24ce2e67a/hdbcli-2.20.15-cp27-cp27m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21ce52e9aeb86bde4afad96663200e07a5047e15c413c1379efb3fa051e4cb35",
                "md5": "b65a169d797bf4289e91e89a00fad82c",
                "sha256": "60fe7be485a6dde0bb68998aacc0961265efe4c0e1d8e10f7ea68c0522429102"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp34-abi3-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b65a169d797bf4289e91e89a00fad82c",
            "packagetype": "bdist_wheel",
            "python_version": "cp34",
            "requires_python": null,
            "size": 5510164,
            "upload_time": "2024-03-19T17:19:17",
            "upload_time_iso_8601": "2024-03-19T17:19:17.134508Z",
            "url": "https://files.pythonhosted.org/packages/21/ce/52e9aeb86bde4afad96663200e07a5047e15c413c1379efb3fa051e4cb35/hdbcli-2.20.15-cp34-abi3-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c17d562bab07223216027dc6dd2ae41e801fe1be56173d9ac3cce1f667a4a8d4",
                "md5": "787b5737ac16f28cf33f30c2f6825143",
                "sha256": "b62c5a85351b3bf62c6f65c468bca495df8a9ada1f1822ef54fc382e0270b6ca"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp34-abi3-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "787b5737ac16f28cf33f30c2f6825143",
            "packagetype": "bdist_wheel",
            "python_version": "cp34",
            "requires_python": null,
            "size": 10810601,
            "upload_time": "2024-03-19T17:19:20",
            "upload_time_iso_8601": "2024-03-19T17:19:20.122211Z",
            "url": "https://files.pythonhosted.org/packages/c1/7d/562bab07223216027dc6dd2ae41e801fe1be56173d9ac3cce1f667a4a8d4/hdbcli-2.20.15-cp34-abi3-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b44d269fa18817722de7e97714c64026597e07b4b01668b3f52f270c6fb477ff",
                "md5": "8d5554db177676efe8f212aa53dd1099",
                "sha256": "3cc94e2372954aa1a3cb5db6b946fddcc6e1251bcda2696279750c7f068e4f24"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp34-abi3-manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8d5554db177676efe8f212aa53dd1099",
            "packagetype": "bdist_wheel",
            "python_version": "cp34",
            "requires_python": null,
            "size": 10911151,
            "upload_time": "2024-03-19T17:19:24",
            "upload_time_iso_8601": "2024-03-19T17:19:24.066166Z",
            "url": "https://files.pythonhosted.org/packages/b4/4d/269fa18817722de7e97714c64026597e07b4b01668b3f52f270c6fb477ff/hdbcli-2.20.15-cp34-abi3-manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30d204784eeb51698e81563b5f13e11b55413abd624ef8064aa5ea52e8a3fab0",
                "md5": "05ce4b2a8a2fb1f91f82d1887b3b2d35",
                "sha256": "3177e62266366e12e5f7d5866b05bc97c497fbce16574fe5983cb9fd480a4de1"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp36-abi3-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "05ce4b2a8a2fb1f91f82d1887b3b2d35",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 10750575,
            "upload_time": "2024-03-19T17:19:27",
            "upload_time_iso_8601": "2024-03-19T17:19:27.167709Z",
            "url": "https://files.pythonhosted.org/packages/30/d2/04784eeb51698e81563b5f13e11b55413abd624ef8064aa5ea52e8a3fab0/hdbcli-2.20.15-cp36-abi3-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caae07a2314ff9f4ab3f3056d0191aaa55f33598b06c81860807483837f5ddf4",
                "md5": "8a14498f705df0bbf665d729b873a559",
                "sha256": "756f0821be0baea981a0f6e74a68c345ce3eba53546cd2371b182b1d84c2f968"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp36-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "8a14498f705df0bbf665d729b873a559",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3532492,
            "upload_time": "2024-03-19T17:19:30",
            "upload_time_iso_8601": "2024-03-19T17:19:30.571176Z",
            "url": "https://files.pythonhosted.org/packages/ca/ae/07a2314ff9f4ab3f3056d0191aaa55f33598b06c81860807483837f5ddf4/hdbcli-2.20.15-cp36-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f13d2d9bb61073c8e22776f06d5393ceddb5013ddb486b7806d30f7be0b74509",
                "md5": "1f3421900ef5df48528315165d1907be",
                "sha256": "69f02dae4dd079c6dd01e299acf6bda0a8a095a18ea72f6955d84fb99c9fcd4e"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp36-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1f3421900ef5df48528315165d1907be",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3532499,
            "upload_time": "2024-03-19T17:19:33",
            "upload_time_iso_8601": "2024-03-19T17:19:33.230278Z",
            "url": "https://files.pythonhosted.org/packages/f1/3d/2d9bb61073c8e22776f06d5393ceddb5013ddb486b7806d30f7be0b74509/hdbcli-2.20.15-cp36-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "504a17e2230b6fe461ecc82031bf3d5989cf044a80b144152755c72c7143dd14",
                "md5": "63ecd77d92ce7eaa163eea1cbcdd6c93",
                "sha256": "7dd3c920c8c5bb72669cca3cc6c6d1b18df5d5ee8edc9eb95a1567f0856f998c"
            },
            "downloads": -1,
            "filename": "hdbcli-2.20.15-cp38-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "63ecd77d92ce7eaa163eea1cbcdd6c93",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5228807,
            "upload_time": "2024-03-19T17:19:35",
            "upload_time_iso_8601": "2024-03-19T17:19:35.402064Z",
            "url": "https://files.pythonhosted.org/packages/50/4a/17e2230b6fe461ecc82031bf3d5989cf044a80b144152755c72c7143dd14/hdbcli-2.20.15-cp38-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-19 17:18:54",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "hdbcli"
}
        
Elapsed time: 0.22529s