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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8m Windows x86-64

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

Uploaded CPython 3.8m Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.4m Windows x86-64

hdbcli-2.7.26-cp34-abi3-manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

hdbcli-2.7.26-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.26-cp27-cp27mu-manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu macOS 10.7+ x86-64

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

Uploaded CPython 2.7m Windows x86-64

hdbcli-2.7.26-cp27-cp27m-manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.7.26-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.7.26-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3a0ddb12d101e90dc6d724695f270d6581110e92523cdb7375432463129a6cc4
MD5 0f09d5a0adb96008d5811611a29b04d0
BLAKE2b-256 6b8248a48ea668acd2c5c469a98b2ba1ee24f210a8a283ed8a1911e92d11b314

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0ad5f3ece5ae5be6d620212acc68fe79ac280bcf0e8d81b923e136a1fc037274
MD5 c3451489f31140a5caba7f91c4bc2042
BLAKE2b-256 48093428f8b35f225f803c1d95c9b080850b55d239a7546551d4c3eb6af1965d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 0ee0bb6d52aae5fc8a43fda9fee815fbfd688a70a2e9305d6994836770bc386e
MD5 bd80c3a87e257c58ffd6f789cbafaf2c
BLAKE2b-256 4992599b7374593be04a5c22036a17257d4b340a440e925bb0ef202f81b41c1d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 98c00affa72347762e08dc9b02b7a091b4a11b0a85a400e792bc519e17467860
MD5 7e6f4753e54bb588cc976ab8dc985a3a
BLAKE2b-256 54b202ad912a7f0c7121f71fd087478484c0b43c3b6fcf9d6f9d958d96b06b85

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 eb1a807e77c97ace7e291991c7fd527f1aa616cd09b9bb9cf13a6df11ba6940d
MD5 5a2b068983d983bf8f938a63b34c793b
BLAKE2b-256 5303e1d5ae10fc5ed8720bdadc0feb7306648e4938e432e57d431cec2078e1aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4242e3350e6ca1bcced755ae6291c8c5bb712641e0ff2fe3ac200b74d41b3ee0
MD5 1857a465759088a97f4c2ded9d4d6667
BLAKE2b-256 3f7a996555c4556016faf5dd0d841d33e91350a12908f55a4bf2e5ae1155e513

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b2fb6553536747d1b1af2916e29e8b91721b8c19af91e197490ea14ae9d157c0
MD5 86ae1b7b9974e17d25c9babc679172ed
BLAKE2b-256 1a9cf80d026e827b21cce13f5aa590902bc8c497708ea7af054a45260b757aae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a7645f3a7c401372372de73907e1f9036c0e5d9cd49df7abf893e8301a3a3735
MD5 2f663a6fa97393549c5861efe0a5f1c8
BLAKE2b-256 d6b57a042c9b7222ea564118ec44e401b1a3a0778ac5e835bd8d266a06ea9813

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 601d515783f2779cffcd13bf83b7f735ac6f567723e1ec2ff51b6eae13102931
MD5 49faaedd60f9799d4699cccab4e21c05
BLAKE2b-256 46646c3f8b853768430db99b6d8172954a1f71e03473998c544542a11d54307a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 fe6496d3aaa594526d7c544d9c304d3ae992a18f469992ab12734623d00fcc77
MD5 641b33f960314cf3820e150a55bce272
BLAKE2b-256 3bfa11913a9fe65815b37973dfabb0df265fb7cd4351c485d254af0aa59667e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.26-cp34-abi3-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.3 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.59.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.26-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eac71b0d71d2f8f40d4c1da656700bbd06a51426c34f66d95ff7a3eb1b96a294
MD5 9ea19bb49c0b6312da421733c5f3043f
BLAKE2b-256 f8772eda2a9842461e9323ecdc0732b943e35a216ba26039f76789c1ea382aa5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d079147c6a133dd8fcb6d58ea28f903bd7a87ae4cf4455c430aa0151239be0f5
MD5 64d876eab4dc0fa38b4e2bc38ebe420a
BLAKE2b-256 e0a957eab92f7f0ab20bde61ada0c3c3049e82bf8445945793963da38eaaf9a7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 87da8f7d23ee6486d81b523d8e4e559be5cd9ddb652ae73864849f7dd2201fa0
MD5 d04676bb0dcef4a0a2ee88ec7eb929b8
BLAKE2b-256 866d8f75a9889b7ba47414bf9f611b09b1e978347d326399f0d82f91fecd98fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.26-cp27-cp27mu-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.3 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.59.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.26-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e10c5215f15165479aeee31cc91164c5a5f2643eb955f84f82c9e16657c81118
MD5 9584074246553c3607b813ea4b69cc57
BLAKE2b-256 77eba2b1e6760f20f20be47f2c7629154980f9ea377941ba9f43522c7ab305b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2c9baca256c8826e8836578a4875b0e69294cec477a1bb1aec38424cb097ccd0
MD5 c28d946a86d78136519f7e38116b4e74
BLAKE2b-256 83648ef70c86dcfe3f66767bdafe07236424557a48c258992858c8c76db665c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2042588ed583c8cbaa11f20a2d2fb0feb6f9cb54669251985ef66a1eb055a32a
MD5 6a82f71e7dc8e4b51d56815b6de57d15
BLAKE2b-256 51a23c2af9355726519b3aebb4ad1342be67ff58ce02f556d456664d744a0d8b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 334dac08ce80d5abdddf7380e2d3691c3050130deab7a916760ee0a3854d2b08
MD5 9cfe076ec2efe498cde8c4b5e5999037
BLAKE2b-256 77d41acf97cb0260d728b4220440cc0c2de98b4567c74fc0de4fb4b7f44891fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.26-cp27-cp27m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.3 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.59.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.26-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e74a4c7a334f1c0ec53d21addfea5806f0bfd97f4b472e59c70425d775ecad0
MD5 2f8a7175334f48002f57c0420d463c75
BLAKE2b-256 5997883977b5bdfaae5ebf2a6a753d8883d8d0dc93abb2e15ab756ec08762866

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2db7e13f9fe5dd78434bb9364a931be504bb74dc903ab47b8bd023fec586c766
MD5 eb037210183b630d1d03c9f55586917c
BLAKE2b-256 62292a85b084c5c501c23da2af7798368e01f527db9997676c41704c2f8d2347

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.26-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fb7a9160f8166b385a29b9fa0b307249df49bbb98c02dfb9f0a06c0d964d7b70
MD5 a5aec1399968368860c1d8c8bc9401e8
BLAKE2b-256 a493dee08bc13cf189cef5e10b670d62d1f14223059768509f1d43b65f176b39

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