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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.5mWindows x86-64

hdbcli-2.12.25-cp34-abi3-manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+macOS 10.7+ x86-64

hdbcli-2.12.25-cp27-cp27mu-manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.12.25-cp27-cp27m-manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.12.25-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.12.25-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 df7a23ba823a9e645137b2168b4899c66f81b0c7ffa7b9a0ffc2c40c8775ab76
MD5 7dfd09458d03734e935a1b4c412936e8
BLAKE2b-256 c479475f0d5e12209267e1fba38744ad6d4d7ffc79b18f5bd3258d2bb48cc5ca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bce78f062a71d6ea2201b5111bb6da1fdcf65206a908a99b394910ef762ed489
MD5 922409e8ae3770ebe66b16a4554b6783
BLAKE2b-256 f1952c8ea69da3f0c7128159a8cd56846b409e9aa7b1e9c1e465d7d3a8fcb11f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 40e646e614a169494f1943baf9d864de635fb4acc66e458701478974f4daccc2
MD5 1d3d77490356bf32b5fb5af417bad83e
BLAKE2b-256 a47ffcdb3e2287b49a5f7ee7e3103847953ca711a49f61c6eac209aff922e0b1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1d01e334b016f68eb91f84038fcc91d7306626caa8673f8e0bbf2dc58c5b5742
MD5 20ced891e9f570c412522577348d3074
BLAKE2b-256 e7a5a62c822945e692ac5773f84daf469da28cb505f65ed32a131735ccecb58d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 5c606c3e35eb648bd9d29589bc89d210b5a9a04d1569343a5ada64dc25a2f44b
MD5 8bec1ba31065b354881701a301c90f6b
BLAKE2b-256 c727b7245b14bd724bd3f14cdf9d8129b5654f157785929afe7ffd0fc2ee58d9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 72c24338a7f8203d49e363f1211cb710d32f62db6c8d3054c6f7a174f524e100
MD5 f3d653a294ae6d6b2b29e3a7d033dfc5
BLAKE2b-256 c59e8e85d7df408e7bd05906f80e40ae04bc73e6755708882edf1063c681a2f7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3abd435db1bd5c34654e6275ed63d554c1aedfd12dd87686c37d443e282d2be4
MD5 5496d2127a00c8c0ca7c2d046b51fb67
BLAKE2b-256 75351a32d6ff2c9c13b26c8788326585504f271de0d9e813f3fecfe5d364bae4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d01c4b915abd8affdb38b8c25757263b77bc54954bbcb5274b9c3e162cf7be3d
MD5 0e607734ea7ecd038071d9944b85b3fa
BLAKE2b-256 0366ba908380c3753c66025fbfccbb626e6e261b7c6ac8e342a9d41271559dba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 487f95b648eb3426912969b9069af7eecb386af0f398ef3f57a21c494243d1e7
MD5 61cbfdf11128a027b09f3cf5c85fdc76
BLAKE2b-256 755ed48bbfb8be1962593d2d7efcaecde30a93605934788498bd00d1dab3d674

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8d43b979b6e71b68b483b1e2652f74e5c70dcb7aa9919d36a4002bcabacadc37
MD5 fae3821b4ed2b15dc36486c0d459fad5
BLAKE2b-256 9b46cc4685917e40b3957e71f4a7358f0304f480ba6884f5c69a8c46ca4ac96f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e45acb52ea574e109d45621044c51bef63b19b1afd039d00856a7a20177118eb
MD5 1a458b54e936d78a7bd766509ead3bb5
BLAKE2b-256 c5bfc3a0c8d4ee840b57fe0dda284471a1e029cb24c3f4aec94dc6af8e38a40d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28e3f0657cae1e6c1faf91cd1f5ffa3bc42ebf02eb3e592b89b33fd8f33f8b19
MD5 2e92bb0954ba0caf26fba8b550a0f447
BLAKE2b-256 ec789f71c14d4a5531b02fe1d28f4d2b68fcbc690509029c00c1fbe357fe0c38

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ee5576656a73b448a1d750b9fb6933501e43f40075abbe2ea0a94221a6f26ca7
MD5 ab679ceb0dbb13b539d9ad89c946e390
BLAKE2b-256 013ea018f516c6c13509d3586670ac300b547bb9aecb23057852c5d0d4831c8a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4f1009621ca9f1757ad988f92e0fb0631153335473cf5ee3238ff8e29ca66d5a
MD5 1fe140356fed2b56bb9aadce71a34fe4
BLAKE2b-256 c433f05db860f2eb8e6d6401df93e245b0be525742e0dfc66ae4b4e4435bfa4d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4905810afb6a5318eac283d34969c7743d95fc49c4f3faad1c2a511391d014b
MD5 4db456622dcb5b9484a7d53b9d1020f4
BLAKE2b-256 ff7d5749fd81495bd2ad86cfa9adf3b6651b8ac4ce31b9fe6163e9290455f43f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8cc5b67c1804a51a6c9b146e5e3bc3a0f8c05d6582ae98a10f09da38ea36a89c
MD5 d2da123972d706529c2ac66e7a29034e
BLAKE2b-256 02abfe7f669c70e5be13ccb5766e63c8315fb3dfc1273ddc94a1232e7ba8ce26

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 dd799390231bed1b8930b14564b5e1cc182b0c3d4e54ad6d24ac345216fd3928
MD5 2490601ad063a9c225c71a3de75ee0ce
BLAKE2b-256 0ca3cf327354af4e86c7dc0943062123885953f9e88834d539d8583b209ff8af

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 5050d5e2848321e4928cbd9cc6ac2e2ba050a9df4f3d6bf6374004624d27fb16
MD5 6aa678ca993156b0781fc49effed143e
BLAKE2b-256 f5e82ed9cf4f79017ee7fdca9c0701ebb7027af88e7236c2cfd411cb9ba416e9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1aec8fc0226a5196b898ce6ffb8ec42b167a06ef1b041853bbc7fe13dcc69dc
MD5 5a466316898c3de334f2dda8f8ce6477
BLAKE2b-256 968d2dc360a38a3d830f1b507e2ce3eaaa7f7a79769f78eed4fd4b9e899b31f1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 683e76b75e17304fee2e63d96976b059d95b4bd4ab025afd4a7344e956856d11
MD5 1470e8376a4bf1946f92091497c25f92
BLAKE2b-256 989ae3c92ecea5c333041d90144825788f8bd7d1e4732628b7aa28846bef4467

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.12.25-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6659c8750599d803bcfef348e5dddc261f661f8999e7f9916b616b617afff1ab
MD5 b0a943e80a712b06e91db3e7f7b3bbeb
BLAKE2b-256 c3abf19e73093d7b3d2c1daab1e3a0e0deec34d5d46b9bad780ab1d9e7aac3c6

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