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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

hdbcli-2.14.18-cp39-cp39-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8m Windows x86-64

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

Uploaded CPython 3.8m Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.6m Windows x86-64

hdbcli-2.14.18-cp36-abi3-manylinux2014_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.6+

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

Uploaded CPython 3.5m Windows x86-64

hdbcli-2.14.18-cp34-abi3-manylinux2014_ppc64le.whl (11.1 MB view details)

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

hdbcli-2.14.18-cp34-abi3-macosx_10_11_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.4+ macOS 10.11+ x86-64

hdbcli-2.14.18-cp27-cp27mu-manylinux2014_ppc64le.whl (11.1 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu macOS 10.7+ x86-64

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

Uploaded CPython 2.7m Windows x86-64

hdbcli-2.14.18-cp27-cp27m-manylinux2014_ppc64le.whl (11.1 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.14.18-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.14.18-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hdbcli-2.14.18-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.5 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.9.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 46094f6fe68833309a841566a5b4937978421f8dec816f0242a40723e887fe85
MD5 3a0b40b7edfd2d4e17da1bbd38cdb3ba
BLAKE2b-256 04d416842e97ec0a996cd9350a6b662e74513dc68773f16a239eec7d802e9797

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ff3a7f1c59ce033a0d1d472c8cf16171f2ce5ba1e9ed21a6ff819b0e6aa5f305
MD5 1ee301acc680d38bbcfea7d46fb4d654
BLAKE2b-256 a3539dc5c6606d2b86b5dc275f5359f34be8b7797efbfc19342d8593fb20160f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fb106e2fe6819d5a0e6de2836624a23a0f2969277d227f4d89433888e8980025
MD5 cc0eec9788c9b1f12cf5c1ae53c72afb
BLAKE2b-256 5b37a7f75f128f97364eef30cd3e419cb4a96126b41a6677b1f50eb4006c252c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 66d1afe1c0bd1a8bc31aea699082e7513a50ba88faabba29ea0508d9d1f04d08
MD5 b0d7c0d8f5b8bf382f4174755232ecc0
BLAKE2b-256 11ed89021e64712ff3cbf0a4e4f492f62dbe1701c1bb3f4ddbf8674deace1265

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 360b0e5a5b2435f050c5956060ad00266ab1bbbc34c400759fb16db6d172be25
MD5 ad26182e54979c09ef44a7947e2a27c1
BLAKE2b-256 9184d7fa21ca9fd13a028cc0f47c862200b19642ebe8c8c994641696b308fe33

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 d977b25853654d7e9b6d94fc8ed6eece60178090a903dce42b697a5b785abc60
MD5 34d958d17a519a3ec59c505c30297217
BLAKE2b-256 5ab5579b689a8d6c49dbea053743bac5f74709ae33bca45a2d72ea22be1fef36

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2efcde21aaa616f6d8baf8f7444a25ab3f1f266f7eb70bf2e182e65132238f07
MD5 60f2e1fe626d0608278436b81e37a095
BLAKE2b-256 8cc64445ad458ec6b307566227304f2225a631f36221533fc6ab45e39c2b4c2a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 db82780f50569a5642b1dd5cef7ea25380e76244ff121bfe5e9eb789f1f3429c
MD5 cf57615e8e63233ee39d9e6fa8239814
BLAKE2b-256 433d5158241331295f517db9ac45c069128aa0d23b91807d70ae0ea9c9f9d7d4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ecde1e244089286459129e36dd8258e2f0311ed84096d3dcdb33cd070313175c
MD5 0df595e897579f3fc132f2ff0cee1774
BLAKE2b-256 c465c052f0bbf9de95300ff4cc4cc972ec9307cedcf5243f2b1315ff2faef1ce

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5c0a59b6b6d7dd559ca532349bdb59fcb980734fb6c8285075d98be01cab8a8d
MD5 9f694ca5bcfd77fa0c6e6296412c746f
BLAKE2b-256 e4f3f98035f4da15cada0a810bfd39de2a9c17d0c433dbe15ae584c4f5646e98

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: hdbcli-2.14.18-cp36-abi3-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 10.7 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.9.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.18-cp36-abi3-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 776f377be0a0c3bfc140de4f8d7cd5c0de4e7052bd44052f31e81e5f6aece85a
MD5 3bcbc4f2acdc2b47a1685d8b58a593ce
BLAKE2b-256 a810aad2a75b4c1bfe4c9ea29cf016e40a02c976d074119b4489650496b6b989

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f9ea6929e93543a8ebdcab8331f14a7fc01ce8934cb62eeee74b629a37f081ea
MD5 a4f1ca30e9fc601ab8fbd76977047483
BLAKE2b-256 cc384c7af372b5d1b9ffd9a18acfaf584156dec9c354bca17c030660ccc180fe

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e19c249480647fffe027449a2e0e18a48b1bf7f04ffc14f56b4227aa8259f221
MD5 89ee935d55c5e5d88a8716931408c27b
BLAKE2b-256 b40eec427e30d7bd66975b8efa84a18d632c0a4d7ddc6124295063f0f01f2349

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 efb5f22e4cf92ca0363fc924805515fe21fd9cb6b161c082c75b656b859a003d
MD5 67234b01f19765238d16d5d919bf3af0
BLAKE2b-256 15d22310dcfd1a775c2c95d5a680a389165d832487164913aef7c6e371780883

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: hdbcli-2.14.18-cp34-abi3-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 5.6 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.9.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.18-cp34-abi3-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 92c2a0bd351579460c69605fd7401e53cbbcb8aabfad493c219a17ac0f32ee27
MD5 0a927851d028f5525c3deb43dd1372fc
BLAKE2b-256 9d572e3c5bcc8d504f58e497213885b5818b245cb9abbea63a1c429a8a677c93

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 563cae9904ddb3427e672523a0f0adf3ea558fba76fe788c6d1bba72299f2d8e
MD5 02d22477cd0eba214367c964df7df399
BLAKE2b-256 9d5a5c627c9d2474c372e7b4f2f7df27a54a3449a144a48f1aa790360d0c02d8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1e52f8fda30f5295526551903573a723d97f7c1b568faafa5892a989db2b886a
MD5 1d6e9639b55076f32211dd6c9c2db61c
BLAKE2b-256 d890b36cc647b7081a013fa9a1e9158cd4f0cc11abbad2970bf98acccd0012ae

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0d03328e6a9e527830ac35ef893776dd98637a69bb1130cb6f201f64c9b1d938
MD5 ab29f61f4069a40883417c12f843c5ab
BLAKE2b-256 8120d338b0bc1b62e5c5b6f1ad41da841913d504ebb76da67cc39468840179c1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 39e20ae6fb16b5f2c8c9bf46dd0e9bfe7a7e0df22b0e1d4f7864bb142236e704
MD5 3735da5daec49eb0b322390b6a8cdd89
BLAKE2b-256 cfd606e5ae66d1240944ee7080e2720f95a86b501e1883ba4a9e2fd935ccd415

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a41ab6c897378c495a7fa44ff5dbc60c1ea74d037c6f8b6e68194c4871d60040
MD5 23b126f888c8210fc4fc062d916c1dad
BLAKE2b-256 28836cda22adb0423f343f883780a967756a99ff60a8aa2a29eda740af05ac43

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 88067513ebf6ae8ac3081cf59933cd4de1faace92b22965f82b946f8fec5fbd8
MD5 72122ffca0972781804a80e5d25f55cb
BLAKE2b-256 50b84f6395c37291705ae39a457ce022b50d0e9e86b8492179a7e6b410f81c87

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.18-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 449b678cf494efd06f3472c519f1976f27cd8764455e9cc1cfa5aa9181d15c16
MD5 523bd50849660c7444b08eafc1632475
BLAKE2b-256 119422153b3069a3460d7f13799ff322d9da5cdf4e85e551cc8720792dedb29b

See more details on using hashes here.

Provenance

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