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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8m Windows x86-64

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

Uploaded CPython 3.8m Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.5m Windows x86-64

hdbcli-2.10.9-cp34-cp34m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+ macOS 10.7+ x86-64

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu macOS 10.7+ x86-64

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.10.9-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.10.9-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 867d91aaf15d2a9d04da358cce70aecbde2ae4dd668fcb5257c6ca2e76b4e11a
MD5 18438932e7aff41e2a8918770ca28a30
BLAKE2b-256 c2d861e52ac884f1b20a27826fad10849d6fc9e266d11bbd6aca90ad60e93a2b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ddb070e6364c83c5dadb1b4d979fb6e3ec0e35519370d556cb7f877d9f778798
MD5 2b26a032418f4ae8272e87f73a9bd0be
BLAKE2b-256 50dc57c6b027cdc9c8a3f4e5bea35bfba648e020d1b2a78ef7d32e53911f938c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 ffc41f6d6bc37716e19823dfd67d04edfbb76ad39a7cb6387e1435916b201817
MD5 3e75a3f9f9a30f7a4b623788b89f3acd
BLAKE2b-256 e163cc0d25e055ed39544cedf9bba8d60fd60b264d61409fe3ce3facbc6e9c22

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 2e53efa2e64e4811ceecb57c5aaa837199992c220d0f79765c81df7dce03e18b
MD5 fa70ecc91f82c83725ec6198e713ae51
BLAKE2b-256 dfc628f88062269c0a1aca501870284c432f2491ca4783db9ca5b459d3e56c89

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fff913d3de4e4e0ff026479f67712b372fc694b5489ae013e63dad744557c912
MD5 c1053625bff5f9273584ea18a02fae0a
BLAKE2b-256 93cb0de27786e6cca72cf464e7ad9f0300dcfdbb19b36d17b4a9e9ea5865746e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6adf9297d752c9c43b576628e208c03c800b676a263f0919a4f73f44baea58d6
MD5 8ff5f707e5b72980e01df18dd1e3aff0
BLAKE2b-256 74b40d1bac66d72e704cdd44fd46e2c4d6291502ec57d9c7dfebf9ac67257fdd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 74d63e72a81ca6c51efe06ae7ee8fec3cda0c907c73e0fedabd680cbf64cc64d
MD5 d523453d40a2ee322fb0e3d99796e2f9
BLAKE2b-256 958af188d1ef7ae136576d778c2644d7659f62efdf8a80f2f41dddcd632ce696

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ebee65a60a14ff03afceb213d9036e9a9bbb1223f7b81fa7a119fa35d8e55a73
MD5 949d560dbd55b472ab41b4cccfe9e9a6
BLAKE2b-256 10e375b967f4e1d5529ab1a89700f0ff9da3bbed55b0c24a685c331553128fa3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bf0b198323e5f6a28b1030ddfff0547583626785691ee889be41f9739fa6ee49
MD5 fd7afa5b7861e88752df7a197e3500c1
BLAKE2b-256 c665872e00552cef5a56cfc5beed357fb3111006f9a1cf18b0f8fc87535209d5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 ffa91bc7f0af9a7af32b185e2418c5144101f0a0f8e577d9e0f96e1bb4cae585
MD5 aa80fba002eec427320d87e718e26606
BLAKE2b-256 9ef6bea95ceee88f1d30f0ec92a5b503d888cdb7583c94bb649cd370f9b7b4f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0dcd820dfaf676d1125a971ed4d15b03853d0bed82fe730c200699271c7e3a3
MD5 fe851c8b8197baeaf8363faa30188eb8
BLAKE2b-256 1f38aefec63c7fa723f8d008f3f70d407d400f745adb3df206c2325aa3288b56

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4afecb52fe6504ee8fdc5277bee8f29b77600ebfd2b9334370c1a7a3139bda4c
MD5 99633aaeb13d417becd8f5b16a7ef9fc
BLAKE2b-256 5a70bf26054ea9cd83f26b6fda4d985e061600de72a3ab161acfdf392faf7663

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bd52c4490d3a75af09622ef341ec897382dee6d4f5820259a83ca59ff563bc56
MD5 9d940dcafe11f5afab3f7479ab5740a2
BLAKE2b-256 d316d3791bd0c76cc7389874906d3b503279a0d9da4b36d1f90ed5bc2eb77281

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe9671e86278ecb1b68d2d9ba5c4c5478c95267e7ee1d8106756f3263c677f25
MD5 6368eccad4edfe7b0f5f9d60509596cf
BLAKE2b-256 f0df7ed1e3c89a2b5272300e9ba0e482edec005a95204f3cbb2d7e16b14c5cb3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5b089dc1d3e0f181f51955a186f4edba4f218b89ca895bd63bad9295d7ad6236
MD5 8f4f78a2c2fc9b06f37eb99a9ccda726
BLAKE2b-256 59e8bbc068c4fd02e59ed8c36f9a8a6ae159f3c9a398155f0850f17f122c6fe4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6797bb391f8d52839bfb90c4ea5b6df9f7fe6758042c4dae355ee5c5fa2dcf4d
MD5 a2af5d67a7cd99bf69fea1ba7e7b947f
BLAKE2b-256 302241771cb1240fb9965f54f4b767b2dc64856659f72dd8fbd3a4bafeb49b26

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 910d7cb3d823c2e568ee4ab8ac80152d5b79356c9d376d64eab4e6e30e71c9d4
MD5 f73625193d918c1af45f83b083df41c8
BLAKE2b-256 aa4482595417a4d21ef393ef91a24ecfccba89ffaef6d92d66a142130cf98d1f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17e724341ff395610c6657bbe502d351322c206e1d124d820b35bd156fcda073
MD5 e6e51c46e9c7dc2016a438fdfc4f907a
BLAKE2b-256 1028bc9f69bdd4df293385769a30d08469511a40f8f22366c80c13aae9766041

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e3e14b84d273dabcc21332e49129eb8903c379c16ed1928487b12fe71cebd484
MD5 5cc3f58f44fbe82284c6169c76b030b9
BLAKE2b-256 40f7f43631399afea36dc83c280f049e53cf0a43b9a1a47bbc49aa930e1fbf88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.9-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ce75b11549570947b68c3d0c938bf9a99ecd3a7d9dab17d21dae83fe2f9632d4
MD5 a0b4f38da93cf015e7b0fa80db710c9b
BLAKE2b-256 6bc12e0d0e502c8200519ef3072d80f168414f4d44bc1447362599a8a1629171

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page