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.1.tar.gz (879.1 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.1-cp314-cp314-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

oracledb-4.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

oracledb-4.0.1-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.1-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.1-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.1-cp313-cp313-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows ARM64

oracledb-4.0.1-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

oracledb-4.0.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oracledb-4.0.1-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.1-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.1-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.1-cp312-cp312-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

oracledb-4.0.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oracledb-4.0.1-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.1-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.1-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.1-cp311-cp311-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

oracledb-4.0.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oracledb-4.0.1-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.1-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.1-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.1-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

oracledb-4.0.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

oracledb-4.0.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

oracledb-4.0.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: oracledb-4.0.1.tar.gz
  • Upload date:
  • Size: 879.1 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.1.tar.gz
Algorithm Hash digest
SHA256 34bbea44423ed8b24093aa859ca7ee9b6e76ea490f9acdc5f6ff01aa1083e343
MD5 941317f72af6cc55508c53da76adafe3
BLAKE2b-256 f301203599755aaff4f79683c2d61d2e6dc9d30f6228485d9e0280cc358cede3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-4.0.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0d3c6ed987df64b914ece0722692419fe494d07f15bb4d7715adeada4f914c3a
MD5 db799e86693ba8cadc25aa2615b9fa13
BLAKE2b-256 2fb11289009c7407953fd19960dca73be921a4f6c88b097a6db59e0a2138bfc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0ece951553c106a0896c8e1690bcdf69d472761fa65fec9b8152cbce13ab8b81
MD5 29f8b55edf5987a8dc2b630708edc61c
BLAKE2b-256 36eb1f959914455bda7e02531c5c07a5c6a2354ce164b29281f441777747a1b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b05bfadbfe462c39cc97258a973972f5bbbc9f8e2e9a4c2e0efcb1ec86b91088
MD5 9bfedd8e239bb304d62266fc7e94e8dd
BLAKE2b-256 bd22a5dacf6d5d976850bf7c62b8c1ef7f1a56a56421962f081bc421ab8eb952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4926e699a42c526137724960fa4303ecb0b542186b11d3705ac84414a896508
MD5 4405b9f666ff25979fdeb812986e9382
BLAKE2b-256 c7c91561ab033f35bbccaca4f07360b6c446eb2726ab03754fbb5506e2d3fe89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8159c5bd8f25b0ca0ce30f21e7a732a2bdfb4adb81b9c8ea1ca75339d8ec8398
MD5 ef96d475435878864feb44d434461cde
BLAKE2b-256 445acddfbdf30d23edd6484aa022f5e329eaecced2ead27cc2c01a05065d3e2d

See more details on using hashes here.

File details

Details for the file oracledb-4.0.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7156ef112a901967b3ee89b6c582bafc5a3082c47ca566de1a79e9ac3b48da32
MD5 0832511f6394a374680fd10bab8056d3
BLAKE2b-256 c6ba14b9112c3f81c2b26cdd16748a5317263db1227e363bd29491d3291ad6e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 032ca4f558b05f03fa1bef1b04e59ec350ae0b22e6d85c47f4ac62ae98315823
MD5 94a68aac58a28d5b52d37f37e7125df7
BLAKE2b-256 1487541fec6a6e37b74cd113007927e9caced188cf262f6015e88732651b7cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 cb7727f93ff962ab826bc3d0bca4b0e5bf45ecb7c525551c70c9e094f0f27027
MD5 cff160046f64427309ff503901657c2d
BLAKE2b-256 e6c1e31ea17105b037b8b637a0e2936fc3cab65f87098c79df50fdf443a0ca6e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-4.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 20a10f903c8da59e9689a98bd68012f78fa19bed950ad9f19cd8f5b8b97e73a0
MD5 b50facc4be5c8d75c1e25e9255ca5bd2
BLAKE2b-256 fdd86995a755dbdeee1eab1a6cb77283e3ab6634631512c47e2c3a64efcb515f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a029dcee759bca56a8c95e952040c3d3f57e5ec05965355293b21930a66967fb
MD5 8c927f5165c1b4be439fc17804f358a0
BLAKE2b-256 b9739305fa2755b234352e29dd5ed6063d017a661ccb08c06da5e14db90b143d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 86ac65cbc8d29626b1d9d203f9151566c26a78e55bdfc030c06169ae8017f458
MD5 096c124c9bf10150bd0c7f15e6e6b5c0
BLAKE2b-256 975c553afdf90a144e25c5ee9825fbbc0c88d52bcf2b1dd7c5b509cad1022a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e36581bb10e719d928dad12018c2d42606db2c34f49d6665b06f701f049255f0
MD5 c340fdc83c63d39bde10c2788e3481b7
BLAKE2b-256 487d6eea9e9ffece7d270a7d3caf364b5033fa8c73a0f377c10750eca8760a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e13ff1e6f28fdb863180d23fa94cb42c619c29d2981e24992431e51b97caa54
MD5 5af5eb436f8d2b5c95a1b243d46e6346
BLAKE2b-256 1f7950cb8f7a3bc7ef9edc61db5fbf0ee2af9a4f487f4967eb54cc9f330ea908

See more details on using hashes here.

File details

Details for the file oracledb-4.0.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b42725337f80d433a3bd2928c08667e5b89da9ce05cf9ae3a4189c4fc4805ea
MD5 6eafbd670092a4e9dd4ce7635c0b5dd2
BLAKE2b-256 db1e48af5b2c559ee2fbee2ad13372858f34f2260cd9727b8ccad6cbe26e09b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae894ca2705929eb0ac228329336fd03388ad6e3b54002be6f5d4400a8feaf52
MD5 9b70788bce97a3e4d1148ce63701fe2e
BLAKE2b-256 aec37aaf12fe0f8b8323bce4647762722268da6b3b04ab1ff2349e4b43d30515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 443b2f03461e873ccd73dff3d8541fcf974c05e13e296a6687ffbb0c4a72c0a1
MD5 8e6d41408f775feec4ebc627b7b4b453
BLAKE2b-256 e352c95031186ddec3788ee72708df406a6b7bafa308bd04722b7d5857942366

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-4.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 10204432f0eea8707a79c75bdccb84071e43fd19c658cb3b34d1746b12c6e7fe
MD5 50c31c5249432d7b4ad98d449cad9a64
BLAKE2b-256 dd9570420ebc1f051cff48cffb48f720540446d3fc497f7d9ba6f2e63337cb3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 523b3356cde9d588ba250cefafdfc34869233d65c179f805ea6e4d3d6b209a7f
MD5 682d259bcf4543833dca94bdd037f7cc
BLAKE2b-256 dd663d2246e5473b85c61d4b206ea9fcf50619db6b60a1425e34a3a1c1f64c44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8fcad6d9628923281bf21e48a391ac2f87ec6950dc63381d8fea470e3128aef0
MD5 1caf894d2418568603d52d82b8b08155
BLAKE2b-256 7c7a4506477b52bb2db61a114202beab19bf24859f9fdc0979b8031042582477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b73820521eccd290506af94e1ffb9a8a5941b4018e3861df9b040652a7cef123
MD5 8e5f924df9b4f65aae8f3444a57d9415
BLAKE2b-256 211d4ec3ef256633126b669b99bf14e1c2af264ecb25c28f80f5365ea279c39a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7cd278d59780e22e0a7451d208460756d779dc62b55bdbd95652f9640fbf8c3
MD5 c91d8455d4b505999167cf84d5b766ae
BLAKE2b-256 5871ebeade4753fd20b6d9cc7568c3853bec44425f24982def220835544008ca

See more details on using hashes here.

File details

Details for the file oracledb-4.0.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2d394453f669858bec942ff0da18b6ebade296ece823d582ad2b464ed5c6c90
MD5 18b9244b4365b8cc915ed833ccd8788d
BLAKE2b-256 805498fac98c9c1e2461512dcad81d2bd491fb7fe779d5044614867b2e827a78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf61e42b9ef723dbdd0b23032b695e872009ed7341003df59d9a97cd960df977
MD5 f905e46eaff1c11be1947638044d94a8
BLAKE2b-256 d8bd2ee10e0bd4d7a44db68a3f10d8941a5ea762bdb9dcff9b37739b2554e011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c05a01d6ad610a88c2aa1a43b1dc0a8485f5fbd4374d2b36908859d4205de192
MD5 67206a065b749187ee8a2228bb99ddb5
BLAKE2b-256 531a237ddaa33fe9576e1bb1ee9008eba2269fe49dee974a581465589eac658e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-4.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 90586b3c7729b9cf3d40df902e81257f01e15e3408d8b6b9dbf91e939b64f72c
MD5 bcc3b29e67c15098bc3da4ea281e4af9
BLAKE2b-256 2db5079fe8aa90cb769c68a54dde7591b374c64260d3d448c086acf4585cb8fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3b5ef1676a27b7e0a7ec55be27fd8f6d28d1601f5e8dfdae78705909f25b7c0a
MD5 55fb95af5ad46e8e46a208aa324b038e
BLAKE2b-256 20887304ff7d512f45d6804501e404ceb7e567eb15661cd7d06c9ffaa6025cb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 08e84a6af1b6e5921dba088dd9fc0738927206eafe5ce9763c34195f87556849
MD5 fd88cb5166bfd3eb4e458c2cbff11986
BLAKE2b-256 7922d4639df519c7cca02f45b3404c9e7934970f50a0296f704be7b1805b1ce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b09eec35681d72c9476e6d715b89bb775724a31e7363df6beba7470494ea8040
MD5 f3af3d5d11a111e763435da88e876911
BLAKE2b-256 be5c35b60bb1c85be5607913a24467052d6496eed9493793989de2a6b9b71147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 873fcca53306e2b3b445a7d657cddc19e415a7aa7e392c473dfd1a3ae3970989
MD5 d418c0bff89f442d1f5ed49d8a5fe23a
BLAKE2b-256 44f5824b419dc3758c86ddcb1d8f69d1e7957882e58e99a3907a45a063ed0878

See more details on using hashes here.

File details

Details for the file oracledb-4.0.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce6319ee01dcbb4d74f0e2a5794c6a566f339958ecac9830c67c7070521620e2
MD5 82fe150c379cd7572dc8703277b5d1a7
BLAKE2b-256 084eeaab1183a2ba63e7f8673e3305f5382488c773d8f51d9a705e90d8b8b3e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 416b324cd7715073cf5f3d577330387ffd59741463995c25bdc2d82b3e80b88e
MD5 14ccd48352fd702101dc0ed94084d1e7
BLAKE2b-256 0fe68ad2592ae4d5657882b900bad1b1286f1b29befa0f418df8550d8f7defd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 86a06d0afb3bb3a24bace0e72fb9abca2093efe0fa3457c65c13ba4eb5000b0b
MD5 5c7d348bb96fe46ed192ed15f8b0eefd
BLAKE2b-256 8846f38813e076a43cfa632db2b80761c0b1aa1c85dca7b89720d4984b3b2e17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03afeda85bec3eca983ebf3ad9910d0f217d99300258366d287e015a041d6c13
MD5 509c61865e1c32c50f51485245769973
BLAKE2b-256 b94ad14ac7ed4e2f87f77807eaed88d8a2e787219407f170e80546cbebc466dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7db5a43c29a23ed23923a29816c65c7a81fe00f2abfe6bf36d83ad952abd9b89
MD5 e37f112559dbde683c2033e74be13c8e
BLAKE2b-256 4fc10e02cc9f84b92a2fc8cbcb48be22b43076c511392b6ec36795e8a9ebc424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce3f25552fe58df5c266874f8b13f0a8ab7fcd09ab4b476bc15520a67527ca4b
MD5 6c82c4790f1643fb0a04900c7b2ac2ca
BLAKE2b-256 09ef21049e705a5dbac0011e647a4dcaf1746a501e8e19da98bd1674b21206d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73ba32597fe1da72e0824aaa4b1900ec08a3b77268cb4eb45c733ae7e7043e70
MD5 265a286e693b423a9d92f94fcf257a66
BLAKE2b-256 01985dec7011c2c26c8c3c2f9ea76783e2bc6cd6ad5f0489782f9cf4637e733f

See more details on using hashes here.

File details

Details for the file oracledb-4.0.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29ae0ff517a3241060eeee15a321b710c3f83a688cf2da7d5729adbe212e2b00
MD5 9ed91951c18e66640c1be2555a564527
BLAKE2b-256 feb6d6df13f297ccf64396867da84bed8529e2c1755839207746e5ac2cc6abc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3d54b624748cfe42248c4bc62c3f788632a2077058485a9acb3150312b1c396
MD5 1b4b067fbd91031164f013e55fb1f837
BLAKE2b-256 dbda849e06ddd29f5d8807ba9fb93ebdf210958273eeb12ca08f72d9f07f87cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dbe8b44fea57385617838f2acfce8cc19f6c95cd9e65e7235e86b5932af1acd9
MD5 ed91591eaae109e3fb2bd194910fccdc
BLAKE2b-256 4f4ed1a16f398963eb41a6a1024030bf6c5ead34df2f9e558fbf24759effa703

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d132af7d95474d207632363575c7968b09e2d33dd24af3a36f539254433f4ae8
MD5 bbbd1648cf638f91baa9628348b73265
BLAKE2b-256 6d2a5182cebd444d32b0a359c75dd28626f626b9edaf64b6f6718634dbd36d3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: oracledb-4.0.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5646c126d4ab506ee2bda261e792f0036231ee929296057e79857ec678d86d4f
MD5 7337866cb41add8ffebd1a64e3379b61
BLAKE2b-256 4f699c9308c4ab4263c1dd775f383a8076d08c113c45f8039ac8eee4e71a0f2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c24b174aac8163065736072a726a50091791f6d30ac5c44965cf7044e86fbaf8
MD5 06a6e86c0d99cd669598da4d8ed7bc06
BLAKE2b-256 e5de91359ab8df8ccfc0feee33f2a1cc427c44d6110b7e7bd94c476d898320c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5332a4499d61c3cd659ed09bbd0d3c9a4c74a70bd51136d5c3de9127dc6d7434
MD5 e8840ba2064873165f5ebdb1482f91fb
BLAKE2b-256 9e39de4a5aa506401f762901c564372d0e332e3062c7dfe68e01fbaaf9307626

See more details on using hashes here.

File details

Details for the file oracledb-4.0.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f521b3f3f14fa9b8e748aeb79b064ae6767fcb0e8ff969a9aba7a852f059658
MD5 87de653eb3c36dd050a6588d8c951b55
BLAKE2b-256 f9c09a73e030dacacce939c53ab330d563ebf83dc0645269e6796fcf28817ec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7bbe5611f9196f0ec15d4bf838ec728d89586a962a20d65cad898aec020e11c4
MD5 d16a808b328e0698a21b13a651bba0ba
BLAKE2b-256 32234751bbbf72498e5252a4d1d69f58d6f9e60c23725be2bca090ad5a8da205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-4.0.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 828dd4c981b286f0467feab1c035fae8d3888cfdc707706841734821877ae1f3
MD5 14af30edfddb9db5c9b4972f64585e61
BLAKE2b-256 46bedd8c0a18d496b11f565cced00bf4a0a20a7565ad056c677e53ca8bd26fd9

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