Skip to main content

SAP HANA Python Client

Project description

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

Getting Started

Install via pip install hdbcli or install manually via the HANA Client Install

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 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 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.

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

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

hdbcli-2.13.22-cp310-cp310-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

hdbcli-2.13.22-cp310-cp310-win32.whl (3.1 MB view details)

Uploaded CPython 3.10 Windows x86

hdbcli-2.13.22-cp39-cp39-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

hdbcli-2.13.22-cp39-cp39-win32.whl (3.1 MB view details)

Uploaded CPython 3.9 Windows x86

hdbcli-2.13.22-cp38-cp38m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.8m Windows x86-64

hdbcli-2.13.22-cp38-cp38m-win32.whl (3.1 MB view details)

Uploaded CPython 3.8m Windows x86

hdbcli-2.13.22-cp38-cp38-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

hdbcli-2.13.22-cp38-cp38-win32.whl (3.1 MB view details)

Uploaded CPython 3.8 Windows x86

hdbcli-2.13.22-cp37-cp37m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

hdbcli-2.13.22-cp36-cp36m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

hdbcli-2.13.22-cp35-cp35m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.5m Windows x86-64

hdbcli-2.13.22-cp34-abi3-manylinux2014_ppc64le.whl (11.0 MB view details)

Uploaded CPython 3.4+

hdbcli-2.13.22-cp34-abi3-manylinux1_x86_64.whl (11.5 MB view details)

Uploaded CPython 3.4+

hdbcli-2.13.22-cp34-abi3-macosx_10_11_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.4+ macOS 10.11+ x86-64

hdbcli-2.13.22-cp27-cp27mu-manylinux2014_ppc64le.whl (11.0 MB view details)

Uploaded CPython 2.7mu

hdbcli-2.13.22-cp27-cp27mu-manylinux1_x86_64.whl (11.5 MB view details)

Uploaded CPython 2.7mu

hdbcli-2.13.22-cp27-cp27mu-macosx_10_7_x86_64.whl (5.6 MB view details)

Uploaded CPython 2.7mu macOS 10.7+ x86-64

hdbcli-2.13.22-cp27-cp27m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 2.7m Windows x86-64

hdbcli-2.13.22-cp27-cp27m-manylinux2014_ppc64le.whl (11.0 MB view details)

Uploaded CPython 2.7m

hdbcli-2.13.22-cp27-cp27m-manylinux1_x86_64.whl (11.5 MB view details)

Uploaded CPython 2.7m

hdbcli-2.13.22-cp27-cp27m-macosx_10_7_x86_64.whl (5.6 MB view details)

Uploaded CPython 2.7m macOS 10.7+ x86-64

File details

Details for the file hdbcli-2.13.22-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 900eba5f87f91123585e73a9871f3409d1d6d25adbe05032112c8a18440d0f50
MD5 1bfc070753469fc300103301f1660ba2
BLAKE2b-256 c9ff022fe93cc42b26c8b669268804259967211ba71b72fbc4974a3a5129bd1a

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp310-cp310-win32.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2885c2d953830717a7b51c5b9b4634a18d9370f6c4faa137f0f23bd9199530a0
MD5 93ea260db83cf92a052a13b5c31d6c46
BLAKE2b-256 1c7b3d5ca9053b7c97fc67d385d4ab5dcbcc580c9dd1f639c4a7ad5b7658156d

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7558d30f581b14f8843928cff4da99069de6b6f804a4662d7daa8d7c4a2a4828
MD5 3704af45a0abea4d60e4c8d038d193af
BLAKE2b-256 18cf9a13904afcf84720c2d1b20e0a171aa8d8d5ba85d83c869541703b3e9625

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp39-cp39-win32.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8b69cad9f0590ef745ec87d41b0aeabb1dd8d8422712249d2996b2837d14fb89
MD5 7c2c87ac4cc7799be4be728db50c8c96
BLAKE2b-256 17500128cc24b4f1fc8953bb655c8d7c3624ecb46f7bdf063368b3a91634c0ab

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp38-cp38m-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp38-cp38m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.8m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 33725fc6ed2deab2b26fd3506f8dc2d60dde86dc143365f8ea11535dcaf98668
MD5 3a54d34eb52fc4aa3bf82392c8e541c0
BLAKE2b-256 216175c98ff58362a2f9a0281b268580a4efdbe0a54925f90972e87028dc98ea

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp38-cp38m-win32.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp38-cp38m-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 27d0b334e94238a041b36daea2b95f49e8a634ea7769758e563420e286fe67ff
MD5 7a1cd7bfc4feced819d14f61d8442bf2
BLAKE2b-256 0ba722037b21c3b5229cca9e5126ad32c8cd8c730962c7a69bca49a2752ced4e

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b0c6b3fab7fceed2c24e6d92e4d746781289da81b3d83152dfceaaef0a95485a
MD5 7b77dbfb4cbb353a6cff2064691bb64f
BLAKE2b-256 cf1beabb69e069c282cf3287514186b196739f2b1e08a8a816500b39a7d5e89b

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp38-cp38-win32.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp38-cp38-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b9e1e00a593716f0e14be6948c221f284583a46ba62293d86bc245b6a124f97c
MD5 5ddb9aafa4d60ef00d9d21088c379c54
BLAKE2b-256 3d116386b9cbb6575f3731e529718b075c1c99cc2b8bafe748233eeb1d4f098e

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c35a07215c6b2c8df37a768da3a71249bf769f204f9f8d3543cbb39acfc6dc3d
MD5 c38b29fa0ef54d586efd7fa2cc0e5ddb
BLAKE2b-256 66662538fbeeb5777920dd23565e8c74ffe9af6001d8f4a4b16b90e826bb82b9

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e7878e6bb774ceda5c3b1569dba3fc3c8556ccd9e7e0fc4c6fe643ce8fe94f9b
MD5 416600d8c41f86c5d37f997ed472b880
BLAKE2b-256 0b830369e15121508635d21af6cd11b36eff56a486b648ea2547b1ac8b7b6aa8

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 646ae8214925f31767097eb0271a558c6788fc955fafc4c996fd0d8a2f9cc8ed
MD5 d8f208665ddeb653d4caf34392442034
BLAKE2b-256 4133fa7b4d35892d225f5662e90649baf2107e3c3ee32ce161e07ddd5e980022

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp34-abi3-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp34-abi3-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.4+
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43fca27c1fd6fd8a3eceaa03031f30e8b9c2e8296d1ac616dd1b0d6af596c267
MD5 03f4bb222f1d0a02b1192c6e650b5e14
BLAKE2b-256 f3e20fa77bf4dec1fa10f85fba882e416ed3790751cd1053f27ef196c4fec050

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp34-abi3-manylinux1_x86_64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp34-abi3-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.5 MB
  • Tags: CPython 3.4+
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9d8b6790db0ea0136c97d00b6a3c7c2fa1d66d0e03652391b9f8003de74be2b0
MD5 f40caf6188f06c27aabbfe3813d56990
BLAKE2b-256 c7af2813256c64160c79404f1f5690cef3e0c63aa551864eabfc5124cfc1fb32

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp34-abi3-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp34-abi3-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.4+, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp34-abi3-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 8ba13a933befc7345a6652f2e71a57883a1f86231a83ababdc057a5c2df3826b
MD5 45fc9804712a347b8d20e97808ebf153
BLAKE2b-256 8da154586b30d243a81915c81a7e36ff50c47738c80f2c1d8774458570b2f693

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp27-cp27mu-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp27-cp27mu-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69a9c7e72dba8cee758d3eefa7e087936337ac6e4f0406a108aaad5ec9c02b1c
MD5 c73688a44b6afcdbf49278a2c98bf50a
BLAKE2b-256 a13e42f5b5e86656dff90e242be7770afafeb751ae6182e773e19e22ce27adeb

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.5 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f208dbe4ae4101f3796fc68992a7245c5ba205043bf59ca009f6c4a195ee7016
MD5 8ec95f48b94a03d7b6e5b63015a224ee
BLAKE2b-256 57d648591c3b5f146ec5e345d00dc4a72bc8019d7bad0cea4bbba60995fffe9d

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp27-cp27mu-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp27-cp27mu-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 2.7mu, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b2bb8f6af2275f85422a48e6a8d2b143290affbc4db4619147cef21c3aebe2a7
MD5 beee712935a0f8744c0cb3da14ce5e32
BLAKE2b-256 075b52fb09d622b8aab53ba95fb0672be66e8f7f5e8431b61f446855cb8479cb

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9a9b6c540044897025661639cdd4f57f646a890cdb22447a1a43deaed91f7250
MD5 79d1a934b61baae65a4261c01ce04b00
BLAKE2b-256 458132ec3e45840a8db2f858e51ad0b363e27d19f029ff1905f3abb503216e99

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp27-cp27m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp27-cp27m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d5f866e57c39893ccc6662c60eb31706db329ba1f292c0db89d4ed1d8699c8a
MD5 2dd67b1107a7b0ba252dc3afef91e69b
BLAKE2b-256 30d9a84bf79e4937f5cdb42eb56f2fee37713665f4b6c3691ec4cd2efd2d5c35

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.5 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6b84b12bb465920c025716d332326d828fd0a9284a8a51cd8b3990e5c64e5586
MD5 6eed540b30ddf25e2648a43a602e3a3a
BLAKE2b-256 0dd09e2539175cf8dfeec6e86a855a3d2a04238e3d81a87eec2b65b8ebf2fb0d

See more details on using hashes here.

File details

Details for the file hdbcli-2.13.22-cp27-cp27m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: hdbcli-2.13.22-cp27-cp27m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 2.7m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.13.22-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 16cb5f30bea151083fb43e91cc449be02abea5f77e3dab622478569c73587c93
MD5 04236b7bdf6d3d1f6055f3d6ff97fa1f
BLAKE2b-256 e82e265332472de13d18e276e82d33b886d55e8a396b5a0683b2732a874e2d0f

See more details on using hashes here.

Supported by

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