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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

hdbcli-2.14.22-cp36-abi3-manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.6+

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

Uploaded CPython 3.5mWindows x86-64

hdbcli-2.14.22-cp34-abi3-manylinux2014_ppc64le.whl (11.1 MB view details)

Uploaded CPython 3.4+

hdbcli-2.14.22-cp34-abi3-manylinux1_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.4+

hdbcli-2.14.22-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.22-cp27-cp27mu-manylinux2014_ppc64le.whl (11.1 MB view details)

Uploaded CPython 2.7mu

hdbcli-2.14.22-cp27-cp27mu-manylinux1_x86_64.whl (10.6 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.14.22-cp27-cp27m-manylinux2014_ppc64le.whl (11.1 MB view details)

Uploaded CPython 2.7m

hdbcli-2.14.22-cp27-cp27m-manylinux1_x86_64.whl (10.6 MB view details)

Uploaded CPython 2.7m

hdbcli-2.14.22-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.22-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3981be9f72a06c8f3340f4235ff049938452f7561daebbcdf170bc9b6b13a93d
MD5 e2c3e5818e61119e9124d078e14043ef
BLAKE2b-256 4c908c96bfd34438ea922c1a85d9ba1dc99968034a156b94b69bfe7ec335e3b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 04c196c1f7a36919bb860ca2c0999f3d209cd9cf20aa6e4881686b4cd440eacd
MD5 63fab918da33c26d2a730475151d20e8
BLAKE2b-256 d045f72f13e505046be00b9aa8b50ebd6f1a6394a963de55f1994b00c3a47e67

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 307045a3faa2f4633d18a2104ae4928702fcf909f666f33e3b42e4fd65aead3f
MD5 5a175ff43e90ebeee1a72acffe44f0ac
BLAKE2b-256 7beb68b9c6f2390f54c6adf2504fba7c08ccc005cd25b1581de1c867b9775ad0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 66e4fcf982345f8851f91928753424fab5d2766785eca303de1defc9438545f2
MD5 04516d0ce013831530b6a17b9afc00a4
BLAKE2b-256 d237bb53f929a6d382cd3bc8c00a6c70f0083b52719690280f1b4aedb2bcd93b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 a598ad293df436e3a850bad49d0469705fc5beb550a979b7ddee2822cf072b3a
MD5 9945c5b77927ef9d3684d7a75cbccd4b
BLAKE2b-256 cf1f1c69eb69bdc4d6387bdd1c4fc368dc9b2e1de212e10a5e96483e424feae6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 af2d252140531bae59350d27fb3842d2b566a3c4c85c973666c7150cadbbad4d
MD5 b26ecdd4777400b27b4290f88674fb67
BLAKE2b-256 e1c58cefe23a58a12efff9df4a4abe0b1425b032e34bf61fc9f479f5b9ac5ed9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 48fabfbe29d167668409e4a1521bf29bba42e250ce9a097861f4e2f863247889
MD5 d3b204b2c52947d1196825135a037ce6
BLAKE2b-256 ffe293c9bc29e920d61c49449a186f987e9bfee5028fac954cf4e08c4be56b39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1ec0d0e1e16566ab1ee0090d2ed7d23dbb541ecdd10b63f4119f0af103f804f0
MD5 b7854d7dddeb69672e5ea4473ab53bc3
BLAKE2b-256 4120bfeb0d2926782b0eda85f41bfc2f4b385134db7134e8b63eb2af256a3216

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cbff7809d50c7ec634074a91a2aa68fabc87043ceba8070eed89a8537e54e958
MD5 98af9ca90d2dc014a3c0ff02ef9a7520
BLAKE2b-256 a7d2a4f75c670c6ff867cde186f08d40edbca84e49ac95893644d2d3da2d3a52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 03c15b204bb95d2a096131dd8ad080e9ef482cf5bb29b6cdfc96f442033660fa
MD5 ad8e5cf3b16fe8e8a59a4ea949c00ec0
BLAKE2b-256 e82b548e8691f188c2a43edc7f445f3f034823ecdfe390cca9c2c41c6752f48c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp36-abi3-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f875e040a04a29dade333504cad3510f183580229f468fe8f0e1c6dd71d2c00f
MD5 4e8b78a9402cabc1900c5528d4dd9c5f
BLAKE2b-256 5ba7ce65443e0e91be7d15d05ddf9a4de0c22d5b8e9fd41666b1ebfe24dcc045

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 6b7861f0f7dd1206c1a564aa7cb6922cee396fabfbf53c5c9f1bc1398274ae4e
MD5 30ee72b1d91b60dd478e9f3aa32b29a8
BLAKE2b-256 80719037fb28db8c46f9eece2b6ff581c652708fe46bd66a1b49f6c2045324e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87d8129afde80fd9c78385b5b1466137051db61f2718c21d26aa806b1fefcef5
MD5 e5445169a114d1ae206deff90d31d16f
BLAKE2b-256 d0b095c7e0e8878c931e2e52544233db0c571724e01cb8bf603b0580a2103783

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.22-cp34-abi3-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.6 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.0 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.22-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6696cbd72d0aa764ad231c0b90c85791aea3163cd40ee9c2d4035f00f34f5888
MD5 9d29e38f19eee4d3813709d44356151a
BLAKE2b-256 1ea1a7559983f6c3343fa0209b576c0137cd8520e4a0acc26bd934d15b00382a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp34-abi3-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 66508a9a3f390beef4671841c3e8d3b6d495cca5783443f81b642e23ca955ce6
MD5 e1574e65354da1898d0c732665c53e50
BLAKE2b-256 dec51c7ccbd56f4056a6e16db75c4994945fe70392f0df4f90de9b83c55c4db9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a94b0a431c866bbff3ee428a5d90f49dedf81450dccf1a5a3bc0c67068eacd84
MD5 2cb356e6cc880d9ae95d4ace9a1d7fe7
BLAKE2b-256 f0404bd85547cf275e9a238fffc6779a0f15ed40dc0636e8eb9593908134ae89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.22-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.6 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.0 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.22-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2670f90019942902adecc48436676089bbb3924de64a6e6b2d81a030ca587f5b
MD5 e8fddfece3f35447b90e754624043bb6
BLAKE2b-256 19d63f7a45e959052e5430dc7693722be7cb4c1a02bc0f957393b3ec24066b82

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 927540ab14a32b6105eacb78ed057fca3112cf47d43a15317f4df39d46230939
MD5 dd52bfa739e5067bbf4db4b64d764f79
BLAKE2b-256 517193283d8af0582367af71e0cbd315aad2ef2e87ee7d8c4233160b60e3831b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 56391e295f84cbabe077707cf8db1e58a45cf1b68336f8530fcd88b7ef3b490c
MD5 7449d3e262e2edaa5c3421f1bddaefd6
BLAKE2b-256 e081103e327400bc7b9e403ec0dc3a32d8555f47f38fc2dea3225c9b747eb491

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d06035421ce2080ae34eb6062316e8aca467df71619a62d2e98db494f4227a25
MD5 b5bf648e5a28190480226c8e1173d814
BLAKE2b-256 d8f5be69a72c137a6f1b6bfbd62a99e91584c9d21dbb2fe5ab3580944c206fcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.14.22-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.6 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.0 tqdm/4.64.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.14.22-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c835f251fc9b6f75e5f479c03ffd265873766ad81731c96e1e842925fcc06b91
MD5 bfb956a5ce752fefa37eca6c8723c336
BLAKE2b-256 63c96954ffd71285462040c191ed05c796004f84f78072c5a1bd4a20e489aa4b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.14.22-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 369ea23b470227ea59d0384f3efce850499be0d2d5cd308d4116b4ce719549eb
MD5 4248703d93b8d20a76aa236dab08f517
BLAKE2b-256 9edbc117e764092d36ff58cf18851232a4bafd31aa5d19c35affc77263da8fd1

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