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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distributions

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

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

hdbcli-2.11.20-cp39-cp39-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.9Windows x86-64

hdbcli-2.11.20-cp39-cp39-win32.whl (3.3 MB view details)

Uploaded CPython 3.9Windows x86

hdbcli-2.11.20-cp38-cp38m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8mWindows x86-64

hdbcli-2.11.20-cp38-cp38m-win32.whl (3.3 MB view details)

Uploaded CPython 3.8mWindows x86

hdbcli-2.11.20-cp38-cp38-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8Windows x86-64

hdbcli-2.11.20-cp38-cp38-win32.whl (3.3 MB view details)

Uploaded CPython 3.8Windows x86

hdbcli-2.11.20-cp37-cp37m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

hdbcli-2.11.20-cp36-cp36m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

hdbcli-2.11.20-cp35-cp35m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.5mWindows x86-64

hdbcli-2.11.20-cp34-abi3-manylinux2014_ppc64le.whl (11.4 MB view details)

Uploaded CPython 3.4+

hdbcli-2.11.20-cp34-abi3-manylinux1_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.4+

hdbcli-2.11.20-cp34-abi3-macosx_10_7_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.4+macOS 10.7+ x86-64

hdbcli-2.11.20-cp27-cp27mu-manylinux2014_ppc64le.whl (11.4 MB view details)

Uploaded CPython 2.7mu

hdbcli-2.11.20-cp27-cp27mu-manylinux1_x86_64.whl (11.7 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

hdbcli-2.11.20-cp27-cp27m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.11.20-cp27-cp27m-manylinux2014_ppc64le.whl (11.4 MB view details)

Uploaded CPython 2.7m

hdbcli-2.11.20-cp27-cp27m-manylinux1_x86_64.whl (11.7 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e60f7686d38837ac594862c536ad05d95c737dc84b82af82fc36a01ad2c7eff7
MD5 b3788fe365c438e0df0e2e1f922a7e29
BLAKE2b-256 eb044952605dadff431be3d6f51357992f37f27ea996ada2b2740fe122c05f6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.3 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2c502b7b6010deab875163d26976f394aae0a2acb42a5b4c9934878170f956b4
MD5 c225449a180f096784ff76909a598ea4
BLAKE2b-256 a6495f2b0922e7c9b81634f10543f236a3b3381094c33e7701fc0c9130fe8111

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp38-cp38m-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 bf6a9f3227a15bbbdcbe66f31e342ea63af497f575e0d0acc45672e7087d7c1c
MD5 277e86195d8f8ada0e59a75da1af9ce6
BLAKE2b-256 c09859a07d7b214656dbb2bb8a9b63b33038ee63bd02777c906bc1362936a29e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp38-cp38m-win32.whl
  • Upload date:
  • Size: 3.3 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 65541e1f20e952d70158267db1278f56dbd73c1b8ca514d7eb25630a8afdf521
MD5 764237f48bc55658e1dc247742664eaf
BLAKE2b-256 8a9b34f692399e284b23957a36c2710a865b6e679eb6637a5ac462c4f344ac31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a7d8f4763735a02cc1683de0afac4448622a5f8df7aada802a364dd0930456e1
MD5 827505d281d5c3b0e1fe5c8b528f7d4a
BLAKE2b-256 2d24089bf4210e3d17fbc5e3f96f13aab74baf46f7e794ac1937b8a1671870f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp38-cp38-win32.whl
  • Upload date:
  • Size: 3.3 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1d6a0e0066c135045ab6759a9981710ef9b80141e012586642e9b13282464116
MD5 c2c00aac816e37b2ee25a8a39e57e581
BLAKE2b-256 476a5515afebc22bfc78270a3c29698159ec1df663772022446ecfb57d149a6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e158e3efe808d5a1e12f551945ccac91393119e395d8a270b1481a4d5cad3848
MD5 9b420377eed845574f726e7dd09dad3f
BLAKE2b-256 1fa61fd772c920e8df1b5673a76062b5853289028418f8663e77d6d92ef0dffb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 713a55124fa575be051e6aabc643eaa80076c22cfbc9483cbeb450b4105f610e
MD5 daac88d571b1d42af413390b2defd940
BLAKE2b-256 e1ed615be837dd3e3d61615318db42cd9f93f9aa8be4b50f93c088940180b69b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ea5ff4fe07fb0f9a15543d3c60aa5e3d33ee88dde950aa13adcdbef270d29d35
MD5 96c04383c6c80edc5e38bf47f5bd2b4b
BLAKE2b-256 901347665067f67a5e540715d3824c142594a8fadc90834c0dcb7e5506df073e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp34-abi3-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.4 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f8e4d60f80c2cef899976698d44d36f8a7db49b5b7d1b695c41acf138f8082e
MD5 42d950c91a9f65da0b636d714cd0162c
BLAKE2b-256 78e5e99e6127e8c78cd499b55e74d991c7b59f3d915bccf46d280fbc78928017

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp34-abi3-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.8 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a2807b07f76c896c7cb41e80beaa57f80f752c8d9ebcad77c5624b3c349de6b7
MD5 b1c9420cc49f2867190a4fa1cf81c35a
BLAKE2b-256 4f43f11f34517cd8bdb4de1adef5521fdfe3a39029082f9aa1bd92bd0f9e059a

See more details on using hashes here.

File details

Details for the file hdbcli-2.11.20-cp34-abi3-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: hdbcli-2.11.20-cp34-abi3-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.4+, 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 620a6406079535a507ebadfdca6d9622ddaee24dfa0b32f8c359928f411f393a
MD5 4cbd0fc139dc2066385083c9255aacf8
BLAKE2b-256 5fe7f70fa414ac2df475a4e53935de37f5e35270fe8976ce51d82f3ad79a7d70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp27-cp27mu-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.4 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ae1f42afbc2d1ae1b8a52e32847ca0770a5d1d8246e04e0d8e279fec951a423
MD5 aa32e902e71d083bc3521b9cd15fcf82
BLAKE2b-256 84cecec89b162b7e315d4adb0290332695f1dfa299a557138911a31ddf8fe8d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.7 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b960ac5c7463d0e44967453f5ba12c80e83d17c2275aff5df9306f0ad3c8dbc2
MD5 3dcf390b6b6861cf706b9a65b881ddd7
BLAKE2b-256 4ba58614f176a4f128847a85cd8b06d3a81154a4566d48e516a6f28b82c837da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 35b851f2220f27b309cdfc754c6cd1ad805a5f500c26a03fa733f2b54569fc44
MD5 019f1b80ff35606ced2374790c2a6d4a
BLAKE2b-256 b7a13e0d369314857606e2c75f7c5ad41f98a2d99738c8c7888b82a3ce14b78b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 6b9e37adc9214baa2cb2315554ee2589b3c5aaeebb3cfb2aab3b0d0585fd7ae9
MD5 a6f14ae55a32079b5d842b570f547e20
BLAKE2b-256 1c5a7d7d9aa8aac67795583b0a73f6e2f57ee6ce1cfdf5cbe34c4196fa5d65ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp27-cp27m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.4 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 232d55947389d68f07c23e97745a2d57293760831d3679933a554846d0cc6ddd
MD5 b05dfc96efa7257c331d7719b3c84192
BLAKE2b-256 204804516506e4146e2d0c606c39ad418a96c9edc17b617fb08f2682f3522886

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.7 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6fc6cca8907882457a9ac6094646e623b2f2d1ed8a563fbf0095db4d96452153
MD5 61d062558e3077ced5b0acbbb8094fb3
BLAKE2b-256 d15071b330ced839b67a96ebc1a81dbe5ce084cdc714ffbca26e095636a659e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.20-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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.20-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ce4455172ac7d3ca3a39df3c76278b6fe1a81bdef2c870b9efa4c15d63b50825
MD5 2cfc649e2e5df50dd798dac032d20281
BLAKE2b-256 93472736a481e27a9a68fd3ec3db5d201fc9c7ad10804e3abdebc9292af0bee5

See more details on using hashes here.

Supported by

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