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

hdbcli-2.14.23-cp310-cp310-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

hdbcli-2.14.23-cp36-abi3-manylinux2014_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.6+

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

Uploaded CPython 3.5mWindows x86-64

hdbcli-2.14.23-cp34-abi3-manylinux2014_ppc64le.whl (10.8 MB view details)

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

hdbcli-2.14.23-cp34-abi3-macosx_10_11_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.4+macOS 10.11+ x86-64

hdbcli-2.14.23-cp27-cp27mu-manylinux2014_ppc64le.whl (10.7 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

hdbcli-2.14.23-cp27-cp27mu-macosx_10_7_x86_64.whl (5.5 MB view details)

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.14.23-cp27-cp27m-manylinux2014_ppc64le.whl (10.7 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.14.23-cp27-cp27m-macosx_10_7_x86_64.whl (5.5 MB view details)

Uploaded CPython 2.7mmacOS 10.7+ x86-64

File details

Details for the file hdbcli-2.14.23-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9e2095c3470d50fa1db9e9a5f6eeec43f4fad56ec7573f4d8dcbe212f4384931
MD5 b6689152654b0416d487560ecbc44f50
BLAKE2b-256 748bcd25b22803a942cacf41a6072eeb2d712f7975fb3d1edf470cd3261e9541

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c3133827a90672f786ec43eaa9ed650d4c261bc9ed5b23f8261ff0953409f848
MD5 b1809e60abcffaafad6b611b19fae7e9
BLAKE2b-256 eecf86d6187a6748889539fa408e227649f63ae21d2b3a39e8775ace2d361491

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8eea68698e215be9a0ac43c42218de0bfda7aebf0e976267a23488237b73251a
MD5 24c37ffb2278b14e3688d6998e3f634e
BLAKE2b-256 52176e828c32293044534e15da3eedc0d072686e3440c14e557003b92127bf13

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dcb502231a9247f4c2acad03d7f2fd75289514fe96fdc5f3c9aca1f4d3e6d56f
MD5 8662f91e8aa954eebf88a2f2685f4e08
BLAKE2b-256 e791462c38c41c76bc0918d21ed038dd099f662e95b0e777bbcff264aad7d34a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 dce24ae703cbbe732fb63665e5aaac409f47cad3447bbfaa88ed5ed759e2bbbd
MD5 4237b1d9fa99986d539abe9f94cde656
BLAKE2b-256 37e28817167f6dc395768fd30bd4893f5888bfc198a0b92e3e4eadf3703cc0e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 a173891f06e389982a7433730954dffa4b8a7f3d7693f3c24ffda628321da881
MD5 8bbde24618fadfb6ec917e694b01733e
BLAKE2b-256 922d7386dd2a47a055d4230937aaa02bd61cc935f33b46328aabe969928c0a40

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1adabaa793cbe0bcf892f735515a5b4a3d2576037ffa6cc83d62264093b2f6d2
MD5 1192bd29798987d07ea431f12c222d6d
BLAKE2b-256 1b4f0f5b81b3c2a1fb5f11ff4f6e19e7150b7a958ceb62b693b5f6c897da6ea4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 519a3bbf2fcde8434f965b050ecee9949f1eb0730e8bf8a3aec677fcecf60294
MD5 4526172b857cf8f2a5956e05bf52cd5e
BLAKE2b-256 6c6b92b627b0734f233f42b2c3b74e0d03194b02e6e038615f471e01a3f5778a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f5918d86b776be68233d5816819b7a858b064c8aee4df63ecf5a4267a6b61526
MD5 56894e77371e0eaf65f498d84360f98c
BLAKE2b-256 02d636399017f2ae0edfb0671d8e12de1b99d738dc939b22b7e350e188140ba9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c0295d20f45f923c66d397f7649095e497f510dcb8707e557097e19052a0df53
MD5 d17fe9f1c6187cf956ee6e41d75e74ce
BLAKE2b-256 c1b60e30d18883c715b7bd950ea947259a7381fade87c706b3e7b85055eedd27

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp36-abi3-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e7e67c3fb62067d17aefec0fdb317c58950200407a6d13773fb50310b4df67d
MD5 339db0d09f7635bba6fe0e5ec33cd6a7
BLAKE2b-256 3a721270460d5b87c2feb3eb93ec2d7be691bf54a84aa2f81b3e47b285826ecb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 54b57a6d673eb9cb4941caf8b780239472c15cac330f7a948edd63213356d4e2
MD5 31de91efa5019304827958c87eaf3261
BLAKE2b-256 867a3acfad859dee82ed4da5b6200e8831a9df1694763526942bd16d46efef98

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf18d513458e3d34cc87970a6c6b6c930a77d4f11ccddf5d9ebed039fb9008c2
MD5 8a577aee9dcf0c432d2fd2df36b2f63f
BLAKE2b-256 2dc0c8a474ede30a92a1601439a98408a0690ab5eb44eb9395496b3eb06ee40a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6a761105cb54df373a5aa471bf9e5c0773a9bbf023dcf33020bb72d9860beaec
MD5 aa6c07b49c3c71c0bc882cb3f382d169
BLAKE2b-256 2033574150917fbc4aac5fce1f67cddaa969f5eb591ac74d78e4933b4bc3ec10

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp34-abi3-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 0e3e7bb7b09ea3382ae61a5351ddf93ecfe745c751a7f4c609ba46fc4150520d
MD5 f009da20708ac0714cb8e1d00dccce20
BLAKE2b-256 1234aa402cad2df412b6c0bf06cbebbe47a1e4632f8cc79f432de925cca6c1b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.23-cp27-cp27mu-manylinux2014_ppc64le.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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.23-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7538ae3ac541859f33bbdf379ecce1178127fb1890144d602559703332138217
MD5 64d4ccf9f0431f8a72d2e195fd02c421
BLAKE2b-256 f6f61961dff421f70fd1e31a9962b0c3939b59f2ebc613b12497efed8773b2f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef35c5d7e0be9a5be853b5715446b17d8a3c4805941d7a7c252be58226229ec7
MD5 645ba14f05d641f419ca40dacf42e24d
BLAKE2b-256 c89598d8192d9eb3e474e4119a8429ec9aa092110509af0d8b2578bf2313e184

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.23-cp27-cp27mu-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.5 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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.23-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b7d45da180f68c6428dd53511ffd2880fd5acab6768753dc3b388c3d6c702285
MD5 2c4e9408049da23b87ea156065fbdedc
BLAKE2b-256 bc5ebb4211f8a9524966d789ef8f9a764882cf3db158bc68a00bdbd22ccfdc97

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 edb46cb1de300874e8a9fb8c65fbd3bb1d19fd6c1400724bbad26dfadc8ce5f3
MD5 e5a115d0c4ce1cb61d27023d6c886c1d
BLAKE2b-256 d1d7c8452404c6f518d4be8f530e56f896d93f5167a44b8fb3c9cd5cb8f98b89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.23-cp27-cp27m-manylinux2014_ppc64le.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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.23-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66795f1d9f58e56164ea6c81bd8b503a537d830f2d7d71b8465d913dfc869fd8
MD5 332b61f9f242a5e98909fe75a8a076f5
BLAKE2b-256 7cfe8cd9ac7b3dd6f665ae7f5b36e68e51cabffb8b7b6e34f403af68df2a8072

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.23-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d8b7ea16b94e76fb5b988fd0210121bd8b7f101218680527059edaaa138c222b
MD5 0ac84d922eb0d9bd6ae01015b0c3ce1a
BLAKE2b-256 0c4f7e1c7e21b27024c8a2d269958fd681cbe46c47db5c85902f9875a1573196

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.23-cp27-cp27m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 5.5 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.10.1 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.23-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 429632d42d6c3c138ae05abdbc1df722df31d96c2023cd5891c915498929b695
MD5 241453c195497a1291dc516db4365290
BLAKE2b-256 5f69619f703ef758e052c52f37c2e98126ecaa90ced02634b402eb2c7d7f3859

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