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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8m Windows x86-64

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

Uploaded CPython 3.8m Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

hdbcli-2.12.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.12.22-cp27-cp27m-win_amd64.whl (3.4 MB view details)

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 329935b4c6c457f832a07056f34ca020f906080b32dca50745bd0f5bbabe6713
MD5 a0965fc85dd30a561a3aa4158f6025d9
BLAKE2b-256 245dfe664928dbdd10fbfc66f20b68a725626d442142be0ec954fb9eaf3bb4d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.12.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.12.22-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cd6f2be00b4cc4869bfcb68c719476730c6c0fc3c94e50b2a794d36f6af3dbf2
MD5 5f6265adc79f8f8e79140cca680ece13
BLAKE2b-256 ecf6ce975bd2275bde513d9f9093537a97bf010e47fc859ddc698926a11e7471

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d37e962ca2f668c3b35f656a2df8e1fd92e38a3b6ee8b5430827e9dfc16f4724
MD5 b062740306f5ffc3a2a6b4841e842873
BLAKE2b-256 7224f06732c6fceba4c862c90def2e03e483916f1aa4aa54f44189d29d13c4ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.12.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.12.22-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a150e4d3405a256eccd5180c5db73fb8e3057053f2bcf1627b6a4fe7f9df2938
MD5 e697a3588bf832a1e133a09627ee4c4b
BLAKE2b-256 1192e2360e1d0dbdd2f409882ce45ad653ffc1f489c769f0ff0e16c60846ea66

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 f5ce037a9f16bccb4a43c3204bbbc2b0e33f81cddcb6be53e60ea241a277e7d3
MD5 3a5a517a0e05b151275b2fe336ee0f32
BLAKE2b-256 164006737777b0cb23d2bd485db0bf2adb26dc472be365584510734a4007f8b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.12.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.12.22-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 d1ef5c86de18d3f93f5d560ef591b74596aca06b9c9eb8e080115555441dde24
MD5 5b7409db8eae54bf09ee84274cc66677
BLAKE2b-256 039676b07c012f9ace83c0a21c9d29bd194f211fd0913c35c7371c3e46ef3b1f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 801af74e402e9cefbf6f535b5e3d04a2302e314e574730023d891df1abb4783b
MD5 b719951ba2751d27143557b9a30c8709
BLAKE2b-256 886a1d3e68312235f0f93f668ef6cd773f02e2dd30d6998c807c399b632ec99e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.12.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.12.22-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0ccccde7db36dffee039fe3cd6765fbd2c0d0e833020c6e6274abdc14f3d849e
MD5 18b66a3be0303e523635735662a276cf
BLAKE2b-256 070e408ee2926cdc540dea4f173982681152b92fcd98e46ac1521c7b1aa3eaa4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1c3e71dab8e6b8e8d0a1f3b91d7acb70d8d7efca9f39befad3f9c222eae9b999
MD5 3a013f87d4616957a78894c8dc4872df
BLAKE2b-256 d900f5452f31ddb8973677e9f94db8b5f42a8b88599b9db7d6a53a0f05ff24a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6d155003ed1e54769d4a6df7edbb91f02502259abefd8f2b23a074f837a990df
MD5 43e71b753925811e4d3c4ee6f05bfe2e
BLAKE2b-256 1185ccdd737109ccec82f19e33c066a34a1751884bb7f688bfc8bc884d66c9d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2111e3ad98210f32f3afc541cc49ea1c62e6ab2acc15440c53f5a65cd3f55c5b
MD5 f8ff851b1f4dc527a6246b4da025f28f
BLAKE2b-256 3bc1fbeac36408e505f665a464707eef8f40d803fc0b26bd8b98e932ec008ab9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 929826c792c039c85ddd794fd518f25ee1e5f369d46ec04964e53b8736c56dd2
MD5 71847b70f5305899183f4bd77c05604a
BLAKE2b-256 15aebe02055ad258cf7f8fcec265e1528f3b41e677a4a15db40ad800fe7523dc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1f8abcc39bc1023bfccdcf2bc4d603dac5c261668df838f0dab8ce6e924d1570
MD5 88c49813988637ff613190913d836c3b
BLAKE2b-256 79a30fb7fcccd1bd3a50e7923a316cf597cd2da6bd3978a63807caf3b32032c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 52b8965fe704a0588c2eebbeb92ff1be1f51bdd49784281a14c49b94f333e41a
MD5 69bd7659bb485489b79dc3f6459f2ead
BLAKE2b-256 afffceabf9123aa68bc35fb0d8ddcc87c9b71d685dd72f29f544bdefa792376f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e31e9f0bfe00341af6c92a42a65ac2cf78bf99bb6a0ffe05252ec089544b03db
MD5 04a359b9b01b905934ed20d67be55bca
BLAKE2b-256 86f48aa287a995dd3054589ff57c9a1462126ad54b24f63749a34d5d06a3b402

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d25457f2780f75d02c28047865ed907423407474fc8416cf882cf2d07db4698a
MD5 519d42424e3318e35008889de44747fa
BLAKE2b-256 cb4504fcf37d9efcbbfa16216d98dcb42fa5ef12a784dc3dd9811d248c64ed82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.12.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.12.22-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a3db0e3662f57a717beee0fdc5057db41f8472740b380148ffef5f01f7975287
MD5 27dfbc875118775f37ac93cfb11acb7f
BLAKE2b-256 ffdc4b8ef96db29b2a6aae5d6e02e5306c81b0bf19876b2901cca76221fae722

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2fdd18d7f5cd004610cfd3c3f2df2dedb421a7a53cf8d66164b32436b81b794c
MD5 261cfef3d7bf31c4ff7be0ccbec60831
BLAKE2b-256 07d44b244c82aa103100d90a8b757c541443c962a4d7910b0552d1ea8111bccc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fc4ee96dc2d1db121e7cc1fb2dd518672eab4cf0a5f040019656dc3469d57c9
MD5 bccc809530fef58e82fbf65a0c9ca02d
BLAKE2b-256 5e4237e2698b517c499935e6b3eb57614a04ad2f1986c0422ca24eea90172284

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.22-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bcf9494169e17e79c3c1f8e011c92c1e9e41dff5c9d369501d02650fd983aa16
MD5 41d01daf60391156033a6b8f80783873
BLAKE2b-256 7414f9bcd924fd657bc3b5560e25f6c5027491e8ebf13b69ba0ace7eecca9194

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.12.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.12.22-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6c26cef5b98b6b9c998c867122e4439ee734adf3b6d758083bd5eb0ad418f3cb
MD5 5ad0a1dcc0a1366e9556392496444fa2
BLAKE2b-256 e05b20f6ba269899a98bc3a78dce2a652ad7c5a9ce5ab568190c259d067a2acb

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