Skip to main content

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.10 through 3.15.

    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.

Download files

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

Source Distribution

oracledb-26.0.0.tar.gz (912.2 kB view details)

Uploaded Source

Built Distributions

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

oracledb-26.0.0-cp315-cp315-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.15Windows ARM64

oracledb-26.0.0-cp315-cp315-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.15Windows x86-64

oracledb-26.0.0-cp315-cp315-win32.whl (1.6 MB view details)

Uploaded CPython 3.15Windows x86

oracledb-26.0.0-cp315-cp315-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

oracledb-26.0.0-cp315-cp315-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

oracledb-26.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

oracledb-26.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

oracledb-26.0.0-cp315-cp315-macosx_10_15_universal2.whl (5.0 MB view details)

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

oracledb-26.0.0-cp314-cp314-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows ARM64

oracledb-26.0.0-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

oracledb-26.0.0-cp314-cp314-win32.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86

oracledb-26.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

oracledb-26.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

oracledb-26.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

oracledb-26.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

oracledb-26.0.0-cp314-cp314-macosx_10_15_universal2.whl (5.0 MB view details)

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

oracledb-26.0.0-cp313-cp313-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows ARM64

oracledb-26.0.0-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

oracledb-26.0.0-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

oracledb-26.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

oracledb-26.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oracledb-26.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

oracledb-26.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

oracledb-26.0.0-cp313-cp313-macosx_10_13_universal2.whl (4.9 MB view details)

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

oracledb-26.0.0-cp312-cp312-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows ARM64

oracledb-26.0.0-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

oracledb-26.0.0-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

oracledb-26.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

oracledb-26.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oracledb-26.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

oracledb-26.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

oracledb-26.0.0-cp312-cp312-macosx_10_13_universal2.whl (4.9 MB view details)

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

oracledb-26.0.0-cp311-cp311-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows ARM64

oracledb-26.0.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

oracledb-26.0.0-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

oracledb-26.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

oracledb-26.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oracledb-26.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

oracledb-26.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

oracledb-26.0.0-cp311-cp311-macosx_10_9_universal2.whl (4.8 MB view details)

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

oracledb-26.0.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

oracledb-26.0.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

oracledb-26.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

oracledb-26.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

oracledb-26.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

oracledb-26.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

oracledb-26.0.0-cp310-cp310-macosx_10_9_universal2.whl (4.9 MB view details)

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

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0.tar.gz
Algorithm Hash digest
SHA256 d15728bae7546984203ae17f8296153d52d10ffdaf4929bebe46b70d5819d270
MD5 9018e2b57e85b6146b84c8452cdf6f9c
BLAKE2b-256 ad0f7eefd0e10328d94109180a877f9f1297b8b8dcc80f0bcccb0b0efea2ca9b

See more details on using hashes here.

File details

Details for the file oracledb-26.0.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: oracledb-26.0.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.7

File hashes

Hashes for oracledb-26.0.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 0fae924f6d07d33dbf267f52d686b0eeb79640853b749cdce1da513241eed1da
MD5 fef21de796fa2548b915e99770d907af
BLAKE2b-256 f8fb48be38127faacd006c28ac2773cc1dbe41f42f89a38e79c8ec217bfba595

See more details on using hashes here.

File details

Details for the file oracledb-26.0.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: oracledb-26.0.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.7

File hashes

Hashes for oracledb-26.0.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 90794a9ba26ee6a6ccfaf47ae88b5d1bfe3b6192e3591fa6c0851f9ee9cabc7d
MD5 7d9e42c7098e0c00908730c431cbf330
BLAKE2b-256 d97da3b51eefaaedbb49d23ea437d019d7eafcd2e65249be9090c1223543cb45

See more details on using hashes here.

File details

Details for the file oracledb-26.0.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: oracledb-26.0.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.7

File hashes

Hashes for oracledb-26.0.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 64a9d42dbea41c1f0d45e890b57404e5fc1b1dfeb3c0939128ecaddac9eaacd6
MD5 e99c5bf66fc422d6f120981bc4554ef6
BLAKE2b-256 b2b06c8af7bd9216ec55ba67a38ce6e10fd05fd399f884792d1b20e45efb3820

See more details on using hashes here.

File details

Details for the file oracledb-26.0.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-26.0.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 262dacf9d90450e29f971ae68a8bcb81edad94194628c3f2d1afa50ec8b42140
MD5 c83e19c41ffa0276224bc041e26c312a
BLAKE2b-256 51de6c8bfa247a9825b5511bca1e329468e3bb583f440d848b924e44eaedf594

See more details on using hashes here.

File details

Details for the file oracledb-26.0.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-26.0.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 342a63514e59bc0860c0050bf9be56d0220ae3b0bd32a0e4d22a86dec532bc78
MD5 1d85023d90aee67ff0c61e7f00261bb0
BLAKE2b-256 3cbbfe2035571ac695c80db6b5fcd8b2b18b0f9b8e20c913261b8f756876fc93

See more details on using hashes here.

File details

Details for the file oracledb-26.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oracledb-26.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ab05b254671ae1d12a3699f3cd9b9d28a6fba19db0e82842c38ea3bf587f9a1
MD5 d7f80e9f209998be9bb19d74f51d6882
BLAKE2b-256 c1ccf202034fe4c8ecce3eac980b9f1c6bbd4e460bf660c2c248e22e56b84339

See more details on using hashes here.

File details

Details for the file oracledb-26.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for oracledb-26.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98a38d5a82ae587f5d8dbe7c624eb59380fe5bb761c39ac7529cc6c5eafd83c8
MD5 950d6bfc4f3430e0af0a8973943a9b32
BLAKE2b-256 cbb4f1c3dae696a146b072332dd5bd8149e5d384a6089cf592dff2fe54aa6b50

See more details on using hashes here.

File details

Details for the file oracledb-26.0.0-cp315-cp315-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for oracledb-26.0.0-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 02b725959a714a911d0b03264d825ad9e631c68c9601e4d753b207e2245ce13d
MD5 ef17e8a123eabc9506658c9228d697d0
BLAKE2b-256 ccff44dd56f1f6f93f5d8efbfd6cf82235357d8408d36706664f46b8ccb57302

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3a77c5ab67ec3b2e2953bcca2b9fa31491b94c9985e02861e306e01ddc61737d
MD5 1cbfd8c8432b0a70bb8c330f4c76afa3
BLAKE2b-256 f601399c6267811e38f0ac74c1a048ec1588431dcf80306392cf9da656f65f1c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7a92c2b002abf425078269c9d7db8544458c5dc6b59affb5a21ff075315d9468
MD5 bf0f5a5094af1039b9d4c0d7e130e1cb
BLAKE2b-256 d4acc03f4fda9bda88fb694ccac78e6894331928d8b5c1244c34e8678cf644f5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ada309ac4a5f23f98d6b74627d1508f5fa47ad3a681fe42c7769d7ade281d04d
MD5 caf75c673adac74636326e91633da20c
BLAKE2b-256 1d80cc0eeb56900792f6135d423b69133f2186869ccb9f998ab0d4eb2a5f2a8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4779752a3ea31558088a306d346964ef4107f8589266ce625651066f80972e7
MD5 6939dfcb6d87f6788ba8c8b71d0f3525
BLAKE2b-256 f49ab634a2afc9dd025d93f25843a91a368a7726134b73999c55acc804b47f71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa365bb1f9016d1a688af06dd021481d63d49be00f4e5dc91cf7370d4a2adef8
MD5 144302155ecf3911a53033da8c4c3c29
BLAKE2b-256 b7019d114dade656c6f4477ebdd1a1e3c3310ca675c6ae2af59b4fe466f58c33

See more details on using hashes here.

File details

Details for the file oracledb-26.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-26.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4380a300f4094efe0282f9990929b9189a8e1aa52677d023dd9bdeb0163948e1
MD5 44ca47267c6f79d0e89bf98e595ec953
BLAKE2b-256 25303b913e044b04c72608cf00dc11c382ed8c3c11bf30114862adf0b0301e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d24dfacbff11a4b3c15b72b446a56b8f83a4a4013ed694ab2719c79227dc81a
MD5 509220d4e53da0bb72f070aee9bd4d89
BLAKE2b-256 e103af2b24c0c099db043bc567d268adf194aa6db1f7867b9798932da5e8981d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 79b612ae836b2182d4c980e1670eb1b689cbe8a68fe5002104dc410fbe16e568
MD5 08ec39dc26ab368aacaffb1290dd719e
BLAKE2b-256 1bad72720d3a3066e0202deb4a4fb0640aa93c661ee0af486a23f4b8a5e92f4f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 85c775fd2b9f93c2a6ff48cabc2be307ba9fa951b7556e5149dc2ee62c1fbfbe
MD5 8d3b322822559e982986314038977f8f
BLAKE2b-256 5fdc1a5bd6233d3de25be8efe48c96077078e7cf940154096dea789e17c8af88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 747ec61dc933db33db4814b24c8cf0a57c7583482ca444b124e44c910f25bd54
MD5 d92302f9889f32cc1227f81e9bd2e986
BLAKE2b-256 3e1a7410ebf575438e2439827dc38be3851640b4406f880e69f78d92141892bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d82d5cea25884ab76db46173e1469588093f35e066a3e972abf1a6a91775edec
MD5 83daa5b99d81d66f2ab615b9ae03e1d4
BLAKE2b-256 eafef4c5825ccd7e8c221dad1d16405e02fb57cf7f965837ff74715fc865cbe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 184869bbb43a1b074e4783b0da5b1793681e3129f4b02c305ad1ba4c6f931621
MD5 b5b4355be3ea5b66b4bbea42fe0be2fe
BLAKE2b-256 2a7882fd386fcc679eae6f65b2866ea96d8b06ae0eecf17b176f847e8ece9aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65275fc0f3e2c8f52549b6b8099d6eb5efe4748e6d62d4bd07bc3b006044aa60
MD5 5f8721f11412ac5a6843a13b711d47ce
BLAKE2b-256 4409db87288a174b1b03d36de305e96801f808e740d7986db96624ab5541c4eb

See more details on using hashes here.

File details

Details for the file oracledb-26.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-26.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 587acb63db873dc9784284e02b8c690730289255791bfa1e1ca70cbad50ac130
MD5 1814d112c2836bc2f5ce7ecabe0dadfe
BLAKE2b-256 fe561bc5d3061ba4d35a70489757d2308865490b0a9abc5116cddfdf19954030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26b9934aa9a2c431e9e3126b524a8154b78f1f3a12c258a9e7ee311b78135a78
MD5 0b3f9720bcdba0a6602e6f728764edaa
BLAKE2b-256 c574f689dffb9abd3f008f081795677658ce7750371f4ec8718c78663648c19f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f69bafe46bf854c70f19e2f1d068c1b9f3d3066ff79cf90354e0adfeafac1b08
MD5 fc212c39a853d7254688238fefc2d7e0
BLAKE2b-256 52090c388ff9bf418abad68f492780d3cef8a33ca8a109ccdc71ff0e06344319

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 893c01a3bbe1facd131aade9889fb54e074b10828b85ee93959da29179e2f238
MD5 76a8d073a83f736a07231fbeb71cb87f
BLAKE2b-256 4f279cf1f98e23726e54fefde3cca7a55dcfdd96c7033410250ebb750980a9bb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 90fc434182b6d8fe1b131c97a66cc6d1d002def733c62db88c7bf1cd79182d50
MD5 4d52f5b50f3bba646ba8c5b1a9eb717f
BLAKE2b-256 1e23f913842954516c148a3fac9a42c8c3c47f9410efcc5ccb231a5fe202466f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d87e7603dcb6f7fcdeed9d6a210142070dbb5b4597e819c60ad25f1ff126da6c
MD5 fc9fb442d6658645797709f0b6866b4d
BLAKE2b-256 79a525647561fd8889c373753d10dbfbb95961db89ccf1b3c3ecc9704d9728e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf3e22f2ee97d664033de509219439838b5df92a05673c21029d06fb3b9fc496
MD5 dd7d03d8bb3b8c850602a2ed242d3c32
BLAKE2b-256 610a626d27278e97dbc963f3f7fe652d47a4519cb56bfc4e03e981bb468c4a8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c41cf87895246062fecfabbcd0fc035fd859b2fb908c0199f3dff2b3016dab48
MD5 3111bc3fdb049514573cd9a044bb9faa
BLAKE2b-256 276e3f71a580e73fc9ead3bf43b3f26f30cb0fe07cbd0698887706dcd5b8346a

See more details on using hashes here.

File details

Details for the file oracledb-26.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-26.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6b5fe7cfddf99544b2e3c63fae588cb73e9545dc776a059711e34d2d734edbf
MD5 23619d0c4b85d9b36a89fa0f0e1620dd
BLAKE2b-256 7a72263fdf667c1963bcf393901719ed546342f1338daa8a4d236bef09cc5ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 838f5dce05c359ff0adf3656bc906b63ac3aaecf6c794860e93bd5ab0e2acdb9
MD5 5349ae8e81a44f57239c251d3847de50
BLAKE2b-256 12d4b221f2cf61af8a4a52a62a02d0857af548410897c9ae8de9d00ea26c3a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7b325e2662be477f36360284c96b22405ba2f6bd398c028e163aa335c89264c4
MD5 19850b46e2c19dcafa04c7f4cd454f4b
BLAKE2b-256 ef401e165629d4b474b7cdf8013e3e093e91e2fe0f60583e96658b7391d8dde2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 06982164e3babab2f54ad4d72fcd5f613d112aa8c53c9ad363ff7e1d32a957c2
MD5 c8cdefd46f11c762e00318f7ac029994
BLAKE2b-256 684b183713888f90a443545f75481029f16340ad8fb1c0488983a49a9ecc4a18

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 072690413f6b55833e669e49cae6e03ad2561156134caa1e9cdaa5b8f8951b44
MD5 149cd5e76b418ba8d615bce104343a46
BLAKE2b-256 802d1b3d8c9acbb457f2dc0f3ef5240fc914ad8a415370d6cf09c0d8f350cfc2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7ee2b1e15b9d6705ef5f37905bac86a687185c572306258111f18f499309d7ca
MD5 1ee10f32b663b29f9978a12e531b89f1
BLAKE2b-256 fef5fb0073a726b3197b750cd5d6d15b6c4ffadb966e022077047f1d9984f923

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b354e525956110327a31c41da6bbc7539d27dafc39dc192f174628678c8d44f3
MD5 a134a7dc9054838af133913620f1a77d
BLAKE2b-256 2231a372a82ac857b096956a3240e365dedfa03fca33ba7ba31015521f1a78bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1991536b651dd78ae63c342a0cfbfbe4140f2440ee9eba6651e442593b1090f
MD5 21acbc984336afdc8c3ff99fd36a0488
BLAKE2b-256 40b5937b6266cc3eb6c0968cf24d9a86607ac239dd00db4cd37d3fa1cc24b89f

See more details on using hashes here.

File details

Details for the file oracledb-26.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-26.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 716925cd532bfd1880bd91484ee2cc47a0dfddd229a8f8bb9d60cc18454883aa
MD5 660cc1fc0eb0406ef77d58441afcfe29
BLAKE2b-256 105f64eb9038abb8d0a5c36388f0ad1816c4a08d9bf49d3c4cf8a7dd96404738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9614f8e6c71e663d9d854283e2db2afe36713623ded4caca34ae037bc5b3ee73
MD5 e91e94349807e5e116fd9679cf9184df
BLAKE2b-256 d66effde2b32698d730e74391543af5d9cd5db794f98fe6892df60a7e8161d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fac7a7312cf847849b43351c8cda7f5e7f847f27fa46ac8f3c81d82935c0b621
MD5 c8e734e880aa6ff8d2b9b18c111f798d
BLAKE2b-256 5f1f26c437e62cbe3fb75b3fc0c1b522677ae4783255b76b85a9c95ba8760411

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3c7ec25379f1daf011b0c8be5cc435ff9d12e4a8daafbc5802e599b75d302209
MD5 0a2162169489d16d1073af83e55d9e14
BLAKE2b-256 07f848a119b8a959c5a5de846922f9e5a1b4d398ee82ee3860c5923a02f07c40

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for oracledb-26.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 661c4d85e80d7bc2142d035ddf7135aaec73202173c3450f5325f7765eb0cbc2
MD5 e8d21bae3b40df0aa19f5fc904de316d
BLAKE2b-256 231445b9db2f6b3813cc478c33bdfa63d3fc1e31f30e968afe310635429a256d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e327ab743ba2ba0ac3edbd56a3aa8f12a926581de6fc1b4141a4138d371ab648
MD5 d5dd9d9173d593f58fa0c93132b0a14c
BLAKE2b-256 abfb7573b740839787e189aeaf8d9714b21ee343ca4b149d5d71b36a90cc8544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7870e922b9b2800e72632d233464789c9812274954ba911fd7dfeb1fa9456899
MD5 6b9306a9ebd26ef58a43b44f53b2a375
BLAKE2b-256 4fbea6a6f1886e2671b2d2ec91ca8513bcfe3985900eb9ba3560447d18644759

See more details on using hashes here.

File details

Details for the file oracledb-26.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-26.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dea8e181062c367db459627389a4956fa2ca19a36bdfdbee87e6b6442984e12e
MD5 d5f8af5b5d60bccf17ebd642e594d6e5
BLAKE2b-256 deecd374aeddb7e0765d9cf6af73c55f0ed2b5a72a0df5e8f3f50682d7e35ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99c2f2cf2d2aaa4e4346a2aff01782b94cb156313eb0df467d9b0d196ff6bb26
MD5 4389c6cf380e7e1cfb1b30f8f7043577
BLAKE2b-256 34cb5ad3048d9982c9b588f63cf20a4537cf9b7124918f541f6c5b502fe1c961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for oracledb-26.0.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7c4c76a3b29c5c457c9db4114b715bafd4d2af6b3d3c050bbc3aebc63b597421
MD5 473ea8bededccd83be37c8f054a255d9
BLAKE2b-256 5d13fac2cdc973071741cd9140e83445eca1e38d63820fb53e48d6bb031e8cff

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

26.0.0 This release

48 files

4.0.2

47 files

4.0.1

47 files

4.0.0

31 files

3.4.2

31 files

3.4.1

31 files

3.4.0

31 files

3.3.0

31 files

3.2.0

26 files

3.1.1

26 files

3.1.0

26 files

3.0.0

31 files

2.5.1

31 files

2.5.0

31 files

2.4.1

31 files

2.4.0

31 files

2.3.0

31 files

2.2.1

31 files

2.2.0

31 files

2.1.2

31 files

2.1.1

31 files

2.1.0

31 files

2.0.1

31 files

2.0.0

31 files

1.4.2

33 files

1.4.1

28 files

1.4.0

28 files

1.3.2

28 files

1.3.1

28 files

1.3.0

28 files

1.2.2

28 files

1.2.1

28 files

1.2.0

28 files

1.1.1

23 files

1.1.0

23 files

1.0.3

23 files

1.0.2

23 files

1.0.1

18 files

1.0.0

17 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page