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.8.20-cp39-cp39-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8m Windows x86-64

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

Uploaded CPython 3.8m Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.5m Windows x86-64

hdbcli-2.8.20-cp34-cp34m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

hdbcli-2.8.20-cp34-abi3-macosx_10_7_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.4+ macOS 10.7+ x86-64

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

Uploaded CPython 2.7mu

hdbcli-2.8.20-cp27-cp27mu-manylinux1_x86_64.whl (11.8 MB view details)

Uploaded CPython 2.7mu

hdbcli-2.8.20-cp27-cp27mu-macosx_10_7_x86_64.whl (5.7 MB view details)

Uploaded CPython 2.7mu macOS 10.7+ x86-64

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m

hdbcli-2.8.20-cp27-cp27m-manylinux1_x86_64.whl (11.8 MB view details)

Uploaded CPython 2.7m

hdbcli-2.8.20-cp27-cp27m-macosx_10_7_x86_64.whl (5.7 MB view details)

Uploaded CPython 2.7m macOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: hdbcli-2.8.20-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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c1735599268af92bce709802a57e2ae99cf073715482a1a8dc9f3643822cb6a9
MD5 ddcee2bd07d55639560314f7fb509fe3
BLAKE2b-256 494d2e52df4463dd03609c3c00ddb02d7824dbe1b2cfbdc8aeb8f671469e1d95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b21a6deaddaf4ec9c3a371a3e4d5507f537b7aea1672e15c1bfcff62caaa7c97
MD5 a485343b3438f0ac15907a4c0fa25373
BLAKE2b-256 3db21030487b07a4507347be7edc644a1a57d01ee56765e405c31303e2fcb5e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.20-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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 ba5e0d258da0ddf45c670aaf2925035927031e4ab48cbf44c20493834c62ea82
MD5 822ce49c6680b66b961e70e109023518
BLAKE2b-256 f737ef24b786cf5b9039263e672fa27971e8b0f985742b8a90fbede38a3c5cb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 2c93ccb03d3d4f35104a48c0e0079b8527ace32d4063ec1932d4a66a6f02ab66
MD5 dd6acc79cf4850363f7f68a9076e919e
BLAKE2b-256 a8c8281e0dbe864f5cb9d8677e46bd36a97a8bdd7e73978c640778fb63fb1b8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.20-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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2ae370befbe5c5e9784604f7e8698645fa66affb8a4bd9eb17d70dac17613e2a
MD5 46c42eabac5873a5dfddfefebc70e1c5
BLAKE2b-256 583b5c664dd5675ec4ea9c191badcca11550a6e12642d6e1da3b1d93baf48711

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 de8b400ff7bc41f52f0b36ac698afa016274806cfa4d459a9a31e6c96b400a88
MD5 94539181ceeb02ad29798f067c3c6897
BLAKE2b-256 dd9ffa5fa1bd5e6b0d9e307f27982e46f16dbc85418c99163bdd120a97cf7d19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.20-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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e1d8a01b1b4e456551e99491dc9b853509a2a50e7f64b42604641414c216e56a
MD5 bac9a56017579ae0cb94c629ced1a07e
BLAKE2b-256 c66008cdf0f055a1fb3bad8e5aed0673a761eb874bc2ca22cfa19e53a0574671

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.20-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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5db058eb1d92f9c2074ca7d7b9f48b096539f96abef5b5f680dfd54e5b55f945
MD5 cd174969faf0f9db011d302b00e5081f
BLAKE2b-256 d890f4f1dc60f19d3bd8de9508b16ad873a8cfdaaf9899bd272e2e1323ea1a64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.20-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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bbb5574359c46b957fae929c0b55af3f93bcf212fb859138c68f253ae077a164
MD5 80b787d86a999c69c0931555e496cbac
BLAKE2b-256 2366f97ee97ce89e8843dac9ea502ff4fb9f737292f196ed86acda5e166d298c

See more details on using hashes here.

File details

Details for the file hdbcli-2.8.20-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.8.20-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 251051e7f148b1c7719cab68e8ac41391ecb1617ace30ce68178fa7ba61d3edd
MD5 97fc60f072672d745d5b65ab44ddf300
BLAKE2b-256 e9767d86be924fa09729da6b88457fbe72538d46bd4345826f24f6f919f64797

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d51650da7ae1ef03a3d73ece82ee4f572921dd70b53f6986ed1d691ad8730037
MD5 c8eaed77a5eb9434f42d2da6c593af10
BLAKE2b-256 f0c1650b29d8167a9f8ec736c14199a1b22d4b812287754d2e841d51ac76bd28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2e9aefa25810f59d87273540571b268c064d122e5b92bd4c026a83cf9b14071e
MD5 1d72730e131b951121f3de315647056f
BLAKE2b-256 8015920e6fa89e6cbfb174e5d201d7a7ba84e312130da6e616a44f016af41df5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.20-cp34-abi3-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.4+, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d18c737c4c30a5b9dd48ebdd6cff80cc23e622ca2a439b378d90e4b95a322ee4
MD5 c65f633df011766cc856f96418f7af5c
BLAKE2b-256 18088cc9a6611a03faf2c4ea5549c542e18fdec1e0ba4ee0e8ffac5f883da97b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6cbda0adb0400e935a5457633d1cc7e116e80ef028cef65e786cc5cc0a4fb668
MD5 bd2c119f77604050eec5978feaa93faf
BLAKE2b-256 a9bcd8d0f70f96ae5be7573f9bc14cfe730002ee6247d5f5566a4d6a9d3617fa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.20-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 029bd78eb38073969f57bf57936d244d62afbeb9c4a03a801b302560bd7498f8
MD5 6c018f2d640c42fbbfc3980e716da0f9
BLAKE2b-256 aea0a5660a876afa1be9a0c20906d540aa9654bf3bda8a07dbecc232ddf02b83

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.20-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 563124de3ff09562c916a8b84ef424c8072f76beb2a29dc40ad59e2db25ee9df
MD5 0c70c22ae1abcd0c050c86b6e6e6ae47
BLAKE2b-256 975c4073a33f30513316dbff8fd0623a74250c8b9611a67c108645f23fd72e38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.20-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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 6ba09f1a982b18af40410eb74df6742e92004e197eab1ff82915ca4f166adee0
MD5 8964b6837581187b816da5acb3c49936
BLAKE2b-256 2e93c4206f5de51fa1ce12420929ab13714307f1026564fbb29beeb59580aa30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.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.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.20-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d331cfc3dfc8e1d82f3ee91a0b634cda0c078982900bb3167ae58b03dba5b30
MD5 2976617b46ac12abe169805624870fb3
BLAKE2b-256 1970ece801b5eec87708b0ae780b49e85c2d937757900c7732ef4a10d07aa8e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.20-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 850393eaa9eda5c9e728f1e9aeb2bdc03882a882be080762021637ca379dfa83
MD5 95885f996a08bdb9a455606f17ca2ee3
BLAKE2b-256 ebc51e34641aa598de931ca1b3cc941f249ac515766bb3c5d3728efc8b7ee61c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.20-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 aa660a342e4ee37995b11956b2e0e978eadf17a2732c88a2354f8197e0a83bff
MD5 504f6da5ddebbbe299656d42da5e5fe5
BLAKE2b-256 8de9b1f097435cdbc96a5efd10f2f3202d7106af9b9bac95bbb20b0943d827ec

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