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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

hdbcli-2.8.22-cp38-cp38m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.8m Windows x86-64

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

Uploaded CPython 3.8m Windows x86

hdbcli-2.8.22-cp38-cp38-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

hdbcli-2.8.22-cp37-cp37m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

hdbcli-2.8.22-cp36-cp36m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

hdbcli-2.8.22-cp35-cp35m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.5m Windows x86-64

hdbcli-2.8.22-cp34-cp34m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+ macOS 10.7+ x86-64

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu macOS 10.7+ x86-64

hdbcli-2.8.22-cp27-cp27m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m macOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: hdbcli-2.8.22-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.22-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b9c42978e492f6e03f42c7eedfbd02710df38c310b1baca956f44bfc9ef25b08
MD5 267f7505dfc7b8b15ed803eb961b5113
BLAKE2b-256 70a827290d7eba0378543a4f823fef545a30538b76e67db83883f83482292da9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 18d2abbcb8d8210a46c1a5850a71b6981b89791f5e6919b5b1c52d954300a981
MD5 6c4beecd4a3cb607258d8dfce240d6b6
BLAKE2b-256 b2f8382707c755ade7380310e77a5037973b9c86f3145a2b44096180db53cbdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.22-cp38-cp38m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.8m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.22-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 2704f6407fc9957786da8c3e2a5d099819a8925032906630750492b0a8457edf
MD5 03b38949a3ba000ac715bd406e5fc4ff
BLAKE2b-256 38c19fa3e4ce1b0ba069422fdf52ab2f5d5159655278093a0445b31f3b119c74

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 5e00a2c1269a4030470df9560172184d4d9b3531038e9aec1024f76f6e174a4f
MD5 9c2c8530a2ece0a910dfe529f2b12068
BLAKE2b-256 154b9bd99c6f101189ca3a2bff3fa484dbf95b5a6ed152c101d8f8edde34aa51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.22-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.22-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 196b69c75efe0b28c784ceda3358f8f5c540ee218f0414ba569b265a211ec3a0
MD5 7f8d568bca4ec1b64e272ee4328dec82
BLAKE2b-256 c4122373f11744d0ce4fd0f7f34d78d3a978ac8d40b3693a50756e5a6d890fee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3a9fdcef79f751ea8966ec746f3f75ef03a281fa096309c7071f276ad32c9999
MD5 56bc546111ab6b623d846d5b3643c591
BLAKE2b-256 da07b524803e1b67315393e91fee98154df899e39b3b9daebde941e40c8b8959

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.22-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.22-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 dbb5c01d902fdf3722fc793889344e419a3e0baf8c0519ca03790d802228213b
MD5 aae0e0c89caec1b27f1414aee9d31e1d
BLAKE2b-256 0fc6a60b2e8aa97d6459ff8841be1f86507155a4f9af047bb9d2a73dc8f262ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.22-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.22-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 42fc983e0a91665c1486f0dd18941bd2354569a112d1de5e436c29d606abcafa
MD5 b2485082efc8b0089224a9835a830631
BLAKE2b-256 3fde45dd4f68943876923f0957f72835c70b054cb0628a6226458b9320676a93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.22-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.22-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e2155a907dd40a8778e0514a279e57dba9522505b789f4707530085b0d8c9b16
MD5 8fb0656344a776068f01f187bca8d665
BLAKE2b-256 f08699f592dc40c739971a01e5293c08fe427ebe21e2cecf94a48428dfda740d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.22-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.22-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 0c130b6d03f504303aebd3ee170cd0836fad9f37834db16ff86addae97252d00
MD5 5dbe5024b776bd3de86c6696d192ab56
BLAKE2b-256 4593b6692df9aab338bfe511ea2e4652f081b70dea271be6bd1b29516627e70d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d04c56b34c98f337063716391e2b700742fbf8c84626cb56880892a52cb434d3
MD5 327239ddeeaec5f1abef68b0f30cefe2
BLAKE2b-256 2f6dcfbe84f767dcf57256a56178549b3cdb3fcf6db50ee419053b960d9e00ec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bf0756a8d2a3383db6c88eae25cd2eb04636ff0f4f4f9197d7d538acd9779f3a
MD5 b6a919a465750baa61d6b2275c97c667
BLAKE2b-256 10debbbbef83bbbfa4630f508ea3bc62f05558a9385bd03f5de035e9c44c37a5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 73f083922a77ed8a89cb4932e453e6c9fed70aadaa4a17db35fff76d5262338a
MD5 c0a028e2886f24300f6185beb2cd7c9b
BLAKE2b-256 fa96b8770bfe32dd6ccb0720c7179ec37a31f7373f812486be6d19244cc3d547

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed2e7863830396d6e7c47f986e533f45ac867cc753f938f6b301d0e78ce37417
MD5 9008aa041e36034ba80fc1708a9a04a6
BLAKE2b-256 8cb1ee95aff878d3a875259e80bed805347918afa0ec325c5ceae44686af02ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fb99a99232c4d2db74612ac7c5115938df17087c0d8d81385d4974ce017addcb
MD5 5732b1c82cbaef5b233629534b33d59b
BLAKE2b-256 7c1ea21a65e9104c305820052c84c4a559a6a8a4b123c2c2e3b7eb4208597c66

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d7f602d604bddc6125de1be9cc0e35dd4723a004ec306e3e3ee963f3b8372437
MD5 21e22002a63c03dd9b73939171b1b539
BLAKE2b-256 97f716643d472ebd6b2636f7ed10fc2de6b09a2be94bf20312e472e48e442a42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.8.22-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.5.3

File hashes

Hashes for hdbcli-2.8.22-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 57428f0b121a55be98dc6c5684c0fba76b053f999c06e45ac04259aabe89aa8f
MD5 3a382e5953d00434bcf5a6094b4ce746
BLAKE2b-256 62f9b2eedd973c71c7b6bd3bf343102c566fb0638a8abfbf6062d57245a13a1b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96fba7fbbd2280af0c53972179a8e0938a7aa3f9695209e95b2b767a041e7585
MD5 f37a71e72a91fd8efb7432a715f12f08
BLAKE2b-256 3cee9a2d49d982901f79db36079288287d454af1405ac5cb0580a1e321e40131

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7dc10438de158f1d138a50281ac7610b7b16ea8513d856f0d107d89b637c6cc1
MD5 4c682e632c080a8ee694eaa475c7efc3
BLAKE2b-256 48c59d46f90c11a13f7354c048d6294680dfd12689a40cc6a341ff4664d2006e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.8.22-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c6f0f5fb542c51a3789c027cc8e1ab3d9d1457708597c18ebbeb931d28154b13
MD5 5e0fb85f20def25d27777cdb92e2b0af
BLAKE2b-256 e81796cac86bbf955787c39b419d0338bf0bdafe295a7211d3ab5c49cea399eb

See more details on using hashes here.

Supported by

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