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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8mWindows x86-64

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

Uploaded CPython 3.8mWindows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.4mWindows x86-64

hdbcli-2.7.17-cp34-abi3-manylinux2014_ppc64le.whl (11.2 MB view details)

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+

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

Uploaded CPython 3.4+macOS 10.7+ x86-64

hdbcli-2.7.17-cp27-cp27mu-manylinux2014_ppc64le.whl (11.2 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mumacOS 10.7+ x86-64

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

Uploaded CPython 2.7mWindows x86-64

hdbcli-2.7.17-cp27-cp27m-manylinux2014_ppc64le.whl (11.2 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

hdbcli-2.7.17-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.7.17-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f5de6f0a1bcb921a2b526860445731b05dbb056d21785e6b3e5a00913f22dd2e
MD5 71a9730491639c2d5f0b5127860c110f
BLAKE2b-256 726caa9680c94aa513d16e1451a0251b309024519b8594050e18ff386b075452

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 717be1da7a6f34d85bf475f74ac2c7a2c24baac3ffb8afe4e1056290fee948a4
MD5 0cdc0f4b608688cfdb80fc9a224f8ac9
BLAKE2b-256 1e70e13f3ac9686f56ce6bad503d3ba5c28045e3abb5abf314ffc101e6e07ecd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp38-cp38m-win_amd64.whl
Algorithm Hash digest
SHA256 814f706bd5a56e0e7da5052db07a0ced806c3ff099e5bc24b41ea4a2f2107b99
MD5 9c95f938533ac946110b5aff637aec12
BLAKE2b-256 f3bddbbdbd46ba21d90bcb0a689f6e9876ee2a57c34e2d867ab6b63ebe3af734

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp38-cp38m-win32.whl
Algorithm Hash digest
SHA256 1de6653e6807968bb976114d1d336e936ddf1dc9999c2cf82e7c856caf408376
MD5 0164f6a903d21e7656a8f628f157ec9e
BLAKE2b-256 a3c79aacd329b876e9a73945ed13226fb025b0c7c1ee9cfae9322f010b90b813

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 73a7e68f0477ad9bde9e1d337e8099157580b19ba77cd271dde562775d436fba
MD5 1c808bf0f73c911ed3d7b764b2679c5a
BLAKE2b-256 e6606537ec9d9ce42ac5a17f0e6f039f80d7d6606eb023033b04ac22f801a438

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 644d67bd3bea107948d3336c20df537e84a6166df44908e35c06efac384d1cef
MD5 8da3e1ec6cb0951d370b09cf98f661fe
BLAKE2b-256 d6abab74031c24fb62c07a7798e05e284530d269e68c59c2d09b95a8da69b684

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9dcf2678b86bf2a85c0337ed97a4f8b9f9f824579f8c2149a65478aeb75aa5cb
MD5 2be45a3de23ad2e288642e1d906dbaf0
BLAKE2b-256 8a524fbaed1ea450ed15fdeecc98450253450193ed30cc7d968ba26a4de07194

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1adc72520331b2580c7d79abf8918cd9d91393775d03a7ace86b02280e639463
MD5 478a4b161b0cd335cd016229f85c603b
BLAKE2b-256 8e41132559d9fc4384ea8f89f930b89f5b440bb9eeb8e5a927682d335e1b8b83

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 1c03231efba8a18a5ac9cc6e4f37489afcfec7d0066b3b61882f6ca502cd7cfe
MD5 d861767ef0b58198242394c2d5cbace1
BLAKE2b-256 9882b4c480bfe52c18dd01a45a77bab4917664c77b9dfdbe6437988326ae871b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 08f7a92c0da47f6c689347b5bd292737d614b0f7b5937420d6ea0589a85a9999
MD5 de04768746d9972ffe25584ad3e33fe7
BLAKE2b-256 9c45f16a374e8555047f77bca2c2410698f24c3802d4e0e236df2d1e8ac6a594

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.17-cp34-abi3-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 3.4+
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.17-cp34-abi3-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9bfd6a657bba4d98e0be165f4678ecb12b9581684bb923b10c5962e3fa667f9e
MD5 2dbf0bcec69aca34c6e39e70fffa2779
BLAKE2b-256 cd478f95649811edde05c05e22db894d05d8b0e4123da08610043f8db64b65bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp34-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 57960da3159676ccb1295c56bb688bc455e89462cec03730aae63d4872d573df
MD5 b541cf821429b2d40285442702466d9d
BLAKE2b-256 cf5c7b9de8cc36a67511ae85dc432f384b49c4bd15dc5e6bf2e47bdc63af00e9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp34-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 902d335ae6c0c261616ba2a836f65ec3e0aa2cf72cbf68f4db68e8aa17d0d5fb
MD5 37ac547c453c055c67af565073e13d15
BLAKE2b-256 d7daf83b8072927d28f49fb23c870ee73275c1c6c46ad035e7682719596b4fd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.17-cp27-cp27mu-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.17-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fad101ce287643f72feab51ebd242907b9c4b1cf8c5a7faba76dece39e213f17
MD5 5d8610b66ef37cd2f42d8be47f583e2d
BLAKE2b-256 12150228fd0ff6c788b2f685a0385e2325ab4878917cf8af805a49c428f8a2f2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 32b6aa5949691e987cdbf8f40ac4fdf172a40dca9bde97b5799070e604f6f9da
MD5 5acc91c7fce4e4889d7372307899fb1b
BLAKE2b-256 4db935337fd1ed3f807422b10482bb7807e4efed4c82806dc2cac65f53d727e2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp27-cp27mu-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 30eec139924ca639b8e3da7c0b6eb6574b0c8874139346cb9e491d466de2fcd0
MD5 6965d80a8e60298b956ae9b2be1029b0
BLAKE2b-256 16df55f49382640c4b32ddbc34b4f79695397b6b92b9b7dfbc852362843b967d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 acf00572822681e5389e48d21832ba4f9648580fcb9a4a0219bcc106f5d11df5
MD5 adc89854993e775e2c8af0e80bb1efa8
BLAKE2b-256 2f9f85d21a2d505d8819cdbbf5cacb2ec23b2083433485abe82da682a4d018ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hdbcli-2.7.17-cp27-cp27m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.5.3

File hashes

Hashes for hdbcli-2.7.17-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ae05965b0fe5b4a4d7abf6b5e5fc00f70465200f08f8d580aacab364328010a
MD5 a4d4e0b62e473f1e6459a77e7b72aeca
BLAKE2b-256 f5e9e4457e3cf24b57ca7e2e6c233f2e2bdb2c004aaa4e47edf61c0cd31a42d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bf62f65c52753b503f15b92518152a1af63673a244f0a5d23c690ff86fd29ebc
MD5 09995516696af2a99ffa35a929c24f1d
BLAKE2b-256 1fea32de021a19427299a4fa297708bfe8184c8a3288ecc9161957ee1b4aed7c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hdbcli-2.7.17-cp27-cp27m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 888ebaecdf9a9d3bbbef4f965d836e23fef2b0e9e7ea1f040c0c20a09abf9d6f
MD5 f46cde7e13303e97041f27a9d87cae49
BLAKE2b-256 b93c3d31f857f0336d768749a975f43ad82701e882dc8506b50dee89f89fb5a9

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