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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hdbcli-2.15.22-cp38-abi3-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6+

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

hdbcli-2.15.22-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.22-cp27-cp27mu-manylinux2014_ppc64le.whl (10.8 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.15.22-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.22-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aa6974fb96e48b90349862d9370eeb50f3299c047f5914d90bae46d7052415ca
MD5 5952277152b6210adfa7743d25d94d9e
BLAKE2b-256 8f8781ad5118e9798ca373cbfdb3204b51adee5daa411bc78605c70e5e707445

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 88caefdc18e51dee8f31e7476d1c8e830faa22087b757da258d26310d3070162
MD5 59750f6ce078eaa95394dba999a36c84
BLAKE2b-256 cd50b8616107c892a534a561c2814dd3b463dc56a64e952c86d548edcec70833

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 69121f65f721a77afd8132a71881a35e092728befbe67cd074b06a3ee9f09404
MD5 15bdaf24cd74f5418362fd0ed6e98b9e
BLAKE2b-256 e9f1fc279b60ed159cdeccacaad61cc8f25c52f69fd6129a859c32d5f11e8254

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 645ca0685ed91bdc586abcdec41b8a4c182ed5068f42c3eab3ca9dd88b3adcf1
MD5 fcddb5b464b2c280865ca7ff3a8ba6b6
BLAKE2b-256 2601dd900ff75e787ab7ae247119af7f5770d2500478a18e810fcd40b6daf276

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 ad509dde60e9d3f4d34625ab9f5088adfaabfcdfad8fd535019946919ad5a558
MD5 8ce7053df169949d3067aa8d90463e6c
BLAKE2b-256 ea2d374e36cfd3204adedc50f3f0bc42461ff042286a2f6e61945630c1de8520

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 efede29e28eebd27a62ac873249dda1ddf55d10776edca9cc37c039bc8ec54b0
MD5 0671e3aae6462c79cba9890326ac161b
BLAKE2b-256 11753750fcbbf235842ca62bad3ed1e2e182433617d6c99ec78423594e4ab9b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c1e8b485b79f6185452ddd657d63a8dd67d2c95aea1b774918c4147f066b3c8f
MD5 8fccfa84466d102c80ecf3882dc5b23e
BLAKE2b-256 c1ae6d80bde3a5fa825af48c95bffcd826b27bbea95109ee9e94589b6af4c676

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 222a3d1d3e0bf124751ee4ecdc527634fac687360644073e904b2ca6b95affbc
MD5 648c868090988839018110d2d47ec2cf
BLAKE2b-256 d84de61e021a20f7fe2cb8fdf6a0e63328964d107943850ab9ecc502a64a6d54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-cp38-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.2 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.22-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe45c388cfb127a752b3205efc18a0986a1e57ce34bbab9fa2079b699a6ed02e
MD5 f70471a65430e576fc312355614fa3a0
BLAKE2b-256 7d59fbb599f1b1c5541c7cd044fd08d0cc9df5082d4ffed84351536e13c0ecaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3360c31578f5600ac32841cc339277505bab177f854e3cc4addcbb86c5fc7f0a
MD5 fd05b3ff2aefb8fcb76a81557a1e5725
BLAKE2b-256 29a0f2f621a1fe1e1f494badf51250533bb30e2e1fc3a441be4634514f5e2f76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 70f37568d8e5dbbb92bc75bb225bf627606eedd356f8416b039deb93f7964b69
MD5 20f6e0ce5965037dc65ff62197e8445b
BLAKE2b-256 39f8a370031f5b6e31914b670c95c9e091d55e75f11efb5b35545026d18b7db8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp36-abi3-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4da34d2789d13cc9a1676c937247108605d3414872eb1b55b648edfe9e15dfbc
MD5 0c18809d984293cd68d3ae04952562a2
BLAKE2b-256 5aaf28a2d1bfea84ff19a0c038f652b6e70480742e54de96eb7dbea0c6ad813f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a2b7a22ea309f28d1c1582c97c6d85735aa48c2637259b81e292a273a6dc5ca1
MD5 c9d536633bffbdf93a6fe766ade670ac
BLAKE2b-256 5f432e33af11a6a26fde0b01eea7e63c26b55c21396910a9c900fe5fe1c94d8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce70d21580c06527654a11ac463405492643e748ee4148e215630602555f87d5
MD5 b2acd6f12054272617014b10cf0a6785
BLAKE2b-256 1aa7c52115b2eedfe00cd247e1aedcf77487dee86290028226c1c2d0f3826414

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 48dbcf89cabdf2202f0e20df972cc1f41585077ef0abe5c8c126e4be54104470
MD5 fb3424b6ea004b54692da87253af16ef
BLAKE2b-256 014b344bf55633b3d49d711107f0166e72a137169d68459a8aaf337be071d506

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp34-abi3-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 774a3258c378c8c81e6886222d4e44f96d63dd4d403bbfef9930d786fa9ac422
MD5 133c0f754ba58f23a0ae6f41b6aea32e
BLAKE2b-256 8a94df9ac800419006d7346df55f9371f12ee8ab5c468b23eddc62ab3186ba4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.15.22-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7617726342d1bf1f48c26718bffaf217d23d34c8cb2729a018ec673a80ef5b7f
MD5 4fe8e6a11ae7707decd639a7708efeee
BLAKE2b-256 d59464c996d3602391bfef8258ffad50f4d932d5d38b4e75600ee5bbbde4f5ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cdc2dc6fc21af20084cd502a0007056e0613964db0a6e0b60322841d8e30276c
MD5 c437a196b1717cbb0141d47990b90daa
BLAKE2b-256 fdd78580f30838f3f2f03e0c6bb00d6ca00ca60c1e7d6df8f37f2a8d862d9ffe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fb248bb45f289499aefa513d457c7afe5cf4b1217cd4b065021652bc7946b7c0
MD5 b3ef8da984d085cd554b85e6a9489559
BLAKE2b-256 d76716e56ab9473ae932dd2ec0395f8a35124cad44748de2928fe7c5ec442661

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 f4f31a591451c363ab1a2a90b7d5bf48e364bb432c64a166495b281105e0d9b5
MD5 f524987302be769578e4977468f12009
BLAKE2b-256 53a88520def8b36e35f15d218719696b1e78e035a286fef6b6eb1ab9efdddf3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.15.22-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a18052bee1d5bca17bc0872e4419f42d0df38fabc82b489c1fe46431e541b12f
MD5 0dc5497a724ce35703be6177d15bb44a
BLAKE2b-256 0306af86bec2029ff43f325425e54443d29db7e5c8d38e74b51365a09054af0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2fdba4a4467d822b0fe07deff5136887cc4a0bac0ca2f4186e8bcc4747cdc9ab
MD5 857e7b74c1e00019c5372e0b2fbe84a1
BLAKE2b-256 11b6e19af586194822fcc35704e1d2b371136abfdfe8f2a80bf81cb4353c8998

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.15.22-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.22-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 96cfdf4cde3d012f1068d47e96727a493f446ec229946ac0a0ec863509171613
MD5 b277623c88fb59142c800134377c3cfa
BLAKE2b-256 e772ee25bbf2dc143e2f46c0919eba0bbefa99b5c15cef43796eaa9b6049c752

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