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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.5mWindows x86-64

hdbcli-2.13.13-cp34-abi3-manylinux2014_ppc64le.whl (11.1 MB view details)

Uploaded CPython 3.4+

hdbcli-2.13.13-cp34-abi3-manylinux1_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+macOS 10.7+ x86-64

hdbcli-2.13.13-cp27-cp27mu-manylinux2014_ppc64le.whl (11.1 MB view details)

Uploaded CPython 2.7mu

hdbcli-2.13.13-cp27-cp27mu-manylinux1_x86_64.whl (11.6 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.13.13-cp27-cp27m-manylinux2014_ppc64le.whl (11.1 MB view details)

Uploaded CPython 2.7m

hdbcli-2.13.13-cp27-cp27m-manylinux1_x86_64.whl (11.6 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05e805824dac696af6df63c1d67cbdd1f5036a0ba59d1f50ed2956151eacfeab
MD5 8c0a1525a512c4d83535179b1782ce0c
BLAKE2b-256 950e8e20e99ad56db4537fe13b39e1d904e696ec54fbade9a6c341884fade7ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2ee85f7b55d7c4734875d68dd0a0a45e3aedd559d100912b960b86414c41de1c
MD5 e6a1a6f332292c8df789889d47b39fed
BLAKE2b-256 560d6f5c4c1bb786b743e496c90c78f451c91d59812fc8103ecf4013e9f040cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fd8f5b5150480fa6d4d6ea2bfb890b1764255c8c34a8d0407a1d6742375ca1f5
MD5 f7399b201b7f4af828381d250d1dfd00
BLAKE2b-256 37c5cae532e7b4734e7460f7b243ebf0455a1e5a7ef8de77744f099713255098

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ad7167156bf8ee4054a54a642fffa0844b11f18e0dfd9bc357ecf6fc9814312b
MD5 495d5ef10cff779af202894cf84d5885
BLAKE2b-256 2f21f2fa3ecb994e19ed2178ccd2433a7ab8cd01932f7e56d4f263eee004cb70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 dad5d6c4102057c35d5cdc5e1abc8429ce635e7ba860eead4e134d4fbba7bde0
MD5 fdff04eb597165f945a0eb82b4169565
BLAKE2b-256 6d98d1fca82d5b67f01e18f332a2951d9ddee7a8419123ca12cf73e27ced4525

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 12e9d4914d643238b32c44e3d24f261006076d5eab29a14f0536132a046560fc
MD5 5f211d5aa2427286327dbed92da90ecb
BLAKE2b-256 4b539aad81c07db8dab5412f4ec498210e846d0a1a1b5797b1efd262ded2b069

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8311c74f3215430c5098804342aefa0da8214499b4aca8ed71c77bffecd3dc62
MD5 0fa0d53a5699e14235522da13077223c
BLAKE2b-256 f04b2e9366616097e31eed921d92f010cba3bb3fbccadd5018018b553a561c09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2065ef54ffc7af325b2240ac88a1e7f0b67a00d6376ee92611b16a3a59b3d10f
MD5 d215f727557923a31126c3d60abe2677
BLAKE2b-256 d6d5c64000ecf38e3cbe7b6815a3b3f92f784a163bb279179b7b8fae646a3e7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4160ac40adf95291437caabe83da75d994ad8307d9fed4f746962e8727848498
MD5 a1cc29b49b5a609831d4bb5419fd657a
BLAKE2b-256 e05167be835c58520eebf4c4fa45741a7efdab92fd350573eb8601e81c2579cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2b7e1aa5ecb0bc9bb1f5f812e3670d696a429b8842743b17ef1932611fe688e9
MD5 2f35e1f4c291fe5500bfa2f2e0329382
BLAKE2b-256 bd88743d1ca9835845fa95a36f43aeb28b8ef9193a09cb44793a755a10982087

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d462c44fdd7d9940da40e347412f63c2ccfd858b2a601520b4ff8c52103f6f26
MD5 0b4fb1823ca081b42369c6663f237546
BLAKE2b-256 3d40f732a787c7e1bebbb81b6b60eec3cfa23119c3574f7ac41dcffa3194c4b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-cp34-abi3-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.1 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.13-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5026288f9cac78ef943c8b6a3ad8ade426f9f88df901e8337b1db4e1100b88f
MD5 8e32a6c549e550402fbbe0584d7c35ff
BLAKE2b-256 ce50c0feb58413cbb438a9e21b7b1399afa5f55127be6871a40267ae609eaf1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-cp34-abi3-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.6 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.13-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 41eab2b040333f7e4e1657578e3da47a19a04935f893e823bffeb709642d6e2d
MD5 0cb878468e3e66644152d897e04dcd18
BLAKE2b-256 aede82893c6bfff823ccfb7738adbedacd76c1dd97d94be69782a65e30bdb21a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.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.13-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b77920da34877d8988e27f9ddb1f6694346195e6c1f152457bea61918088b8f5
MD5 1368bb5a02565e0f59ae9142e2e1b6f9
BLAKE2b-256 25c3a037147bdb6435545b08f33d7a1d3cc2f578d1a8ecf4a47eda705349e16b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-cp27-cp27mu-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.1 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.13-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b9f3b4c034184aaea6cb7ba9f491ac711d6fc2717ad432e254f97234ad18b28
MD5 76e3c51914047264898fce4705f43b99
BLAKE2b-256 c52f7eb2be487d23067745a6ca6cb3e00725093dcf5352bced5cb35758232482

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.6 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.13-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 34d29626979ec7a25b35f41a4938e31fb67e56f506138dc2ae1ca0149d74e94b
MD5 515f75ffc13e0a6ea8a675e13f26dfe2
BLAKE2b-256 d9b7f7aa353e316b6c9338e9ba9761bf71963771dfc6628090de35df3f5e476a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.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.13-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c40640c2aac6c2566f92c97cb12b3695bfece781255e37063d2d174b88ab0a4c
MD5 415cee1109511ccfa47651cd796b4188
BLAKE2b-256 3234bbffadca7d19163e28d3a327c672ed6f54c5593eeb542e2f20ed1b403ce6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.13-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8be8ff38ed4f9bee6117ec1357c122d4a8efcd820acf04056b9803138aab2786
MD5 b058b68e450bd1df858ac23714168318
BLAKE2b-256 501ebd33273f994a4e588560387659cf6b9f066dc5fa3a2fda8ccd13384d0317

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-cp27-cp27m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.1 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.13-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b85aeb46470a42f4c8dd56694c3e53d6aafa71e80a1d5ec37e03459c205c2715
MD5 550d64f8108ef7fd6dae4fe3e1ff22ba
BLAKE2b-256 9c9dccdf91b4da8a988cd1e5ca8362b9da067d4cc307cf7c175fbff2760a30cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.6 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.13-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cea11ff4142ce8cf734820d649790c15eb8becf16c4c5dd64ac8ff887650affb
MD5 bedd2972b6a553167e58622de460c812
BLAKE2b-256 83b84d01a3365ed0aca9daa1682a9648b8bcabb188872b8bc32149f8e976fb86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.13.13-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.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.13-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 958b327fa0b61d9307a05b32f78a55c2507f83832fb20b03d0bb16e4f65fbfa3
MD5 521df651d3c5b8f30c282bb051403c6f
BLAKE2b-256 368b51fa12a9f370aa265a32917499458a127c21f9f3acfd99f7d355c0867bca

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