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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.5mWindows x86-64

hdbcli-2.7.23-cp34-cp34m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.4mWindows x86-64

hdbcli-2.7.23-cp34-abi3-manylinux2014_ppc64le.whl (11.2 MB view details)

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+macOS 10.7+ x86-64

hdbcli-2.7.23-cp27-cp27mu-manylinux2014_ppc64le.whl (11.2 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.7.23-cp27-cp27m-manylinux2014_ppc64le.whl (11.2 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.7.23-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.7.23-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2d8144c84df86aec50bfd5137ce068eacc6d14c1d8070b08f02ea120b9c39d50
MD5 129b7b3799deb56f66863047d9150e6c
BLAKE2b-256 f13e9f66c821f87c7ed6c762eaf83e7ca2cf07995921180e5b8be8abbd782e45

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 35447dfd67328949cbbfa5c87df42e60f705791efd118d0275a8b2a00845fd48
MD5 0503cf948f929ba282231453b592b210
BLAKE2b-256 b7c738326833d679c09e7f717332f06714c88b6b5f14de5eee013e35709becfb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 47c5de05217011f1791c806ed52840a9eeedacbbb09497a0d60a8d7c526e9dd4
MD5 e224b53f363372af4b6e4034f3168c1b
BLAKE2b-256 e864ccaa2b382cad5a6f1995042925a84f6ab6fb723bce1e466c3c8e16d5df4a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 dac6a3bcab8934d1fe563c082659cdde5c83abbb60ab23de0d2747e2f72cdea3
MD5 afca3c11293e087f465cd9a1103c4047
BLAKE2b-256 0ca183c6a9630e1d3f08e1f5ec42088cb758391791f1256211368a2e3554e36a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 da5df9f6574e13f1fc18581a6c8c3d13c6640e968ee8d6a3ec6f9425e3eab1e8
MD5 c77d500062d92f2ef2c48f8565064156
BLAKE2b-256 04880c6ca4e6184c97dc45cf29bb643ddd62a39cab1de61e066fb096c47ecc17

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b9c9ea0483df6e8f0ff7266b208d46731fc447ffdfee2951b19f4507e1b9ef4c
MD5 3a56d6d209cfadc68413b68f87bd1716
BLAKE2b-256 d87a720461af7c69aeb01017c763a63334018bc56dd578294875b5fc74996fba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cc5142f46238300b13af035d7b6b899db15accddc16d455f3ccf3942b5cbb543
MD5 efb54cf69093de1a56620416eae91671
BLAKE2b-256 6309a6956087798f236a88a450bacccc898c01a81b71a0d411c00da282095483

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bd378b5c3933a555a0905c37545a125dd30fa7bcd5c5db57a253789281841b8e
MD5 5d6d66b6c72440776f90acc9e90f6d7f
BLAKE2b-256 311834a5e7f1951514fb7511bdd87cf9cdad51ac57a8709ac8ccc2486f0d4d4f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 51c5bc4747c33e8a6660def6a58cbf734b7a452c6f82d19f72eb44d4e9efb227
MD5 28e8fa40876ac9373b4ba37074b6a0f3
BLAKE2b-256 adc5d9cdd9b887fa9cf7d007253ab01ef1c1444920ba7330f4ba5663467f56bd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 d08e3b7a9c7c4b79171301afefce9bd61821130daf0c3cd1ad929b061a8078b1
MD5 96de8a490498d29ee8e7cb9ab4ff24b4
BLAKE2b-256 23c45cd4a1c6736ff1606177f373246d11ba904420a9a3b568fe71f475877d3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.23-cp34-abi3-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 3.4+
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.23-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce61eb514729ad4c40c352c24ecbd1c9ee761565117484caae3f442471e9f54e
MD5 896c007d9ca0bb956f2a1678777970df
BLAKE2b-256 e7fe83a8cd6b92883067b37623fbcfc53bdb9fdcdae196cbb1b595e67e8dfbe9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 729379805ec79a89701dbf21077c7672c5cdb91e225b5db66cdecea12a64fc15
MD5 5729ae386c34429ed10257ab30889bcd
BLAKE2b-256 53fccacb758f6dc6154c8df74e7f481df1db00d9472eb48a2248824d684b8f1f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 928d5776f6d4e126576a3fec8e90c49f9f9a28d68baa7e87de590a67c82d19af
MD5 9c15e508ae63e24c2a9263f8028222b6
BLAKE2b-256 b636d80c67b4df890b4a91a8de26173179f72e49a186e9c8124a60fec7b3fc81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.23-cp27-cp27mu-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.23-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0161e92ce46e54aca0361c175f42928bd16bd1a0568aa616921a18dc903613ba
MD5 7327febaaaa2a72ee59da583b207791b
BLAKE2b-256 56296ba92c690720f0466a37ba0932481f5ce292996c0239de0bb0065eb4d5e1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ada554e025b9848ce8a43677a3fbdbdc51a1be75cd7fc2ebc2f246702a59293f
MD5 b4d91806bc8ccfbc0254865c14166a8d
BLAKE2b-256 fdd3b48331f1c07768782d878256845aa990c688aabd7bec548a60e6c1ce7a47

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 027a8efd660b4c997b4eb4f544b22c6667ead4827d55487917d3638cf2cfb5b4
MD5 0abfa18a5c250aa53117ac6045dc594b
BLAKE2b-256 ee2b859cc742733e37d787f36f76b2d68d7508b2b9769bf760edffc13d5b437e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 eb7dc1137fdba1353caee28630ada351318bac2ddda3007284292125901e537e
MD5 029cc16a62732f4549d64d56548acf55
BLAKE2b-256 a96166beb6fd1f872d106b3bcce9492d148e3d19983ea55f57d1de824d873e4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.23-cp27-cp27m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.23-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b741b7106e2bd478dd8b8afdec894638775cd0bb9a7d7ed654c010df91025b77
MD5 514e2d0cc298e0d885c4a67b13a83594
BLAKE2b-256 3b5acf302ffb1d205d90986880dd31cc478c460106ccbf68fead5aed8ad42005

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6216a600646f917a461adee004d77e80e111227ddfe9277511529c9d875e4db7
MD5 ce712b2b756ef25e41642890a8e75bd8
BLAKE2b-256 766bba0e4b4dfa763d85c19c943dfe38fbb503315565b1cfe388f51f13de4bce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.23-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 44c1c90c977f04b740b38c4897c8c998946a2f44f27101a40f93cd8e40a8ea73
MD5 08f58e1f85a2de773f2209374b2e32dd
BLAKE2b-256 90a4c1fcd8f267a13be9a7d2779325962ebba5d56cda1c78b08bde865ace0f96

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