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

Project details


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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.4mWindows x86-64

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+macOS 10.7+ x86-64

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.9.19-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.9.19-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0bd2f01f21901ab55494bedc3bc11712824f43a505f84c5e13248ee61bf26770
MD5 f5b3c8a86a34b2c703de9c421c6ef3e1
BLAKE2b-256 06c591ffb910f8f6a2ab6d73897137b02510c0b8bf71988d9f402f1919e4aa2f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5efc68708143f9b3985faaaa4665cf75bbc2bea3e25f1bbd19f49bc0551aa442
MD5 6375a62911d6d962c2b4d307eff5f4f2
BLAKE2b-256 7596de5639335808226f85a9c84175e78068febb15810bd50bb44808f81dfe56

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 c514ad846d8091bfcc0627164e28b083570c2ef264a55a2c7947d72581350bff
MD5 c89fada5c18b015a0e5d6521e082fe6c
BLAKE2b-256 bf0d1afab046f1ba2d07ff70ceb37bf43a756f8318a3f6e1b3bb95d20e8a25cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 334927618436ffc96628da13c8ad60f9ade80ce57e6e73008d7c382d6f83f2de
MD5 fb348ed5260c1c2b7160036a69ba1466
BLAKE2b-256 a6e29b98f95bcd3e46af321b96ce003740ebb7475d0614fea8c81a05cd18a87c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2f1bda08aaa35f0e14fd544102e2a4f884101a03e6b60d5be7103d98c8addef1
MD5 e2e4190e1e27226277f113a3287e5560
BLAKE2b-256 ca86a281c2aa148a20271de2c7aa8def4a1fe1a5ffee2a831a3cfd2acd06ba63

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f336e5df5aaa8f9f0027feba7f014feaed07e653893af74cf75d7fcad1a6fc62
MD5 2506c45a8da19c6011166fff3d6b4ba0
BLAKE2b-256 0c7dd581b355c5cbb1ded500999da81fa93513a1ff6a6ed3d328e63f2ab01754

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3516f273bc7a486f1b4568ca0e323b6a415ddf58040a7bec49f30e78ebc8df76
MD5 e2601e368e4979c42ae24bb19ea4ce43
BLAKE2b-256 aed5c565d8d32f2cfcb69134d3e2769f4aa9a5980804033e45a5c3fc8aba02cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9778a4b9a162e68dab6902e8b427b0504b35f5083f1bd87b343913f8c0a6b61b
MD5 b7eb2c8559bbe2f12924336a62285c2f
BLAKE2b-256 256ab6cbb286898c0a3d9d4abb32fddb236a7e543102bfcb03f4f7d50f31ef74

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e4c8dec0c8bb874ae4fa4e888a4751a45a130a45bea8263004ddb91c1a5e4f8a
MD5 54c2857e6f38bd711db322793922a4ba
BLAKE2b-256 11d8b63414ee7422295f13c5415d8655b62ab007c14e08d108f8c0c664d87d17

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 d47af5709004843b0622d5965d79becc308feab1a68806ad5446d981a115f27c
MD5 526c768a0927536559398eddfc3cb426
BLAKE2b-256 325223f3756d86c501bebeed2e92d5089202bf0f9076c3a5824fdc8e1b02366b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23f54118ad7eadaf55ba73dc62d90a2286c18e850d1e16fa647e54ffba6705e1
MD5 1f7a8eef1b8a98213273e0b85ca06fca
BLAKE2b-256 0bfc15dc11c24bc1bc13f1557cfa984a9625c0feefd3217c221e04c819cf8187

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c513551ca4b3d6d356596e3a13853906afb83e2b9f0b2e53c4ef7dfb78b038bc
MD5 e6ee8a8c39a8245599bca0cc479cb402
BLAKE2b-256 e86bb8832e586a2089f42a73e4193a2c04cc65c0b273d8c5e7ed96242affd493

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2093b91229d8ea88f1cd2961c16bc4314c2694c6396b5599366642a778789b15
MD5 1a7bce6c238aba71532d2b8dcb8e5ee1
BLAKE2b-256 c129135804671eb911c05b8525e313e4dc4cd4fc6f795ceb90fa41bb5cb2f1b3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f56fb83983a38412edc3dc7f2734f0aa6ed667e427014e1adbf8ece169d702c4
MD5 30b7bd963405729377d3a8565dc2828b
BLAKE2b-256 c0734aec43ef22cea16f531166de640262b0bd7b15b4153c666e1d1c233c0716

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e53759dbfb0eadbf7670d3a35aaf3c049999f12ad35d33ed8d3cef0eb2b2fc63
MD5 b27cc8985632fdc131789a4bc32f7a99
BLAKE2b-256 76e19ce24da4b7e038d3c71c267e089753e679ef1bc7de271a7a7889ee7e8d64

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f12dd3b23e164d7a099f59a78f140c6f33b0788c8cb369afd3c9942af820a29c
MD5 e6ad81a4e911ee7d1ae26f8f40bb4d07
BLAKE2b-256 0945d4bcd836173e1cc535cba50c7ed0bfbee4279c341ec177b3ebfce5acae9f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 d754eeb1ff77df8f36b96ff29e6275c6ec375ed70ba210b3f97c23e4548fd46e
MD5 e47207a563a1ccaa12e1c9b3d6aacdf1
BLAKE2b-256 11a441f9f16fcbf2197c5eb72786592237051854a6013841cf9c83662216e62a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a88edc7bca2652f23d5ef8b97ad3a53a43b84b82adf812314f0cc6db3124fb47
MD5 03fcc1ced206b67b7c1c75751b67e9ee
BLAKE2b-256 c32a77c8ba421e04546bf4c5d8ecd37f7b3f2e504476b1615edc280ce24b51e3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 11a19d8bf0a28d6a44ccc6fcb1833342444f7d04098b6d1ac69f1a2cbe9a3e61
MD5 973e2a089ac536ce6536fa7dd60027bc
BLAKE2b-256 0a1ec900e35167c8fa9f3cd2fb80e3d162516a2802db6da4ab249e877a4b3ceb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.19-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a146a90ae46456efd9a8770673752924aa2582f888ee8493238da2c949ddff50
MD5 aea740fba1e0cb75c3229deedf9452b4
BLAKE2b-256 83fec817469eb90d0ed4c517b742fb21c8d7dba007680649ccd722139166d947

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