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.0.tar.gz (878.4 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.0-cp314-cp314-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

oracledb-4.0.0-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.0-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.0-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.0-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

oracledb-4.0.0-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.0-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.0-cp313-cp313-macosx_10_13_universal2.whl (4.3 MB view details)

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

oracledb-4.0.0-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

oracledb-4.0.0-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.0-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.0-cp312-cp312-macosx_10_13_universal2.whl (4.3 MB view details)

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

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

oracledb-4.0.0-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.0-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.0-cp311-cp311-macosx_10_9_universal2.whl (4.3 MB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

oracledb-4.0.0-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.0-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.0-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.0-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

oracledb-4.0.0-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.0-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.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for oracledb-4.0.0.tar.gz
Algorithm Hash digest
SHA256 244ebe47c4a4e32bc07a4206192de04d92fbfeb72bf11a01493e3a710bd4b19a
MD5 2e4c9bb10007673f2f61108a38b5d4fa
BLAKE2b-256 1b3c79c391788f192c68892b8a8beb3b2d582a87301158de95077344f5ace5ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.0-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.4

File hashes

Hashes for oracledb-4.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cd83db5710e26502352c4ce3f5b5e29f202223f9dade089a28daeb688083d0db
MD5 d672ab513777c3141b1fb92621eb4092
BLAKE2b-256 aee0c229bab86597997139c1c0bf25eae5963113f95c28913c75647d849d96af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.0-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.4

File hashes

Hashes for oracledb-4.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1d3e46c81baf932752d5dfa25e9c63faea65ef17d5c0650558547b8784c929a1
MD5 73763f028954cf80bb71924600ccaa5a
BLAKE2b-256 9bb6fbfbe12031c96c823e4a6d50744249029069496c9350fa233aa0617499c6

See more details on using hashes here.

File details

Details for the file oracledb-4.0.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 758ac5a56e872eb517cbae5d28574b200d7b2b28c793ee31b6ce4938777d8364
MD5 5adc9a764be43fc8a9b55c254db3d3a5
BLAKE2b-256 6163d00cc0dbc90f5a6ea7d26c5cc03bb7d949fc37b26ac05e3e7253af50f44a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6fc3dd6ce0fb1d8ca865bdf39183e663b1dd5e2d585327feffedf379a05e3abb
MD5 11644885a2e17878d9e81592d9c11156
BLAKE2b-256 bf3c25fbbd4ced440dbb6e04867b9b99557ed7f2f471f172f9ba3eb6fbf68b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6c65366200b44c0a71b927cd813628f0d993b098c61cc82c54c53bccb0dd0d80
MD5 c760f0ef0e7216aa8c58f143bc8265a0
BLAKE2b-256 9752b57a851a1ace456b294575cd48971f911cf86850f11a7039014802c3eda0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-4.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 997a4cd0f563b5a1aa92aeb9bdd70e67e3789f0d1a418600a7256b27e6c8947f
MD5 cc8a2741b3cf3ce1c1592036992c51e1
BLAKE2b-256 9ecc180051d7282a1f213ca46502aea26b9095b053479db5cd391567830cbaa5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.0-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.4

File hashes

Hashes for oracledb-4.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 893acd019ee45184e85ef1b5f1ba425ab4da3e8ed4dab1339b7ef329d3658ffc
MD5 4783b40633332dfaa76c118f70583174
BLAKE2b-256 877590b9cb4ed563d392885af7cc96a1f23dd4d50a5003aa41d51c2234a28c91

See more details on using hashes here.

File details

Details for the file oracledb-4.0.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 922c59a7fcdc44c93dac852b33b9ebae202614235e0ed235e632bf8d5ca4dd55
MD5 211c668ab17b39d7c0467b1f42b17c41
BLAKE2b-256 4d8de6829c60d7d00612163db8efff62c0b4857c7646d8bbc062121cba7671d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80434a5aa393833bfde853e9e2943671cab219b3081c34aad1974df73c21e04d
MD5 d950fc6958ca2556abd5d06ddb57db63
BLAKE2b-256 a0097eace2e07af4e5ac6bb5667b8ac1801f4bc921a93d48f6ab7bc05d6141a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f5b1f7ae53883336e23a235339e023d26d1d4b0d014ce4944c61dc79951c89df
MD5 a55f7e7a9ddd4cb679f0e9fad77bc599
BLAKE2b-256 f06f8e44af5f2f5fed3053816550b26d2cb89f94ded13a786e0c5999a45a69e4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-4.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a1c22feae372978861786c65560498dbb36e32d7447318499694d4504c67c043
MD5 fc46806de05cd6f97a9da72b4ebf44ee
BLAKE2b-256 ea01b417944302d7515868f57dd80714c7e7c31a59cbc2d9e624fa22706c18ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.0-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.4

File hashes

Hashes for oracledb-4.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 62b36249e8db777cd6a2b56be768642d055c89df3cbcfb5d6a3b4dc2426b34df
MD5 1295c02467c181eda203f637d56c1349
BLAKE2b-256 8fb27ce5b33aec8ad6fa45861ce9c55c2f5078d9280cd91f5ff36adc313f1113

See more details on using hashes here.

File details

Details for the file oracledb-4.0.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aad06930cf7a99914c863e6e550111b452560bef82b25bd9650541d5c7622837
MD5 0660ef24b84ee61e4a2db1aa80dfb8a4
BLAKE2b-256 ff30b011f20f204c7f19315a5ce30bdfe2185b531d7b9af43ca4cb010d6bc29d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e47a130120181b8226daf9e928e3c22107c1d03d9ac5f6b891360677a811787
MD5 a1f89dc7d55c3ecc78d90c6a404c31cc
BLAKE2b-256 8f614b0183b67ea0f30044b2171cfca2320c7422389da18949eb1e03021919aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a3a0221ccb33fb47b46cc3fbe587d80144e0ae6237ded5b3c58e8f6c674f02dc
MD5 b1b0a823a21a4e53858f5bda2b1a58cc
BLAKE2b-256 b854b78b3b26a822dea92b1136c0c67ee52e7c90ad1f255f2db314047969bf16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.0-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.4

File hashes

Hashes for oracledb-4.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 22e33228d6955db8a69c8c83ee4b392a534c86f9493647ea3f511c2f5df08dd4
MD5 a78e2f93c5b86065307c092bf7a7b247
BLAKE2b-256 0fefac0d329f4819a4cc0a9e55854341f76de8bde1dce9ad22b985737a2ea75a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.0-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.4

File hashes

Hashes for oracledb-4.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4582f87e56c2a2e3a74942f087c096525543e92fb59d3758e41d41145b809c52
MD5 a39df320127427124d883d2710128a1f
BLAKE2b-256 82d4f7d46629a8f6a43640252e7539c935c2f9a6cf146a1d50d056ee2ad1a209

See more details on using hashes here.

File details

Details for the file oracledb-4.0.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ccf0b875850109a77ab932b03dbfa6c98e4eb011545465008d32e7a7207e8e9a
MD5 21b0c7c0b28527b9a3c83008ac02255d
BLAKE2b-256 a0037df2d269bdadb683d6fa0fada5069e216c1ccee0297ef6356e8a86aff44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8c7f26d6e75848d7c75604eff71272c202ddb5eb65996630da3d6d5452401f6
MD5 6b12e2d2a176e56d0c544bf3438478dd
BLAKE2b-256 9c2d77bf32981a017f96d68b3d450b1ab26021f1a32f96f83dfdf656a90b1657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d4b36f906f2e6812d2e4bc1fe965d50670a3fd552cef66bcb2da892e946bba0c
MD5 1b9875697bd5487ae2e3c1d8454324c9
BLAKE2b-256 3206dbb1c7c3964c08e0bee0c55d8c9d05991ebd368f2913bd766377212f021a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.0-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.4

File hashes

Hashes for oracledb-4.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 19d445b62973da05fde2f7f9fe1f811e3b18de4f9c6699f3c921af5ef75494bf
MD5 8e5d8a41246e0fa5bc4c6dd4c8d48248
BLAKE2b-256 a9e3a0caa1174d621940f581e342d4b5acc20d2d2982c7d97fc8c16ec340dac0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.0-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.4

File hashes

Hashes for oracledb-4.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b691fbca4c83e72773c1bee17df5dfced4f01334ea48242262430074cc5a9b36
MD5 2f5854f3955a048795cf1e5c5db37a82
BLAKE2b-256 7239b879baefc5553920515639267ff6882dcb13ee924cc67559f93ceeb4c777

See more details on using hashes here.

File details

Details for the file oracledb-4.0.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fcbbd8977d8d91ae0d931ce21cda0048f9685e6cc29c9a84b49a769a2511b08
MD5 8328d2e950ef4c1b5fe706614f7c7fec
BLAKE2b-256 c86a5a2aadf4b1a8e7b5dbcb1407bb39014cd434b34e5015be6695bdee1b3bbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7e2c3d99a691e71b4eeb9efbefdfae4dcdfe3bb78abf05a5d9b1a5e65ce8ea0
MD5 e23b231a679130a423a23c710e440971
BLAKE2b-256 0fce94c2ecad44796b5b9bad153bb290d80435eb229168aa450ebc38fa54d89e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dc96cf923b62baae45bf698f4e80407b5640d9760682ce5d424e847bf9e20298
MD5 76ad254a8842822dbe5e02fcacc42afa
BLAKE2b-256 043d21a3f33d02773739e77a8b73a56d9dcbd43672d2772cdbb16e34fc61c58c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.0-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.4

File hashes

Hashes for oracledb-4.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8dd447f52482779f6cde277eaf7d734c7ac8f07f4d4e3d3609510f6033dfd0b8
MD5 98d04902b5ed82d9958d02ef0f31b2ea
BLAKE2b-256 424c90ee12bd60c994fefa231967236b5770e45f00c0bb46eea8347db396aaab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.0-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.4

File hashes

Hashes for oracledb-4.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b94a53c2524f4b9522a3091abdb12a2d8e1ac80a83456f7278d2165c3ec54482
MD5 eaa44886aabde94cef9e844abc131df2
BLAKE2b-256 8f98b2ce6adad2f9634e9129bcedfa05adca4681a25b8ad1f5c863bff9abc46e

See more details on using hashes here.

File details

Details for the file oracledb-4.0.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e29d9c9db167ade1c1649123c8f7cadf248f8e7f66f86335ec5b66b97f70f684
MD5 62c449655b860cd9f13ad21f6ba4ba4a
BLAKE2b-256 81b4365b5426e0d6525ce265e0c5de7da082394d01c669536eff5cd64bb6cb4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8974532ca43f50bc6c41b9efd78219121d3fa52c673d9790da12468d06fcf59f
MD5 15b9ce2a356a768b443ffacd49d4596d
BLAKE2b-256 442b94669466b76fb0dc1ede12653578a08f6d99a557863bbca63c7985e7d74b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bad1d5101cd6191271ab89ec372ad8ca119dac9453f59b7be948bdebf6cd5a55
MD5 2f2e0b2f62a6d415c7221e8eb931033d
BLAKE2b-256 d6876967259b4fba4f3ff3330706fb0794f3821f6c3afa8d01e840355e872965

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