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

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.12.20-cp310-cp310-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

hdbcli-2.12.20-cp39-cp39-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

hdbcli-2.12.20-cp38-cp38m-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

hdbcli-2.12.20-cp38-cp38-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hdbcli-2.12.20-cp37-cp37m-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

hdbcli-2.12.20-cp36-cp36m-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.6mWindows x86-64

hdbcli-2.12.20-cp35-cp35m-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.5mWindows x86-64

hdbcli-2.12.20-cp34-abi3-manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.4+

hdbcli-2.12.20-cp34-abi3-manylinux1_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.4+

hdbcli-2.12.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.12.20-cp27-cp27mu-manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

hdbcli-2.12.20-cp27-cp27m-win_amd64.whl (3.4 MB view details)

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.12.20-cp27-cp27m-manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.12.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.12.20-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.12.20-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.4 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.63.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.12.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5fa7e4a9ae2872476e3935c2a79c813bf220e38645352e0cdd7d359d72a1d7dc
MD5 93298748c998abd9bc871ba630bd7e9f
BLAKE2b-256 d2b69ea6cbc671a357306db63a1127c540f4d53a4e6d266feee36a0de487aa6f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e09cae0d11a2f264d3071c362ed25bb8ce767bf380af784e2f14e84d1e5f1dac
MD5 15db83e18ade6cbf1a3c105be78b2eda
BLAKE2b-256 75a965de567380f014615f06ee4139ac5fd31fa6a97768b2e5582ad204144a3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.12.20-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.4 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.63.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.12.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 161f74b59b3c402008f24ffa4f86f008363ce4fc7bf3b9be23bcfcafd6a833a6
MD5 7ceba7061144f8340e917ad0e12eb82d
BLAKE2b-256 56e6791be1579996d210aeac04ed0c6f95d16ffa936437ae55af8a6e57c20ec5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5c8d3dc4e4582de9942d0aea88b4ea4e93426ad43d85ec06f49e8e18a13be781
MD5 308bf93ea36871112e56538f208c36c6
BLAKE2b-256 536107d4422f049106b7d54f38cd95908605cf41d3e6ad3930e9a4a5ed47eec0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 4d6a0442c109f69069229bbb76a5d237012f7f9b684cb24c706c619f5ee12b07
MD5 f1e3bef27945b86cf531ccfd7e207736
BLAKE2b-256 19e4794b218c9717205383b91348ccf77f2927a4c2594b41ff5b66bc63e72adb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 061d7b7e428cc3dab9bf385bd94b3bfda3558cc5be343b8602ff497390018cd8
MD5 77eab59b07f2e60fdc1fd94f6cb1f65a
BLAKE2b-256 92c145795ebceee56b99f28ce00ba670638bf6f7bb098c6c8f3186e23bad33bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.12.20-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.4 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.63.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.12.20-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0df0a63eb40818083a2480bcba0605a463d003e3ff9121ab372b28b7b8dd05dd
MD5 5a8394978032612458ebc89594df02f0
BLAKE2b-256 03d878408883708092eb40091c9fc76358bbc7cef6b0452589a9ed714348145d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1b500f1343ef39ceb9ea9607254612aaa753e94ddff71d3fb373e0675b3db420
MD5 fd06a621ded3f935505d1f2ddaa5b10f
BLAKE2b-256 381c48e536c2c4b0e4e62b5204a742881b744ef628911a136a5b1bd54777072b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2e2b9da943003efed5518a2ff128fe5bfbaf3d7b8a47c9fb51e6c73d4e36956b
MD5 3d199d1d88866609481eb99c163e6597
BLAKE2b-256 1244d05ebfbcd9f0d058732bda6f2666713271d0a94f694ebd9bbbd919a4772b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8fd1f0ab14ef8cb09cd92ca54ae02d2ccdd4790145fbbf4631b0a4c5c0ffc887
MD5 a583e55f3cb961589d09d6dfa829795d
BLAKE2b-256 697a2381e493c36e48a1a0d954101f19e4eba1d8824603ce70ab0277837520f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a79909a54bb60e8b6becc066062b59f9e8c59eb8913c15e2a0ea4fda137a653a
MD5 e8a1cd8c3bb5eecaf2a7870ab754a850
BLAKE2b-256 5c60e4caf16ddf2cd8337336c538733d439666e674447486c341a84023c3b309

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f8c08385765f2f62d902b49ef7b186e72c9e3c34f6221cb7ef6d9360b54ea81
MD5 56c4f783522dbb9fa5fb4f22c1e1d064
BLAKE2b-256 c0164671b8df42b3548e55056a7ba7f22b44bcca852b929ae20e7ea3a12e06c8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 211cdd4ea8d5ec2c488b3e2fcc5bedfa839d3126bc9f8640d2736fb10bc7807f
MD5 47642b725c5ea6df9775cc3d2fadc885
BLAKE2b-256 af4282642714e183fe25df8d02695317f455b868eb2189a8cf77ec2f021b9b2c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1c72fbb0091471c4913b6c45619de5894896934459404124c9fc03e68846e93a
MD5 e3082467c7abbb047b0d23804f1412ba
BLAKE2b-256 69500bc8a4de54c44e95a9fa40c1d0d9fccfe802564ee3487fb3f1059393d992

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1103810914ab89a1de322bd1cd2106eeddcd39766a64848c95373973f4133b64
MD5 007323592054c1c64d0f7b0aad6dc5e8
BLAKE2b-256 0fb02cac86fc6226754658cae28a217034edb80d84646d68c65c8fc0f09453c5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 646241e67d7a080ef5f769c57f87ec2e45fe7e8fc4557da601a4709e6584ddaa
MD5 2113f48dd320b4c8326f422621b14cdd
BLAKE2b-256 fa4a3a4ffb8f1724d4146fcf5752cc09e33852ef971669716a5ab091095c6aa3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a848151ae03ebf0ece80440aeed9c70bf614f9247799c4a681e0ae1122f8d541
MD5 dc3ab7f977d67fb9ef5daedc0a6c82db
BLAKE2b-256 18941ead5c43d13c9683674e7537af5a788e1402816396002d6c930350c18289

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 4ee67022b239896194b1f792ecdcadc40e7faa6ae4b882950c0e81203bec3909
MD5 957d0c4e2caef9256d3395aef2673ab6
BLAKE2b-256 fd0699de6154af1366f4f843774dba13540c78d18896195eb4d05179a298d146

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc15e3943028c433a6d6a733d288d7e33d8d8b777b347192b1160a545688516f
MD5 71995f025b59ffec7e37095b05571cfb
BLAKE2b-256 8dba21f59382c2307cc7ebdea84fd50c7f3be3e430bb3b2915d35ecdea879f12

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2a54ebfd43f1af1bb2aa5a655f3ca957ffefc191e499bd7f1b70222883737291
MD5 6ee0c7149020eb4b39df94767c2c7380
BLAKE2b-256 52e9639e686d305014092d9d93564349bba7e67c88007e3acda16b757953ca2e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.20-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 de9b6b5576d0d944eff42716bdb45035469957030b9905809a876532ca3e5447
MD5 2afcdb88a2ed2526d024feb939229835
BLAKE2b-256 190b119740511c20d2f4cdd1369054cddd44b3619bf131e8235f75e2f9c6ebeb

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