Skip to main content

Python interface to Oracle Database

Project description

python-oracledb

The python-oracledb driver is the widely used, open-source Python extension module allowing Python programs to connect directly to Oracle Database with no extra libraries needed. The module is built with Cython for safety and speed. It is lightweight and high-performance. It is stable, well tested, and has comprehensive documentation. The module is maintained by Oracle.

The module conforms to the Python Database API 2.0 specification with a considerable number of additions and a couple of minor exclusions, see the feature list. It is used by many Python frameworks, SQL generators, ORMs, and libraries.

Python-oracledb has a rich feature set which is easy to use. It gives you control over SQL and PL/SQL statement execution; for working with data frames; for fast data ingestion; for calling NoSQL-style document APIs; for message queueing; for receiving database notifications; and for starting and stopping the database. It also has high availability and security features. Synchronous and concurrent coding styles are supported. Database operations can optionally be pipelined.

Python-oracledb is the successor to the now obsolete cx_Oracle driver.

Python-oracledb Installation

Run:

python -m pip install oracledb --upgrade

See Installing python-oracledb for details.

Samples

Examples can be found in the /samples directory and the Python and Oracle Database Tutorial.

A basic example:

import oracledb
import getpass

un = "scott"                  # Sample database username
cs = "localhost/orclpdb"      # Sample database connection string
# cs = "localhost/freepdb1"   # For Oracle Database Free users
# cs = "localhost/orclpdb1"   # Some databases may have this service
pw = getpass.getpass(f"Enter password for {un}@{cs}: ")

with oracledb.connect(user=un, password=pw, dsn=cs) as connection:
    with connection.cursor() as cursor:
        sql = "select sysdate from dual"
        for r in cursor.execute(sql):
            print(r)

Dependencies and Interoperability

  • Python versions 3.9 through 3.14.

    Pre-built packages are available on PyPI and other repositories.

    Source code is also available.

    Previous versions of python-oracledb supported older Python versions.

  • Oracle Client libraries are optional.

    Thin mode: By default python-oracledb runs in a 'Thin' mode which connects directly to Oracle Database.

    Thick mode: Some advanced Oracle Database functionality is currently only available when optional Oracle Client libraries are loaded by python-oracledb. Libraries are available in the free Oracle Instant Client packages. Python-oracledb can use Oracle Client Release 19 or later. Older python-oracledb versions supported older Client versions.

  • Oracle Database

    Thin mode: Oracle Database 12.1 or later is required.

    Thick mode: Oracle Database 11.2 or later is required, depending on the Oracle Client release. Oracle Database's standard client-server version interoperability allows connection to both older and newer databases. For example when python-oracledb uses Oracle Client 19 libraries, then it can connect to Oracle Database 11.2 or later.

Documentation

See the python-oracledb Documentation and Release Notes.

Help

Questions can be asked in GitHub Discussions.

Problem reports can be raised in GitHub Issues.

Tests

See /tests

Contributing

This project welcomes contributions from the community. Before submitting a pull request, please review our contribution guide.

Security

Please consult the security guide for our responsible security vulnerability disclosure process.

License

See LICENSE, THIRD_PARTY_LICENSES, and NOTICE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oracledb-4.0.2.tar.gz (881.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

oracledb-4.0.2-cp314-cp314-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows ARM64

oracledb-4.0.2-cp314-cp314-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86-64

oracledb-4.0.2-cp314-cp314-win32.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86

oracledb-4.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

oracledb-4.0.2-cp314-cp314-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

oracledb-4.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

oracledb-4.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

oracledb-4.0.2-cp314-cp314-macosx_10_15_universal2.whl (4.4 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

oracledb-4.0.2-cp313-cp313-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows ARM64

oracledb-4.0.2-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

oracledb-4.0.2-cp313-cp313-win32.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86

oracledb-4.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

oracledb-4.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oracledb-4.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

oracledb-4.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

oracledb-4.0.2-cp313-cp313-macosx_10_13_universal2.whl (4.4 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

oracledb-4.0.2-cp312-cp312-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows ARM64

oracledb-4.0.2-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

oracledb-4.0.2-cp312-cp312-win32.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86

oracledb-4.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

oracledb-4.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oracledb-4.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

oracledb-4.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

oracledb-4.0.2-cp312-cp312-macosx_10_13_universal2.whl (4.4 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

oracledb-4.0.2-cp311-cp311-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows ARM64

oracledb-4.0.2-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

oracledb-4.0.2-cp311-cp311-win32.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86

oracledb-4.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

oracledb-4.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oracledb-4.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

oracledb-4.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

oracledb-4.0.2-cp311-cp311-macosx_10_9_universal2.whl (4.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

oracledb-4.0.2-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

oracledb-4.0.2-cp310-cp310-win32.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86

oracledb-4.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

oracledb-4.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

oracledb-4.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

oracledb-4.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

oracledb-4.0.2-cp310-cp310-macosx_10_9_universal2.whl (4.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

oracledb-4.0.2-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

oracledb-4.0.2-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86

oracledb-4.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

oracledb-4.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

oracledb-4.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

oracledb-4.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

oracledb-4.0.2-cp39-cp39-macosx_10_9_universal2.whl (4.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file oracledb-4.0.2.tar.gz.

File metadata

  • Download URL: oracledb-4.0.2.tar.gz
  • Upload date:
  • Size: 881.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2.tar.gz
Algorithm Hash digest
SHA256 0a380ab72853487ea2764c5df772f35026b4219868fc3eba68e193c9aea230ac
MD5 f4e91cdc5efc611d849ecb9375d0e08f
BLAKE2b-256 87ae4576e5df7b8eadec51bb7d981a2bcc0d8387d7d6998a51d146c0886a523e

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 93b4d2cd17a93224711fadd28f77e956e5c6575cd923f24bfe0b1a2a581beb79
MD5 a00dcf7021e70d7395bd799a6252303d
BLAKE2b-256 0d6b47f5c76223798ebfb5b6d41e9c3a451d296d6d90123584d85159e4236ff5

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5c1f13ba535d9f0fc61e1987720988612cf9424667d491fc344ba681f3336a17
MD5 9ac1fb2d134fc93637a0f62bd2a6e9c8
BLAKE2b-256 2db9d6e2c3ee3d9fb3585f04910ecf6ff91dbfd84e8dafc06084717f6a134bca

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b14d52c09b3c7a8273b3640ba06675acec5000dab0356ef288587c46c30bbbb4
MD5 fde6580682d3bf6d7d9942682f718d1b
BLAKE2b-256 2ec56d15fedcbd67fabd6c9c345554e184ba6617e389bfea348358f8aacc0e5f

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0101b88c15ae628af556506840ae876e12bdb75506ef342e4990ac1758bad1eb
MD5 1501a2418a79fb7e5028abdb19c6c97c
BLAKE2b-256 23bdf52b69a5d86d62cf9cb3992a7cafd1d46c418ae64eaa8a256a3d1eee9e51

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36e72ffaaf589041dac72ddf589d694c0a9ac4576662a04628966d4ea089d6ea
MD5 a00c66f1ff6cce6aaf10154250fa7ca1
BLAKE2b-256 c2632547b13274f95d2eb073af2c936a37d7da3025f910937dc2e411b7160784

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14124b5e8e4ba087f105ee389ee43e407840220a0ba2504de68eed903f51a711
MD5 108217192dc4b9e5b367f2d020a3ed4e
BLAKE2b-256 fd095185ea1270987fa3514ff6bf99540e23befefdb511759137f57848e1ab72

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78d4a1cc1482b5927a9962c7766aeeae616a85eedbe49af8b797148ac1c1ac32
MD5 403853ffaa58a9985d89a39ac3e7006c
BLAKE2b-256 1f35eec834f01d84f6974ff9b397b83cc80b67064410476049aaf9f88269590d

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 58e71a3c1e294a99e39b086adf42074d48287548bf8edfa720c9507106186bbb
MD5 aa4e0f12ec649881eb7352ad75554beb
BLAKE2b-256 d89630cdbc8399f8edd5cd8bc28bae89fba0eaa40c529168360e9aa84fa21e97

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 087fdf5bc36b03dc3c55f7abc944a163ba8edc9c802bc8baf91698a52041ee13
MD5 8b9bd5906e3be810c3963c29685cb0de
BLAKE2b-256 0b145c7c44a8f441783d461b9657994e03f8798e28bebe67395951c53c86c270

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6444be4991f33754cd98f624cecef3eb98db3e87f8ac14e9b65bd3591c9dd252
MD5 b72e0a96c47eebb3308bbec3bb1511e1
BLAKE2b-256 bb4a9895cb5a1fffa68f2d9fb1cfb43de88628c049d313734de7ecef17099460

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a45a13e33509db5bd3622a05cb2e4a6cb41d56d1bfd2a32caeacd26f4ce8b988
MD5 78083fd592b3e1bc1542a6a7c872beb9
BLAKE2b-256 2e030a15a43a88addfb7b4f8d8343f0c47df68173510a27e2196b6b7347efb06

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5ed684ab419603d53981e0f32b51da673e21a42d7dce1bf3f215a9301c7c108
MD5 8449f63534c28fc25c6498fe63515590
BLAKE2b-256 15f52fc4e30b24a60e40fa6419dbadd8f869878a3ac49d28b7d16bca59dd2519

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db0d76199b6dffd721bda48dad4eeea6603942ce2e246f3b9301d85af6bda0ee
MD5 44242b875044aceb57b67893323b2bce
BLAKE2b-256 b9760bc64bdfc7ca794f4576c757da89617922be402f9fcf434bf5de7e44235a

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b89c02670bafc9b1fcc0d15175f097bdc1968bc36ee4d66aa63aee09bfbbe30
MD5 23806ca359a8d02d8962d28506b6f7ff
BLAKE2b-256 cf53badcc7e29ba9e9f2158f2e18214197d63c53d99c4720d436d8fc0b6b175f

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a814307ca8a6bf0649d8bf0a650a72f23030d9af052a2d4a481b94b6ab50d5a4
MD5 73409e9034aa179ffdbd8d2c52c72970
BLAKE2b-256 f6ad583d85906b5c4b344600be2bf30077f3a6c2bf04ee01b4fee9856d1da269

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 af4121112f0b68e8d61ce46a086c6aec8256fa2ca32d2e6467195a6c575c207b
MD5 eddebf9859066c01fcc7030cfd405a32
BLAKE2b-256 2bcbe9ad24c2fa20ff977ca52b5a68a2010a054f724d420681be75e7e3d92b57

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a1f46b01a089e0e0dd44c4ac4c5c79903760976346c74a698955c1fb76d68bf5
MD5 5d3ad91ad71fe365733d2df40a5a7b1d
BLAKE2b-256 87cb009980df826442900419a7bc317e35dc85a031bc2d3806256d469de7d670

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5fe6e07ed29f84a6656e0580b4e662109d3bb90fc13d8f98ae3a56a67c75b80e
MD5 248e3eb8fc93e1ed289ca472bf40ba5d
BLAKE2b-256 85e299fe3fa29466533df10fdfed90faee133aa1e7147b9edfc13b839e06f738

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b5d203426f0d191842b4cfd87c223163ccc57f7e7875ec7ed073f163de2229af
MD5 c73ab8a57090ea9de7c7facafa1c7d13
BLAKE2b-256 4910f05a3348a50ecab07b86317424751a4f63891e31c228a6d95f92b9538afd

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4f2b51837248d4acfb323a64c48d89b62467b0f73d1211c99db9b80df0cdfbc
MD5 07df0e6bf81e800993f444acd197dcd9
BLAKE2b-256 2483834e07805b8b3aaab7e87b818ef44ab3cb5394a73149a580ecf73cd92d4d

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b82d3d83bdc6246e53f8ad8b598d2508e9f5d983e352ce2e8a71a020200ba2d6
MD5 aeb29b659ae6505fd33ce5854a8253fe
BLAKE2b-256 284e77b21ec50c786270a7471abd6f48ec3c2e629ce304ec792eeeb6f03ba4d0

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 579f2c568433523a990cde5bea73c980d144754dc54d3ab2cd37efd670dc31d6
MD5 5871b7edfc9a117f24dcf4c12014de52
BLAKE2b-256 10315b9d6fa28942ff38e2d76dcef3184e7569d4b0006d0425f92a3d4a764dc4

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d11723018b6aeae035f4e1feae4150b7cca1161023c2d68d957d7310fe0dd56
MD5 85026ff455664a4b827095f68bfc8f66
BLAKE2b-256 9cc81825d240aa68b255eb78867c62964d2a69c6ae6197ab3543fe220539bf69

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 cbe3a75b463a334da9b3d76026062bcfb24ec563b7df291f700c9f7eefcbeefe
MD5 515ae5c8f491501098293cbc303cc602
BLAKE2b-256 a5892568c2d32afb3c0a66cef2e74dac7769f69e117a14402301b106970475dd

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6d4effb098af3dbcc1fcf785b304523afee1b9a311a8bd9c62bd3b4669198970
MD5 7bc6c2737ec9cdaff53904e5cd6f12b3
BLAKE2b-256 3fce65ca81d885d3c413bf871c279f4062938654f7b00cc063a3259159efed7b

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d5a82a449d96fb89a93346d88128ad618526ffa290376d4b57fbcee1eedcd19f
MD5 c5eafaa4324139c29930a8b060b49211
BLAKE2b-256 1cfd5f79d68e18c42f6f7cb4f73aeb12c996765ae965fcf941ee7807cda34db7

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0a0be8111db80bb697ec66a34688a6985589e3f72789afe28e3b162b2c4cdd2b
MD5 2e5642ecdc7693edc1c372a73c2a4809
BLAKE2b-256 e353ada1003c61a4d95d049efbfc711ebcfa4e3bccd13afffd7b10c8b66a9d17

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff8a239de950acb600ab4fbe1b349fb085a75383bc9a163e50cab362293fc936
MD5 f179131489068e1cfbaf8dc1b11853d3
BLAKE2b-256 444fff6f82cd92015692ec3a6b2236e6e7b5002f3092758e962ae29ee18a2244

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 567c093138d32f06512572de5b5d52459bea82b4e47098e9d668dae759965ccb
MD5 c284a52ae41306c82baa0641b58db47b
BLAKE2b-256 9d25aba1ef7c69e729295c6625e11c67a8c66d77584291a5c6c17af360767d01

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33bcb765bf97056764c38481dc1dd959e4b61f3a240baacc645d7f06038ce225
MD5 5cfe5d609b55d243e03e32886fc759f0
BLAKE2b-256 55c3f6e15a8d5d6a3442cfa00b12619eb6f2438fddbb93da0de6fae0020ecca7

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3bde3d507d8f50faa9480e99222fe5fa04dc0db2cb8b57746092022ac69ae93d
MD5 ea19f5eaab0ad92efc7ed7dfe2b7425f
BLAKE2b-256 ae6592a00e394ffc19eb02aa97742c4baa86bdadbe570c5a4e3a71e6577c0ebf

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 60f4a4847024f42e8b3be3c7d2597d682ef24f9342b5ebf1695a1bef2aa5be96
MD5 6ef4c5d5c4ef8c534513d61a0ab40adf
BLAKE2b-256 57dd101f815a178ecb6a2d73d9d70c74e4263cbdfe67815cd420e9f7e78e29e7

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 543a7398ebd778d40a839b76a331afa93f506ac143691a6de59ee31ae2e1c4aa
MD5 f78ab96c1218634e1795aa700732f6cc
BLAKE2b-256 3073b55846490b593a15060c4ea7604e4f9e6871913b90a9f7d1211ff8634d96

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 756db3529dc0f88251f9cbc349cc9c144af2424aae12c1ce24be2fbd9c1b1610
MD5 803817f712f34c37b675f1245047d783
BLAKE2b-256 3eadc1a7c55524c3526bddf0c3d29efcd7bbce0d2793f3d59c1b537d15760307

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a7a45fb1042f7258dfbd0b58044a6743c2e8112d0ef5ef9064e17a52968520f
MD5 a5e216d0dc9d6af46ce382c2251ef81b
BLAKE2b-256 ee27abe65a566735478e2d564ab62332326869d11b5cee9d7d72721fc1e46438

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60cd8a6045674ab481ff33b0bed448f656e7d9abd7fc88c8f349abda5351aad7
MD5 ffc614a5dc0e4899ef1f7a0d137937f6
BLAKE2b-256 6238355f6a4b6ca35a5f0fd49280dfa469b7a5a437f108e1028ce8efde843770

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d8933cfb94d9e947cb88dfc87bb2696120b388b89db14394133990585277fb3
MD5 139a6067ed60621dca0f1b13fd036012
BLAKE2b-256 d59913c554952fb7af488b422087d210fffdaa4b34ea44b91c4098fc9588fb45

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 864ad6a838e8d41031f117052ee2fac85453b6ecd483d1da6e8fd87701807e5e
MD5 09759c37fae4f78096430fc02f090352
BLAKE2b-256 4932ad372ee13993bafdaa00402c5cf28280913979b4f3e419078481d6ffeef1

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 04fd67692b3cdea2ac7135e6f87c82ce9035f3caa0891a26710a4c654f1e375e
MD5 a44d7124a2b03b351b327553c454f168
BLAKE2b-256 afe5c6d3700b9563d89c57c39fbe0541c9ff4fe6c0755826a3e25cc99d4200c0

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c8f3e34a077d7d2d39aa25c28b1aa53fd4fd6aa2437e4d48d9f18b2b28b95e4
MD5 2861417ce0ed3065870a85b48088e017
BLAKE2b-256 071dd730577262c803887ab0a2144cf8bb52e85163eea0df3c437a6531827e3d

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: oracledb-4.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for oracledb-4.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d8a83c120d8177f344bedf7698bc1af5f6fd031851031d3e20ced632286e3e84
MD5 cf9869a9500eacca75cfbf4e75f7f3d2
BLAKE2b-256 046a2f672e755d6d60f4ad5c0183f8ccb0fd3b32a9e4124c4502fc1a13617bee

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41bb34ba8fe76019a958f6d0beba2baf9169ede0bf94e1a22f05f3ca7676f8d7
MD5 67229eeb283e0fceff04373f384c2f35
BLAKE2b-256 a46c10888040b24152e055f56eaee85f6cd20438168d91b1317b434647d7605c

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8ac435434193a1d88fcda6bfd9387c5562240d4f2e8de1f9ed20c64d5f0ff90
MD5 23908247125f23972bdf52d9ce22fc3a
BLAKE2b-256 7e1bfb82ea0e9de4c91b89980dd1a93b27268527d6a02fa8966e802a6b387792

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb70b231254ad82ff0639b8688e0e528100a984df65fcd7624bae88fb930e700
MD5 cbec50441335b90831ff653a98e439a8
BLAKE2b-256 3dff13d6be0af97e8cf8d1be980b519f38c46494456cb02d5304c7a6457f922e

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c193d2636f9c2e8549d24cc53947a8381c7b9488e0dae9cea5cf5bce30dc7313
MD5 e57e313fcd139fc29a87fde02c3df871
BLAKE2b-256 4102e2dc0112d2f11532ceebe4473811e27973edafa98c496bce4b7cfa77ab41

See more details on using hashes here.

File details

Details for the file oracledb-4.0.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for oracledb-4.0.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7d023f02f678937bcb6acce7c976569233d193e00c918d7e7b68580db1f68f45
MD5 4d9764538942ef2f606c1d82853da9ae
BLAKE2b-256 587ceba398ab3dab372d00353d9928c725be43ea61749370f4acdfa0e6ca2fde

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