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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hdbcli-2.15.17-cp38-abi3-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6+

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+macOS 10.11+ x86-64

hdbcli-2.15.17-cp27-cp27mu-manylinux2014_ppc64le.whl (10.7 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.15.17-cp27-cp27m-manylinux2014_ppc64le.whl (10.7 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.15.17-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.15.17-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c2213ded5120303a6b6369d6c4c0e4be7396cbb05ef2e7cb59c95509bed4463
MD5 1d2d70d16044b273e9e3348d00013b66
BLAKE2b-256 23883e5bc315a5c9c6746f6136eba6e73aa435ad116348f4fd5458e29a42ffa2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b75ff848bde49b9fe04e7aaecf3ae7e7090b15ee95c23d9be6193966042f491d
MD5 831b43a152de9226994a311288e2e3f4
BLAKE2b-256 1ff587b319b79b7d1d0965d592653628271de6407b72cc081a526fc89bb22d99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fe72578195e5b62f7914e06615c3f2606e6478483aedc35f785f5674b867486a
MD5 d11cb2fed4b1fa55a6a547a0c488d6be
BLAKE2b-256 88a78c739a9939223d8e15972e78921ef753294b6893feaf98ca160be45f2291

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d585d37006ede78db9806603e4d6e35a0832cc0bbc026e857234551f5c4330fe
MD5 90ae9455c856f3e2aa95a50a311f0a9c
BLAKE2b-256 74559150ec4d67185a1a167804ffcf15020e3c61f480a85a8346ea931e33bedb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 24258af3b0e6ceec0b1ad7eb5df72b4074924350a63a7173541a139612e3b52e
MD5 5db076a1d42311a60a51bb23a6ba07e7
BLAKE2b-256 5ebf34acc23b6082017b61e300102455c709a78633057227529a9c2e804dcddb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 61c274310ad65d4c749dfb902c7e5827c95cf8723671f435724c910e1e3ae8e7
MD5 eddecaa77f117879c95c653c56d96cf3
BLAKE2b-256 55c9aa81b21e463269bdef24b0df0e966103994119caccfefd4bc0cc8fcc1be8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3dad3528125eae65a99ee76caf6b482f7d4d9c359c66191b397eb93ac55f5e1d
MD5 a88743801ff7d4494879bc9d0aa66d5b
BLAKE2b-256 7f3c8202072c0915d87ec5457e653b4e89df3093a063c7a79dfe81f9d7fd953b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e9db93839b6c68152865fc7d90036afff64cb13dd6e119ce534bada469e024c8
MD5 357d24a75ddba894c532d15d7e2cff74
BLAKE2b-256 b8c44d238025d5deff858fae3e6d0788793b86b7d4b67e45a4bf6c803ad0c2d8

See more details on using hashes here.

File details

Details for the file hdbcli-2.15.17-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hdbcli-2.15.17-cp38-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.8+, macOS 11.0+ ARM64
  • 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.15.17-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4032d1ffb4df835d37b9602923a52ed2e2df73c01991118ca8ccb07a0298f3f3
MD5 f0ef76143e35c9904e43b431335555d1
BLAKE2b-256 b71568a4cd8b4ccaa09ee22fc58ad6e9224124634a267e8f66bb6e52ad44472b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 df6ec06a37af4f44225d33b2437276bf5413efda30abb999d17f879b0a81efd0
MD5 3ab55d39b0051a39b9652633a60248aa
BLAKE2b-256 e61ee397955e8a6728658fe552df9949646b2aac1d0028dd4a2e79652317d80e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7c0ba46a822b92ce33581b973e7a50c398ef78c0b642f92c081ac5c90432fa22
MD5 e60fa195cff1c92d47f0f8e4e7fe378e
BLAKE2b-256 bbedce71eb825f6fe77c82ded6e355a74f696b49966afe4eeabeb6ed4c796424

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp36-abi3-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37d6b6634496892f9c56bcfe957e31bf1ebed2572d4fe7fd4916e3700483adc0
MD5 d9f9dab3995401a8d29823c39aa3c514
BLAKE2b-256 37f641d713b08609c1e35e50b659818d92ef57f614af70dfff3e8f497dd6d4bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 135ef6c3c53e82d721f9842d587b2922e7466e9e56e302044cdbf79ed30876b8
MD5 21679fcd9dca2dc9088bc9401cdd4969
BLAKE2b-256 85512abd97edcd101e06759f2f813eabd42012114db0984785bf6e7cbcf50b23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa76e91787753cf472c439d4afd8322e78f5f2b035c215dea3b1cd1d4138c474
MD5 b9b3f5ccbde5d8c77ce856a416f5f808
BLAKE2b-256 de1ff0bff3dcd49bf74492155734e85f798ab4728f062fb8b439d1b69fcc9707

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6789d9773c3f37d962195fcb0a480992256a31fc3a886158aac04b856b37dd7b
MD5 ffc9736b9dd0da449067204edfca07a4
BLAKE2b-256 4afda6a17d509db15103f92971f786bdb4b1b74d066e5fd39acdb1850b6a3fca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp34-abi3-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 0b7eb27b9ad9e17dccd7715d000a46e8003badc8676feb55fffbfd5c806ed4d1
MD5 50fa20d8669d106eeff4457bfcc0e543
BLAKE2b-256 e1f63860cea152f0590b41feea204ade8f3538fd6b2e2eaab947d84c8334a1e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-cp27-cp27mu-manylinux2014_ppc64le.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.15.17-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e71f8c330797dcb4f386fb37bbd7aa2ff88fc3125892f6920cc21ba1b32b6da8
MD5 73e15c56b9dbf1b85f998236507f4c45
BLAKE2b-256 5cf177f88d0087349995d724e632a31f3bfaee5d5794d071241834b74f124fbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0ec28dfb7b7354c8de9846aa237ac1861cf7441c4af90ae00c8e3821ae52f19c
MD5 40403fbc04cfe3b58dd411f90967fc41
BLAKE2b-256 745f8632896edcafbb31a7e741b436d2427ec965c7581367dea508bc60aea127

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6372a904de8c8aff38fa8c988146744a0d20c1c52a6fdcf06e8faa4a30a1ea1f
MD5 ee3e06a4107cbf482bce21dcd741dfb3
BLAKE2b-256 3ab4a28e2823e13c97e4622cce9a1dea599458ec30f9d8ac39f676b6bf3cf0d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 a5c61dfb0f4747eb167cc7a4ffae6e96a9d5ea34ec641eb3b5586dbd12045391
MD5 321d44ff912645a483c954c502cdbebd
BLAKE2b-256 913c361f4c8dc63803c3b4709b8c4628f7325bd22526b8a84ac850389bc7e9af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-cp27-cp27m-manylinux2014_ppc64le.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.15.17-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c88bf7557880d311f28e8340685bfd65e1e4a237b3ad240029f54d64cbeb86a6
MD5 8d67a72e867a2aa114fe1ecede67f91e
BLAKE2b-256 6c77e2a0787770ca2057b4641519161b2c6e159c9d401ac37eba68cfcd54d0e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3dbff78e844e465e502237b927d901465f22e469a391da69bfbab995bdec2503
MD5 3406edab48bbd798398cefd3a65aa3cc
BLAKE2b-256 9c97a24b434e12f45b7192be66f5d727b4f676dde7744203cd0737d758dcbfdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.17-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.15.17-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 47ff63f4b8c3fcc718a3c037fabcc1ddb2df6909b2d836e37698aee286bd18d0
MD5 279012128bcad1affca563c61a790632
BLAKE2b-256 924e8f373d6b53c0b83d7b7a64ad637937de059ece6454c59e6173c06719b7e5

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