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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

hdbcli-2.14.24-cp36-abi3-manylinux2014_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.6+

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

Uploaded CPython 3.5mWindows x86-64

hdbcli-2.14.24-cp34-abi3-manylinux2014_ppc64le.whl (10.8 MB view details)

Uploaded CPython 3.4+

hdbcli-2.14.24-cp34-abi3-manylinux1_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.4+

hdbcli-2.14.24-cp34-abi3-macosx_10_11_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.4+macOS 10.11+ x86-64

hdbcli-2.14.24-cp27-cp27mu-manylinux2014_ppc64le.whl (10.8 MB view details)

Uploaded CPython 2.7mu

hdbcli-2.14.24-cp27-cp27mu-manylinux1_x86_64.whl (10.7 MB view details)

Uploaded CPython 2.7mu

hdbcli-2.14.24-cp27-cp27mu-macosx_10_7_x86_64.whl (5.5 MB view details)

Uploaded CPython 2.7mumacOS 10.7+ x86-64

hdbcli-2.14.24-cp27-cp27m-win_amd64.whl (3.4 MB view details)

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.14.24-cp27-cp27m-manylinux2014_ppc64le.whl (10.8 MB view details)

Uploaded CPython 2.7m

hdbcli-2.14.24-cp27-cp27m-manylinux1_x86_64.whl (10.7 MB view details)

Uploaded CPython 2.7m

hdbcli-2.14.24-cp27-cp27m-macosx_10_7_x86_64.whl (5.5 MB view details)

Uploaded CPython 2.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 beb16fa0dd1082fab67ba70be144e6f552c44a725a6b33d243da976c1bf5e830
MD5 80209d8bdd3e0fd11274522feb94f950
BLAKE2b-256 d6837f076bf472b745922156429a33cb331442a9523b85bdd52d496fbb1863cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d93f0da621d3e7b587cd52a19cb7b75e268405467c98acf5340bebf6a42d3356
MD5 54e79d0f9777662fba3f9a95f86a0bee
BLAKE2b-256 e176e1285bf08db5c5df853b3421cc12e97c174cd73e365222caa8045827d6b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a6622e9e39583f7920a0f109815e54b967979f2869871c8428c49e751f10285
MD5 331892f890f46f4cdd8dea32eaf17a2b
BLAKE2b-256 14c3fa88d4705d9b3032d35105c64b8852ba6444074e20d2c19fec7397ea0cd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 59e6fee00ec0d3fddb32bd3e6e14232d6204cfb429b87d08636afafa38a97c1f
MD5 73dd0cb7c1ef68459ae9697f23681edb
BLAKE2b-256 61c536a751356398f22bd3d73f119c2502be1acc06cf5570629aa4d2f9887bca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 dfe58721f63170ac39036b1832ffde1e2b470f97d09015511dbdebd8b272eb31
MD5 0dc09d93e9f096b33e84d1233d3d3ba2
BLAKE2b-256 9e04f8a6b7cf837c32c5e129c4124c99211fbe3ca3343e72dd3ea6250f40a369

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 7098e17d323f79deda38ec4225ce15d58c8933b4fc44eda7d3a3db0713edf9e8
MD5 7d4c834bb8bd8fcf768403fb3149e2ac
BLAKE2b-256 2a6a5c17cfa4bd32c3b1438a6d15d94748bfd767e12802c506f6bd16ec8de642

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 37433e661fd4b7a4cc1130b419a9c2abc825862d0b4b5da017d92e27b29dd8ef
MD5 7abcc5b852438a423112e8b416f79a5a
BLAKE2b-256 03f17a93a0db3e55bd7bdadae2a4a4941a7da69e3206ba9be95b9c1b492a58c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6a260ecbeb8c4fbd8734b30cc29e075f1b7f03e3cda0a0f9786244cbe822f656
MD5 6e7363324d8b80aea7ebd5bbe746b016
BLAKE2b-256 078257eeeb250bd6c251d5182befa3b4e98bd4d1e1dcf3b2af906c6dae752571

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c910265891b294a2c99ba17311d34339f41ffabbc5fe939dd57e972016abcf49
MD5 0046c3cf93c7372cbfb51f91682690ab
BLAKE2b-256 efbe47a86b4ae5cef64324758db0bdf4dd2d58b080ccc2f81a0e62a4f077f89f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 47b7af68278c73e25289448d6bfbe511445b071826a59c0abb7732b4e5a30180
MD5 98cbbf7abb1839cc44cff36dc7900206
BLAKE2b-256 e958a66f9e6bb9fe2e46c8bacb161373bc5c2071076498d70b12cb27628f16dd

See more details on using hashes here.

File details

Details for the file hdbcli-2.14.24-cp36-abi3-manylinux2014_aarch64.whl.

File metadata

  • Download URL: hdbcli-2.14.24-cp36-abi3-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.6+
  • 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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp36-abi3-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3cf01db2c22b2560d5b2f44c27d99fd3aab543ede6e31b7b5e217ef1c2777dd
MD5 ca0c86382109d4aca7b89365c439563e
BLAKE2b-256 cf7743de60941a43babbc123be4f9044969396cae5c2649d7dbda653d0f8978c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 7a99b18db2831b12276704ca77523a4ba759943e62e509ce34978520a48ddacf
MD5 5c11ff43d6f874ff3300e11d6dd5ae76
BLAKE2b-256 f1bc5eff82155f8b915d72ac79dec1413447cd8dc9b9989d7d187384200e21e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-cp34-abi3-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 10.8 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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92a6534d1d28b12f9dd638a83d63ab456df4a5c66237f81ab19fdeb5bf740d31
MD5 5cd2bcee5790710bf0024147a06e6b31
BLAKE2b-256 c32e09f27c08029d0daf25f9ed1252095b35caed6d67d90a265e06851d1f33d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-cp34-abi3-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 127542c6ac599bdf3a9236e7ca9f986fd46f351279199410e8ea3e189c68cb78
MD5 721246397a6f7fe5ccebbf7d28f489a6
BLAKE2b-256 8ea2339d130fd229de9a7c3d5591fc8c30fecaefb82bd6b6b23be09abbb867cc

See more details on using hashes here.

File details

Details for the file hdbcli-2.14.24-cp34-abi3-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: hdbcli-2.14.24-cp34-abi3-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.4+, macOS 10.11+ 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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp34-abi3-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 bc66a4527cf8e4b34cd33d54de77409440b2bdd2295400be86e272b8f5b0bcf3
MD5 a89e7527d8e1d05f8f3383189d0062f3
BLAKE2b-256 023150da778db02ae09486e19e6cc04185607445d21544f32b53f8eeb2ccfc88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-cp27-cp27mu-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 10.8 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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d23159e94d2b3ff3638c4706f8226a71baf7b8b0db4d7545f095afeca22d1f1
MD5 45afdf6ce9cb50fcd5a60d204bcf9c05
BLAKE2b-256 5d3a7f8a7f03ef8216ffe74bef769017e64f2b19632af1ff2f1ae5021434d1ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1e44439f2eab4c0e85464bb5f3fa3dbe796955e51bf3544f28ae5631ce53e61e
MD5 fac4b5165bda5bb53789ac0d0374bf81
BLAKE2b-256 c0d1a41bdcc5415acf9aa157159568bb5036e350f4a607edfbc074eb812c086c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-cp27-cp27mu-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.5 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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fe3288cf3f5b039c56f058e27eaafe9a88957218d30d9c7086ed7f156bfefd20
MD5 52cf9a8b0d151a970dcd9ad2e3d22653
BLAKE2b-256 f81e999aa3ecd4700b002e860fe6b4494acb16e3b25a7de3eb30ffbe1bb32f40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 89787474f3ce1a3d5269dd44c3b385ad9b8aac50fb2a98204b43c89a8814f9d6
MD5 134f06b4f44ae78781928eda92632c04
BLAKE2b-256 ca99facc2a3eccc5a34f1cb483c7230eb5a3a0b1c47d8965b5ca15e5e5b045ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-cp27-cp27m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 10.8 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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3626dd407a94bcb1d4962cbf04512b8aa30b0de2bf4ab0f95d24d468801246a1
MD5 7968dfdc415ceddc560db3ad842b7798
BLAKE2b-256 6d32e70ad1948ecbddb45176701fd48e56d9fd2e04c8b400d03dd7b411893849

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef0a852a8b77ab725de7ca55660ddcb657f1f45b4454e1320344c5a3efb05eb0
MD5 b3c6110a254a0745ede63b4a8389de97
BLAKE2b-256 e5171c164447ac633214caa609f13d9daf7603ca1e5c6f7eeb1afee7f58d5b1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.24-cp27-cp27m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.5 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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.24-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6acec89fe72f86df1f305e7cb455beffb236e2e811f9772e9cdbbd77520c1580
MD5 55c0531a22a0fcaca70098284322aa70
BLAKE2b-256 e20a1c23e75fe9a5ad7c67a95fbe653dd21ba4c4782fd18c1791a64614d8606f

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