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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8m Windows x86-64

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

Uploaded CPython 3.8m Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+ macOS 10.7+ x86-64

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu macOS 10.7+ x86-64

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.10.20-cp27-cp27m-macosx_10_7_x86_64.whl (5.6 MB view details)

Uploaded CPython 2.7m macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6f7a3a6f8cfe096c05e84e265d81db0c35e79a62efc7263ecb3a5610bc385236
MD5 687a454909dd4a52a675a25b8de449a4
BLAKE2b-256 af3db6535f437e62ba4046015636914672040119dc9651631cf874a5349f11d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c231a920e0bfcd3319f600a90715fb0065205d2f76736f84f32dac487197758e
MD5 250678e8f52bb08c24f12e621204c56c
BLAKE2b-256 71e02c8f4b45f13033634bdbb8e81a89d677e59b2854303ae181e7b8d92552fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 23dfd758435e7d53b0d095dafc3180d9ad59d2abc53e880a35a3ce44151492fc
MD5 f5b4fcb4c2ab068a145ed2a7e0498f76
BLAKE2b-256 62a22b74c5aad9247b6a9972a3c9bbbc3586a356a7576736d29d2bf153f626f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 d777fc014d6629b7535a0ecb108b41948ddb7e5d2a4f49cf09199dd205dceba9
MD5 3c8e7de4642c0a9fc99e86ad20e22fa2
BLAKE2b-256 844b339af6b9cedc3954ba28c5afeebbcf038164c662b137190a7617ecb8dd1a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0282877b89afcb7a4677c82118aceb3be814f26e4b15354d281a44af8d54f095
MD5 af6bd8df335050ba7a51bf660a5fc3b2
BLAKE2b-256 a83b35d01b700d0d0756a67053831fd9b67db59d81cea7834f02a7170fac1e28

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8a4844b86944cf8ec7d605c23d33823cd51f6e2962f23669f6b379b67d926aad
MD5 99be97d9157874e1e9f215b382da20e5
BLAKE2b-256 0cfe2606a7de459e23d64eaff125dd31e41d9fc26fb05a34c80bb78a2972cf34

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ecf8478c78375c48ae54efe05ef10bd15c7eebb88d011812facf80346821f25b
MD5 d3ff8dc5159a381460bb7e56da84fc43
BLAKE2b-256 3db2e9f5080833e750d8cb84e7e468e8367c560c793b846af0a0b663bcb82033

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 cd25d54708848a5fe694e09a9c67d734089262a4e4ca4f1c0113abb9a45a038f
MD5 8eae1fdc845b51b48f9a08cf62ac9465
BLAKE2b-256 30b6f7dbe634b703bd1d63624328e7ea95d42cc943512329b6037c58f34d0308

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e37fcf81c375d207c4fb0b1077b42a2403dc5c902b6fa3d54bdf817b87ef7fbf
MD5 5346eb247dd9c3721c2f46815b480d12
BLAKE2b-256 b47b180c0494eb3a2c41649c20ef0bda4ee728346901f1136adc10a5e449318a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 14e534b28aab767cd7e469f9ce36d210e9ac92e3cc4d619c15bf5c7c0e11ecd3
MD5 a63fb42b0f25b6199c48414fa7bcd765
BLAKE2b-256 8e82ba91abca7a73665d464423fa026c8809783412dbbb95a3f5de97ee783f9f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de681d63852d6cddea25b4cffa48d0a10fc11bd159e05fe35932f0dda2bf58a4
MD5 7d721ccfcf19a0b4d940480d7dffeb91
BLAKE2b-256 ac00588ce50e4474a2caf8e6f4ae72f8763fe4dbda6cad24983f8575aaa8690a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 76fb649b198207ec26467226a60811fe9be2b2a2fa0575cdc8df52a8ff579c0f
MD5 a439eda3c7d53def2661316318800c2c
BLAKE2b-256 8f337d4b614806427657aaa25b56a86199def526a6be3c2dbf8c0e6bbb814621

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d6707c0e0a0899751035a39d2376d983b7eae887252339ce2f4edc702cf6ad7d
MD5 0d5cfa83d631dfe32fcf5b4899eb4fa6
BLAKE2b-256 21f9611545fc13e80e4230f3004715d180fdf3cabcb0c7cafca2eeb1686bc214

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0ca32d8f5158637f0589333ce808387c92fe133db7645e997eb23c319951d1a
MD5 a6ca57be6c236e5e62b5fd33769069a5
BLAKE2b-256 d10a3077839302da34d697a9897840d44690c4f0f14c9bf9e30cb981e3551bcd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5bff1e132819fd66bf22ac0457058e916799f1b5fc96d160b02dce839db133ae
MD5 7f92686d7f9df22e209110549085ea4d
BLAKE2b-256 ee38f2a028c5cd6e75f4c11687c93e08cd32f27953bc9af5b811dccaa27990d6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 828db7bb9ce74cc7fb692db1ba4f0f37151db31c7c6d689c07e66fb921cbb2da
MD5 db905d2bb6045142282792ff14e8a4dc
BLAKE2b-256 8c3d2d3d86a726cd38bd0b9f8b5999b921fbbb62c645f6229d514644c547c97e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c86b9cbaa4f8b1b2c54885e6f53cc8503e62265a9464a602790cf30b81b1d70e
MD5 26a9ad96538d9fc4061cb6d2fb7c48f7
BLAKE2b-256 428e58fa1a2e0f84ca22153b8fa450b94b7517a4e9649ebd997fdbd546465340

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc0af8eb056c5452ea2c2904687bc48ea4aa137cbb5f1f3eacf01f7f897620c0
MD5 7f0497cdff4c2c2351794b3c582b00c7
BLAKE2b-256 5fde7e40850b95f00330a6e68121a7a584308f4134ad7e19bbf92c96e4ac0e72

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 992259da8f48fda5bbb6617f4953d85ca5aa87b0d98b47580ca175119a47d44f
MD5 34180cf063fe3a1dc82853f498b68da5
BLAKE2b-256 e87bcb4fc9f8fad09a010879ef04e085206a2c2d7f706e5e71ede2e852641cf6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.10.20-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 96f21001399b8751b94c0ce249eff6ef674d12ac94ba9124ba6604d0f55d594b
MD5 2a124dfbf7f5c4e69052a9c6e5d460a5
BLAKE2b-256 2764114672ba3bc9f5f42add205f7cb51ff26f94f41beff41c841e2a7ee18840

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page