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

hdbcli-2.9.23-cp39-cp39-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.4mWindows x86-64

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

hdbcli-2.9.23-cp34-abi3-macosx_10_7_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.4+macOS 10.7+ x86-64

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cc481b0cc0f834cb4cb90b2edd96f1f9c5ca64446b50381e54d9459e29bed9c4
MD5 9ca76372a59e9837c3b31a899e294eaf
BLAKE2b-256 1ee5f8f73481c75bbe2e895923b8b17da6db0f4f393a02cca6865ffd593b3eee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 45475408a3474ddea4f346d26c2b4c4796299f0bef43e8c8b1daa7dacbf70b8a
MD5 ea0f7b6978e74281f3e176520eef09a4
BLAKE2b-256 e88f35f0d3a297c0c6fd2d370f5936d22cff8e9d10f67b3a813f48e8192e3043

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 1104ca7aa24ab350d0b87c406e5c4029cc1098c7eba5915b12b181dd3eb016fb
MD5 b7c09ad3622ec866c8995b859d84d473
BLAKE2b-256 25dcdc787b1b40fc58e91963c23d49227313da720a608bf29ebdbbd24dfce5df

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 d05fe27df87af767aa21c4803dc97a7e038990f9a58ea18204f97a0b14eb3ace
MD5 955060477b57a24a0a34ec5c2bec78c6
BLAKE2b-256 352facd4cc01920b34c9faca82df3da0f5beb5a932e25ab2036e3dd0cfe8fa60

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 52027cbf3b7973f53aaebe285deac04d92ac6c7122fb0d40795c33f757ea9c19
MD5 d01c377c441588b059df588cdfed03b5
BLAKE2b-256 585f5ffbd9308d383875923bba51e5820fabd69b5d642effd40a122d636c965b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 252192086cdbf7daf34e6c0e4999be21f634c85d614aaa2cc7a822efca51227c
MD5 bcc2537ea24bd34b6322a0ec0e8ad198
BLAKE2b-256 6ca1951fb3a405e7f58f3429e61482ba102522f0897ffef3ac3705100c7ed8ac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 49a9f480eaa8baa09ed72eed594e189a7e921811e53eaf3b876ee88b7bec8098
MD5 6b973ebfec341ab786545c12897997e6
BLAKE2b-256 5039df5a0742f659253daeddeaa9ebfcf4c823781f1f331cfbd697466b9df92c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 35c817f20ff90173dcc71b2d0e7b7a3c036012eae9f24d6e035751e59c8cb9e1
MD5 1e44db2bbd7487518ffd5c9ad5368adf
BLAKE2b-256 0cffd7462ff40e64dbf2a15c6bfd77944b4a33116f88241f18d207e657b5e5a0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 328b0f2e29f346336579a15134f92ef26f768270c3d66d614fc029ddda964712
MD5 0862fae89b6f3a8c195c304bec56f522
BLAKE2b-256 ec1d38963cbf453e45e28ff242f80152d22fbaafb68d1f360246eeba8f5e7c8f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 e80c2fdc3f1be065cb7d45d3721cb80fb1e5e7aa59ba0497db22652af00f8f3c
MD5 d5157e35e1052bffd8f307d0d4d64273
BLAKE2b-256 480d4e3a091c93c2287138983bcc1412e3bc0e2b11b05104de316583f6495a72

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09a3bccbdd287e07a27ed995025fe7c520d434b823ac938c8e426f07ae48494f
MD5 ad3c9552459dd67fb9f10471ed02e746
BLAKE2b-256 c1f85e1fc801c4077b6b442607f575c7cb39db75027425f601fc6997ceab9495

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 80910f7ee393d4afe2508c977a2ea46b694e429bcb9cb2769f6bbf0b9968c7f4
MD5 6d329ba7be7ac16f2c68a019aed2876f
BLAKE2b-256 b74fc3dbff99aece244fca8b0460bc277394d97a2bcb93d483a698b21faf5d5a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 93823131906c1ed2da5adcd7246a4d2c4db4c1c5f32417d83cb8a96a56b91c3f
MD5 eb74014b6cfeda739b6649799b1a3c1a
BLAKE2b-256 c8e21b0a2db8b0cc656a882e713093cd83945bab21cf59a4459a5234f9ccd2d0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c07507860d24c83b25977b33c86d949cc598b7ac0cbcb25fa504b4cee3a464b
MD5 2b85c288c791fe0837359b783f5f4d0e
BLAKE2b-256 a0d2aed678913b8e3ba60d185ffff79cf6cdee4b6c4e2e70288ad5d03697a019

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 466c2f55e32ce0ea31aadfe29275c72f4d04a633a0fc4f245e5cfbfc87593f32
MD5 f77f36f32819a4fe62d48e4498674750
BLAKE2b-256 27f74314334c53b7d44f892666d75c18f4b6ea3211e1b4f7bff81e72a0b239cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b102abe340737f9ac730e20c8639968591854c50d7bb30e1cf23a13f52037f17
MD5 6bd386c0a9796f326ff1bedf54c2ef73
BLAKE2b-256 bfe1b00b9539edfad4dcf4012eaceba300e69024a00e71f329f5e1aa2b02bb1c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 64ed694451fdede63940c22a010e8e0331802b3967c125b4b15e4b19dfd51e33
MD5 18e3eafe5ef1b6d4819bc0991fb35e5b
BLAKE2b-256 1aa35c0e887fdcadfa72854216bb670e4e9fd8acc7da5a8712f0394fe1936e77

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19752d3b343b2f7c1aa692b55a4131405543f59a721d12ed801980a7f4ddbcd7
MD5 2901c14f359e221b5c6ede9cc3449830
BLAKE2b-256 fed6cf4f94a6bf339f577818900a6ed6db556279561c1f1487fab75c2c9969a5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 92b2c4ecb386cd855e64644cb52c276f2186924ea5969007a422e087f67524aa
MD5 8626e4ed185da4d0aa3d340887dc7c8f
BLAKE2b-256 a7ee8e98e5fe0d9925b8fad7ceb638ea0454000fbf45b79d1baba229f4dc90da

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.23-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1d983633d32b62db22d67698fc961ef5863a0fc59181b1cc2d2fcffc03e80822
MD5 8fb9cbe81c370aa80188ecaae9239fa4
BLAKE2b-256 64da7b06e25e55c524db39bf0e52e561cd7cb116208dc586a43e44739bbaf60b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page