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

Project details


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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

hdbcli-2.11.14-cp38-cp38m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

hdbcli-2.11.14-cp38-cp38-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hdbcli-2.11.14-cp37-cp37m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

hdbcli-2.11.14-cp36-cp36m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

hdbcli-2.11.14-cp35-cp35m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.5mWindows x86-64

hdbcli-2.11.14-cp34-cp34m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.4mWindows x86-64

hdbcli-2.11.14-cp34-abi3-manylinux2014_ppc64le.whl (11.4 MB view details)

Uploaded CPython 3.4+

hdbcli-2.11.14-cp34-abi3-manylinux1_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.4+

hdbcli-2.11.14-cp34-abi3-macosx_10_7_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.4+macOS 10.7+ x86-64

hdbcli-2.11.14-cp27-cp27mu-manylinux2014_ppc64le.whl (11.4 MB view details)

Uploaded CPython 2.7mu

hdbcli-2.11.14-cp27-cp27mu-manylinux1_x86_64.whl (11.8 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

hdbcli-2.11.14-cp27-cp27m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.11.14-cp27-cp27m-manylinux2014_ppc64le.whl (11.4 MB view details)

Uploaded CPython 2.7m

hdbcli-2.11.14-cp27-cp27m-manylinux1_x86_64.whl (11.8 MB view details)

Uploaded CPython 2.7m

hdbcli-2.11.14-cp27-cp27m-macosx_10_7_x86_64.whl (5.6 MB view details)

Uploaded CPython 2.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a2e29dfd41e5045f85ae760239b0511aaf4ca43b6a57f43d0ae0f69361734cf
MD5 05280f469ae349b0971630f2eae9a766
BLAKE2b-256 3dfe3edd2b6c65642c735834ac797db8be0b6877393d5138987487fbad440e3b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.11.14-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8ecc4000289c5addbc0b028d16a469e33f4c6cee9abb0e49a0736ac8d28ebc42
MD5 7127f870eeb61e5223dbbce4c8495723
BLAKE2b-256 401d3a56f3de880bdd9f028b3eaa09d28c1fef7918d182a23a2db1df7c902c1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp38-cp38m-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 d9bf41b9bdeead147069fa8a3ef9d74168f416c0afb8b13991f3ac39f7f060b1
MD5 f9efe5d53123147e8ed384942a9ab49e
BLAKE2b-256 35a6cbf92dd973d4ac63685963a11d7f8521b63e3a746eb1be7562ba322edb0b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.11.14-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 344b7ae645931c0e2dedb77d7709ccdda842184f4774bff8d57c611233992fd1
MD5 80cf733cbd500dfc8bc7856960e11a94
BLAKE2b-256 f47265441406fa24dc09662c2ce797b0fdec1967b1eb69c05f39d9486f165e78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0466f62e58390c19ef7df6f8b5b3c1a8d25c47666880a8ae23d080e4e2eb2d8a
MD5 b5698b17d5814db774e5f17aa8cb4823
BLAKE2b-256 c0507cec4ebdbfcab6a0e0cba68c65a82cbdae6194d6ea6ed3ef2b37cb4359da

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.11.14-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3e8aa59bec43fcc2ec50de844ff753916194377bd6c83f6e462eefdbe48af0e8
MD5 61cadbc1e076384ea2119ae2a8f9898e
BLAKE2b-256 0c271988be87667a5061d2c05d3760aa29e413a01d9d9d6910bc57fd88fea8db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1c9bb89fe47507bba6ee449243304f746694167559d44133174dc09ebd3d6ed9
MD5 4b59daefdbb2287071a328e6901f2984
BLAKE2b-256 8dc5a89b580da08d92b1be04513c2593b564fd4ef7c5d46cf629f19ee7b741aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fe484e04dc01a4a6aeddeff64a6333cda9e88d9f01fba182375f23c615076fe8
MD5 f02a2eb49fd64e15116534a895376862
BLAKE2b-256 777c013a2c3a7bfd6e210e35dfa5ea247a3e143a5860e63705b28842ca5495c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5b280f6028e88d3f04582388c87674c8805f4926624416ba84934c5f96a9893e
MD5 b16f595bb689826248e52678772ff05e
BLAKE2b-256 8a7ccada4b4aa74c975d8863884bcdc4730069303e15c231868a9277eac6e91d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.4m, 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 fa2645aa822a14ffa46fca1538647b2ff78c10c6cffde8562297107942adecbe
MD5 c3d7bfc96a56e60e1f059563424353ec
BLAKE2b-256 e484738ca87e85188f7ad93f0fc30ebee44891c44e1cff77869a002bcc4efe02

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.11.14-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0086709d511d96553b2863dcf9affb489998e425a1e53709ffad29df5b448d9
MD5 54d6f750d8d02aa370fd827c73f5529a
BLAKE2b-256 4288f474b23bb4aaaee4cb24c10c467a7c0a1994667989b28466ec3215584691

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp34-abi3-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.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.9.1 tqdm/4.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 de029e98c57c7a682e2d732ffb813b583a1b518dbc40813c79382cbcbad68c27
MD5 44b2da39dc35c929901926dbbfae11f5
BLAKE2b-256 3d8a7595979124ddfb5914dad69d4d4778790e9c84338ab3ea6cce9fa6bf1221

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp34-abi3-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.4+, 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6e43a891c7f52a0dd1203e06db9a0006a29ba399aa992f4a064015f2f432f236
MD5 47376613791f37400a20742e0f60bcbd
BLAKE2b-256 d30a2c62ef2bdb1680d23f8b747f7ec8f782892ea62c3985e672968474974834

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.11.14-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3151a7e449d36efc90aa77aa53e248a0b71a2327b7509a73752b6d462167048
MD5 268372874d5736346313e1441ddadd18
BLAKE2b-256 d246064cce00fbc6680c4852192305f07400e4e655d8e5e7aa92bd6728a102c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.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.9.1 tqdm/4.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ecc7f88c697f86eabd1ea83a0ea59686a2c797635b9b63849ac5b5b3f1c7abb4
MD5 be4ae800e58dff4897d479d14406b474
BLAKE2b-256 0e5b64fe6ac3d932ee32118c217214996a19fff5ff7112f802b45a6f11488160

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.11.14-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 de043eb2e55a5c473476337b2555d6f50bfcd91804a1dcdc8303463419cf2ac6
MD5 e200db4ec5fdd6657d4d0ee9adac4d9a
BLAKE2b-256 4eb2f940e385c436e9845e2c64ae3c5beacaa7253678a38e4042a26af2cb161e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 52d4710e817cdc6a29d663a1a657c76b7b5f69ccaf54b1956d43758d47fdde29
MD5 07abfbc54d4a086c58052019ca513dff
BLAKE2b-256 35a195aa5b93f145d2f0ef6dedae08854d11c9a4998c9c47f403e38c3bfdf3a1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.11.14-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbc497747ce8474a435e5b2d567dbae90092674592acaf87c81cd240a59b7cdf
MD5 5b5b3479de38da88b271921738510fc5
BLAKE2b-256 554b87bf135359e645fb170812c7ca50da4cc620eca99a7dee2fc02807835923

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.11.14-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.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.9.1 tqdm/4.62.3 CPython/3.5.3

File hashes

Hashes for hdbcli-2.11.14-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2c5d091b9c0fe87a5fa4d0a4551acb56ad52248fbd689c29a09fa3d85edcd769
MD5 cda82434c60c784b842e377df88562be
BLAKE2b-256 ec15b7e7abc61d6040b3f513437ac18fd2184cf1d2a3ee704e78e24ec5c64b27

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.11.14-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ee4696d8cbf56887d6625c0739e5dcb81c8ce6d7de6dd787170568daf16d1118
MD5 8793e953bb28ef34dc4cfeb895b41597
BLAKE2b-256 1cd4a1b3509051f74026dfbb130d461087b9f36e21d9b7ab16007c9356e3eda4

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