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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.4mWindows x86-64

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

hdbcli-2.9.28-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.28-cp27-cp27mu-manylinux2014_ppc64le.whl (11.4 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.9.28-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.28-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 041c7fedd7b6d0cc280afbeabb08c0702d0c202e0cf4a73a7d6636efa4fc2cb5
MD5 21367055741b880a61b0c8e54b34e7ec
BLAKE2b-256 0e409778206bcbad23cbee1755727d11528e17a0f244e3c131e4a479e5971eb7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f32d1171650b7d0718870da0d5f3fc3a80dad3860452d3a501356bc630b174b3
MD5 4ffbd3c324b87fb39bff4a8df1aed3c0
BLAKE2b-256 f6c95107e607ff7a68df9285f0dadc4c82535b2d4622747b0fded315320c5752

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 7a66e701becc137f0f276f33263c3944eb5661a54982f5eaf6a1b03bde865cfe
MD5 80971d9e3000b7756c07edcf6ad84b27
BLAKE2b-256 9fd3bb2e49e672ddbd949b4ce724dc206c35e42d85a68e853ee656c0664b4af0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 039048a89b484e9b6d53c9d11e2f26a62b5977af9939a41b8914fdfdf8079f81
MD5 11d8407407ce6f1a7e13bf561ce2b796
BLAKE2b-256 7f548be182af5de311926724683360b2d508a9050ae0b3ef0a0d482f961bccda

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 733fabac61609db81ef7f57c8cd3021886fdc274cd689458e940f7ea14831ab6
MD5 07639ec12de2ea0db48c95243dabd4fe
BLAKE2b-256 8772d45467b365609f9452420d907d17e199b5ee67526d17dde82c37ece310d0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3dfffc432ee10c5ba5d04a598fce9d6689f49334a2077debf00ab7ce8b600257
MD5 6433aeec8c4ddcfcfa5166896003398e
BLAKE2b-256 107d2757ed62d5c84b466ee95d1384e87976d334d8f029efaed47480a928aa8a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ee0d790cf230cfa24edc8371d7b1aee1e7a3e2eab6c0a7572f2718eff6e2ec66
MD5 a47e168225498d8ff931347384cc0c2b
BLAKE2b-256 c3b06a47c041587a332db96d289262c059ead9efdf622b765e6ef07167fe0dff

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 732ae9d64ef4871263fd4230856113baca5bde61108207c500b613204463a2d2
MD5 49590eb27bc47a9ef56f5d272c86d404
BLAKE2b-256 08068fb2f9e58f5a3050c54986712c942eb35d53e5f6356c06013ababea46e1a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 58b6acf62c831d7913ce86ce4e127fa2798fcb1ec512b16c0d1778c3f1761551
MD5 2aac85d696ead5aa5f6d57a53b90f96b
BLAKE2b-256 de1a26b34d3c9a819f67d7165210c22f17cdd662ab5da71b9158b87554713837

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 149ef23f04af5010efadaa61a1e0985d0b01512be6ba34e01dc6b5ba1a212d2f
MD5 dae048f242edce4ba0cd42b0005d2489
BLAKE2b-256 4900ddfb0fb742449f6b78daaa714bbf078857ef787e9ac3148e78dd47117b87

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 acc7f06a3c4266db11b25b7164b152301ade422505fd5b194a5993392ebfae31
MD5 5ad055fcf01a4df82f6d52d8ee148438
BLAKE2b-256 8fa78ab416c5543b9bcd58437017422440e5ff0b5ea0c3fd31b82031eaf36fb1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9682c83483e440270763019871ec1c4591aa8580576a2751226ee49017bfc218
MD5 f14bec56e602e2555dc2d93ad4adb877
BLAKE2b-256 73a115263e7e4dfef491fd0cff3104a8f159e0cc69bea7b9a8cb06b259732901

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e4c82dd844791b505863849a10859e559bfc4ff9f8527d563797cffc6191f328
MD5 fc69c0d9f3ee804abeb9dcd751da5f98
BLAKE2b-256 1c35e92a752e5659980093ef43a992dde7df83cc43acf433f0bae2c52a9be1e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05e7f40d461588c51384b586503f10f3396a2c0de35f841654790f70c0ec3578
MD5 2ce2f721e5585472d96c5455635efaf5
BLAKE2b-256 8aaf43eed6e54c646599ea3f3c95e915c46d9cf755708e81da6a7f436a6f72ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9fd7b655f6e0912288f4285f149c96a08930590f23337c5042a7a8fbcf67d750
MD5 78b30e4b73a0967af0c8946424e5ef08
BLAKE2b-256 ec78afead64891e381e3af5e533594190f6f90130e442e80c67b42748f89d91a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 52d1bfc034c1d214be6d247ad8800a0cf1980040ce09a3045645f1bfb09b130a
MD5 d26978b826d9323082682e8e28c70f2f
BLAKE2b-256 e7e0b32f4240b27cff89668ab4ab58e213b60bc4dd0084d55580d7da1cc2eaea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 1ee957c62c0c9592c89f749601a715f417cb28ec99e34d0961667a3da57363f4
MD5 cf28357fe868f015bfb8da5c596d032d
BLAKE2b-256 9d7e71632822c09ab92384f47b40f4719d639b221711746e9affab8d117fc2d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 34a32c60db9b5ff3039c55703a7bb3bfbece6e802ca6c52bac064467a2fee3b9
MD5 2dc6b4e491307d98386d3f8af2853419
BLAKE2b-256 3fd7a3f25cebd85426a311e3998db2e08c01184237b0889a11d52adddfd12532

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d655bfd31686fce62698966734b61b0ff20d3119bde9b1c815caa42d66d07cf6
MD5 aa4ce20803fc8ee7cb27d9fcfadaee31
BLAKE2b-256 7cf37b8bbc0caa3e3b3edd696159e9dee32739f65564fc4735aed50503f964bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.9.28-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e186e48b29fcb0087742d1cc35b301c628784f990de0348d44fb8f1a63e5ac2d
MD5 0b272c368b22741c67904a495949ddb9
BLAKE2b-256 4d9bd1099fded305282208121025eb2dc6805f233d81584ff2b942df924b22aa

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