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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8m Windows x86-64

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

Uploaded CPython 3.8m Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.4m Windows x86-64

hdbcli-2.7.21-cp34-abi3-manylinux2014_ppc64le.whl (11.2 MB view details)

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

hdbcli-2.7.21-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.21-cp27-cp27mu-manylinux2014_ppc64le.whl (11.2 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

hdbcli-2.7.21-cp27-cp27mu-macosx_10_7_x86_64.whl (5.7 MB view details)

Uploaded CPython 2.7mu macOS 10.7+ x86-64

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

Uploaded CPython 2.7m Windows x86-64

hdbcli-2.7.21-cp27-cp27m-manylinux2014_ppc64le.whl (11.2 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.7.21-cp27-cp27m-macosx_10_7_x86_64.whl (5.7 MB view details)

Uploaded CPython 2.7m macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c5188ed9ed7417aa4375276f0bceea1e241c689f3fedd047c6bd2e9218af0b52
MD5 5be26bd848a3caabb9f4356a73ad9ccd
BLAKE2b-256 3edaa29da5ecc8ca8804c62b9432fe6bcaee4276a691ae6b14098bd5732658a0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0e1c3c6160a15864d4b6d4e5a61b131bd9d6d024aaebeb041d4568abaa4e97e3
MD5 59fd6c6345ed5a39b8e2efbfb5648882
BLAKE2b-256 8a52b777505ad41aecdcbdbb0fb0342e369b7d28845afb13756b7ad0246696c6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 c19d44e3e60d89405d910a24361b8af438a1a7493a1185cf7056903bb886f0ed
MD5 2325bde54276990b5c2ce22ef19bf605
BLAKE2b-256 1bfed709a5e30a36f4572071919cec5d360125147de547868fc7150dcb50cc52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 5f3a884b21b8be20b5d8c93fbe95733669df615b3bc9f169ba8a6336b1329694
MD5 18d4ab0e2dfbec7bf4de480c594b9af0
BLAKE2b-256 088dc1356657bf10cbdb335323c238eb05b5aadba1526bae1f7250397ee9a0c2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2ade6c0e6be786f98bf029c6e8d1bc590f8d6708e518de0c779a431efb087a0c
MD5 f2515b7091aab950f27f428ea930bb62
BLAKE2b-256 b900198263010cd644102f4022757a3538c379669579bf9cd9f15a710ecd7cb1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0df390ae14335ed636ddcb20d165e949b72e9bd4ee7bcb8acde66bb01f7feb30
MD5 4470d2e75fa86997d93c90a61668f293
BLAKE2b-256 57f44372d0ee8378625d6beec89a872555f44db6d916a4bb1287de746152d782

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 810a5c8a128ac6648bafabfff7d0a951dbb505322a855bf04a9db070d8998114
MD5 de613e9d81cbf84bbc75f6b04fbfb54b
BLAKE2b-256 77bf8aa733aa49921ae43b69a480591048537ce86a5d52921af7032362b83051

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a1744ee660a4df4b25333b39f5a44baa4a6548c92efb310500695811c5edc97d
MD5 053caa3e11d47905bc4202b8eabb0cbf
BLAKE2b-256 24b7553affce1d2ffb69283a0c6b9d51e1caefbee0fe653bb96c272f6a48fabc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2833c00de13dc9bb88db40a38a516634ec13480e247a458530d5f696108f7dab
MD5 054589e88f9b0d25c595ec3e5f6dc26d
BLAKE2b-256 368a985fbbfd3a356e6850e8152b61e4e4828f3c15278ffd6b49a0aea6d98311

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 bfcb55eab197d5ee0add8ec565af7d562466e56679c9dfd8a51aa4c8b3a95689
MD5 130af6d58f66d25e2eeb5c661fcbfddd
BLAKE2b-256 96a30deb16982882549227fc925811ad48495e03a3df7f4b68af02c5a7bd90f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a740d008e9109e1c880298cc5e6341c52487c270a6c12b5e3c9c69a23bd357b7
MD5 3854c25307a0d7f4d90d3eaf8a2e94f6
BLAKE2b-256 266096f013db8eee2c58eedd4791acaef99a96fffa9c45ab1a75a9f1a0f04a20

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fd05b965337290826a22d38c4cce3050516211fa132d85fc82439f00431a90f7
MD5 081a053ab53afb25f11e1618cdfa7915
BLAKE2b-256 c1663c0f67e6639e098628c1acd76f97d0cdfffce26da5366a9415b63602ae17

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 362cc4155b0a9dea6d6b30cd0e5af45f1b9db42e6d051598cd4d638ec3a7d94f
MD5 480d688cf2981c5f9df02432e666a727
BLAKE2b-256 6a3263450d218ccf552547ea08e44c539bd3011e03351607c1e14b3514ea0ab9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 791ebd28138582c4e1158c7809b8209aa48af4604c257d4b75c7078e0aeb71b0
MD5 0ab422c04ed46418328367654c208626
BLAKE2b-256 b2696593c4a56b208a32d674c390e68e1fd99aba89ff8370ef86234faf96fae1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 47a0ce2b8898a05e7b18adcc02b7a4b269fef1c355568343c42c2b047de088f9
MD5 b99ed450cfe137f01fc9730321869a6c
BLAKE2b-256 760e477af7930d1b3617d7c82e1b35153cbb65ff5a9f19970796d1d9542da85a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.21-cp27-cp27mu-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.7 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.56.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.21-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bd1ec15e0f71a80b488fd6f33b5500b611542c00023ab466bd9e0d89b3d127df
MD5 bca09318edbf13c661056ec9d33b4c58
BLAKE2b-256 08f93af43fcb0f366edfaf2dde7da7df2e15dc7beebd24012ba9d3816e8dde88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e7df8c3af034450ea37c015f44cbb61273ef751a13b6224e6e403fba17393143
MD5 571e30c9103434bbb8aaf608a76d42b2
BLAKE2b-256 57c6ad5414e4270d13829ed70a897e2e98a1943784fcb4b813161babff99ec3f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61bc21f4b67d7ca5645bb0b40ed54265696cd34ff66b39dcdb44ace764f2f909
MD5 1bbdb01b5d7205c7d1b5b7371bc62bce
BLAKE2b-256 a096cc34311db9109a47d1704bf7782a9fea70dcf55a65352b23aa04daa1ca4e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.21-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a17f1f28e08162a0ecd186e0e8d9dae4001cc417af7b069be19acfd7e95194b6
MD5 afd78835ad863d84cf9b441ee203f24e
BLAKE2b-256 8d258383c6c3ab45bac1b16233ed645839e2a4fae923e5faec7a9e1a5c663883

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.21-cp27-cp27m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.7 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.56.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.21-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 abdd7f1652517bf2a52fe3db8b8b6ff3f5f290c90cce03f9ce189c958a675468
MD5 f1112a21a9c0fd6e0c4f3cdf32811580
BLAKE2b-256 db3e6c9a46af3dd420f698c9ddd1965ec8137e21dfa48c92e85d9fc81ae78cea

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