oracledb


Nameoracledb JSON
Version 3.3.0 PyPI version JSON
download
home_pageNone
SummaryPython interface to Oracle Database
upload_time2025-07-29 22:34:10
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords oracle database
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # python-oracledb

Python-oracledb is an open-source [Python][python] extension module allowing
Python programs to connect to [Oracle Database][oracledb]. The module conforms
to the [Python Database API 2.0 specification][pep249] with a considerable
number of additions and a couple of minor exclusions, see the [feature
list][features]. It is maintained by Oracle.

Python-oracledb is used for executing SQL and PL/SQL; for calling NoSQL-style
document APIs; for working with data frames; for receiving database
notifications and messages; and for starting and stopping the database. It has
features for high availability and security. It is used by many Python
Frameworks, SQL Generators, ORMs, and libraries.

Synchronous and [concurrent][concurrent] coding styles are supported. Database
operations can optionally be [pipelined][pipelining].

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

## Python-oracledb Installation

Run:

```
python -m pip install oracledb --upgrade
```

See [python-oracledb Installation][installation] for details.

## Samples

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

A basic example:

```
import oracledb
import getpass

un = "scott"
cs = "localhost/orclpdb"
# 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][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][instantclient] packages. Python-oracledb can use Oracle Client
  libraries 11.2 through 23ai.

- Oracle Database

  **Thin mode**: Oracle Database 12.1 (or later) is required.

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

## Documentation

See the [python-oracledb Documentation][documentation] and [Release
Notes][relnotes].

## Help

Questions can be asked in [GitHub Discussions][ghdiscussions].

Problem reports can be raised in [GitHub Issues][ghissues].

## Tests

See [/tests][tests]

## Contributing

This project welcomes contributions from the community. Before submitting a
pull request, please [review our contribution guide](./CONTRIBUTING.md).

## Security

Please consult the [security guide](./SECURITY.md) for our responsible security
vulnerability disclosure process.

## License

See [LICENSE][license], [THIRD_PARTY_LICENSES][tplicense], and
[NOTICE][notice].

[python]: https://www.python.org/
[oracledb]: https://www.oracle.com/database/
[instantclient]: https://www.oracle.com/database/technologies/instant-client.html
[pep249]: https://peps.python.org/pep-0249/
[documentation]: http://python-oracledb.readthedocs.io
[relnotes]: https://python-oracledb.readthedocs.io/en/latest/release_notes.html
[license]: https://github.com/oracle/python-oracledb/blob/main/LICENSE.txt
[tplicense]: https://github.com/oracle/python-oracledb/blob/main/THIRD_PARTY_LICENSES.txt
[notice]: https://github.com/oracle/python-oracledb/blob/main/NOTICE.txt
[tutorial]: https://oracle.github.io/python-oracledb/samples/tutorial/Python-and-Oracle-Database-The-New-Wave-of-Scripting.html
[ghdiscussions]: https://github.com/oracle/python-oracledb/discussions
[ghissues]: https://github.com/oracle/python-oracledb/issues
[tests]: https://github.com/oracle/python-oracledb/tree/main/tests
[samples]: https://github.com/oracle/python-oracledb/tree/main/samples
[installation]: https://python-oracledb.readthedocs.io/en/latest/user_guide/installation.html
[features]: https://oracle.github.io/python-oracledb/#features
[concurrent]: https://python-oracledb.readthedocs.io/en/latest/user_guide/asyncio.html
[pipelining]: https://python-oracledb.readthedocs.io/en/latest/user_guide/asyncio.html#pipelining-database-operations
[pypi]: https://pypi.org/project/oracledb

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "oracledb",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "Oracle, database",
    "author": null,
    "author_email": "Anthony Tuininga <anthony.tuininga@oracle.com>",
    "download_url": "https://files.pythonhosted.org/packages/51/c9/fae18fa5d803712d188486f8e86ad4f4e00316793ca19745d7c11092c360/oracledb-3.3.0.tar.gz",
    "platform": null,
    "description": "# python-oracledb\n\nPython-oracledb is an open-source [Python][python] extension module allowing\nPython programs to connect to [Oracle Database][oracledb]. The module conforms\nto the [Python Database API 2.0 specification][pep249] with a considerable\nnumber of additions and a couple of minor exclusions, see the [feature\nlist][features]. It is maintained by Oracle.\n\nPython-oracledb is used for executing SQL and PL/SQL; for calling NoSQL-style\ndocument APIs; for working with data frames; for receiving database\nnotifications and messages; and for starting and stopping the database. It has\nfeatures for high availability and security. It is used by many Python\nFrameworks, SQL Generators, ORMs, and libraries.\n\nSynchronous and [concurrent][concurrent] coding styles are supported. Database\noperations can optionally be [pipelined][pipelining].\n\nPython-oracledb is the successor to the now obsolete cx_Oracle driver.\n\n## Python-oracledb Installation\n\nRun:\n\n```\npython -m pip install oracledb --upgrade\n```\n\nSee [python-oracledb Installation][installation] for details.\n\n## Samples\n\nExamples can be found in the [/samples][samples] directory and the\n[Python and Oracle Database Tutorial][tutorial].\n\nA basic example:\n\n```\nimport oracledb\nimport getpass\n\nun = \"scott\"\ncs = \"localhost/orclpdb\"\n# cs = \"localhost/freepdb1\"   # for Oracle Database Free users\n# cs = \"localhost/orclpdb1\"   # some databases may have this service\npw = getpass.getpass(f\"Enter password for {un}@{cs}: \")\n\nwith oracledb.connect(user=un, password=pw, dsn=cs) as connection:\n    with connection.cursor() as cursor:\n        sql = \"select sysdate from dual\"\n        for r in cursor.execute(sql):\n            print(r)\n```\n\n## Dependencies and Interoperability\n\n- Python versions 3.9 through 3.14.\n\n  Pre-built packages are available on [PyPI][pypi] and other repositories.\n\n  Source code is also available.\n\n  Previous versions of python-oracledb supported older Python versions.\n\n- Oracle Client libraries are *optional*.\n\n  **Thin mode**: By default python-oracledb runs in a 'Thin' mode which\n  connects directly to Oracle Database.\n\n  **Thick mode**: Some advanced Oracle Database functionality is currently only\n  available when optional Oracle Client libraries are loaded by\n  python-oracledb.  Libraries are available in the free [Oracle Instant\n  Client][instantclient] packages. Python-oracledb can use Oracle Client\n  libraries 11.2 through 23ai.\n\n- Oracle Database\n\n  **Thin mode**: Oracle Database 12.1 (or later) is required.\n\n  **Thick mode**: Oracle Database 9.2 (or later) is required, depending on the\n  Oracle Client library version.  Oracle Database's standard client-server\n  version interoperability allows connection to both older and newer\n  databases. For example when python-oracledb uses Oracle Client 19c libraries,\n  then it can connect to Oracle Database 11.2 or later.\n\n## Documentation\n\nSee the [python-oracledb Documentation][documentation] and [Release\nNotes][relnotes].\n\n## Help\n\nQuestions can be asked in [GitHub Discussions][ghdiscussions].\n\nProblem reports can be raised in [GitHub Issues][ghissues].\n\n## Tests\n\nSee [/tests][tests]\n\n## Contributing\n\nThis project welcomes contributions from the community. Before submitting a\npull request, please [review our contribution guide](./CONTRIBUTING.md).\n\n## Security\n\nPlease consult the [security guide](./SECURITY.md) for our responsible security\nvulnerability disclosure process.\n\n## License\n\nSee [LICENSE][license], [THIRD_PARTY_LICENSES][tplicense], and\n[NOTICE][notice].\n\n[python]: https://www.python.org/\n[oracledb]: https://www.oracle.com/database/\n[instantclient]: https://www.oracle.com/database/technologies/instant-client.html\n[pep249]: https://peps.python.org/pep-0249/\n[documentation]: http://python-oracledb.readthedocs.io\n[relnotes]: https://python-oracledb.readthedocs.io/en/latest/release_notes.html\n[license]: https://github.com/oracle/python-oracledb/blob/main/LICENSE.txt\n[tplicense]: https://github.com/oracle/python-oracledb/blob/main/THIRD_PARTY_LICENSES.txt\n[notice]: https://github.com/oracle/python-oracledb/blob/main/NOTICE.txt\n[tutorial]: https://oracle.github.io/python-oracledb/samples/tutorial/Python-and-Oracle-Database-The-New-Wave-of-Scripting.html\n[ghdiscussions]: https://github.com/oracle/python-oracledb/discussions\n[ghissues]: https://github.com/oracle/python-oracledb/issues\n[tests]: https://github.com/oracle/python-oracledb/tree/main/tests\n[samples]: https://github.com/oracle/python-oracledb/tree/main/samples\n[installation]: https://python-oracledb.readthedocs.io/en/latest/user_guide/installation.html\n[features]: https://oracle.github.io/python-oracledb/#features\n[concurrent]: https://python-oracledb.readthedocs.io/en/latest/user_guide/asyncio.html\n[pipelining]: https://python-oracledb.readthedocs.io/en/latest/user_guide/asyncio.html#pipelining-database-operations\n[pypi]: https://pypi.org/project/oracledb\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python interface to Oracle Database",
    "version": "3.3.0",
    "project_urls": {
        "Documentation": "http://python-oracledb.readthedocs.io",
        "Homepage": "https://oracle.github.io/python-oracledb",
        "Installation": "https://python-oracledb.readthedocs.io/en/latest/user_guide/installation.html",
        "Issues": "https://github.com/oracle/python-oracledb/issues",
        "Release Notes": "https://python-oracledb.readthedocs.io/en/latest/release_notes.html",
        "Samples": "https://github.com/oracle/python-oracledb/tree/main/samples",
        "Source": "https://github.com/oracle/python-oracledb"
    },
    "split_keywords": [
        "oracle",
        " database"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e4b83157e8cf02049aae2529736c5080fce8322251cd590c911c11321190391",
                "md5": "4a8736d65380de0c809ec22b995133f0",
                "sha256": "7e9b52231f34349165dd9a70fe7ce20bc4d6b4ee1233462937fad79396bb1af6"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4a8736d65380de0c809ec22b995133f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3909356,
            "upload_time": "2025-07-29T22:34:18",
            "upload_time_iso_8601": "2025-07-29T22:34:18.020525Z",
            "url": "https://files.pythonhosted.org/packages/3e/4b/83157e8cf02049aae2529736c5080fce8322251cd590c911c11321190391/oracledb-3.3.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afbffb5fb7f53a2c5894b85a82fde274decf3482eb0a67b4e9d6975091c6e32b",
                "md5": "2644368c6c1fa53d4693ea5062e82799",
                "sha256": "3e9e3da89174461ceebd3401817b4020b3812bfa221fcd6419bfec877972a890"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2644368c6c1fa53d4693ea5062e82799",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2406423,
            "upload_time": "2025-07-29T22:34:20",
            "upload_time_iso_8601": "2025-07-29T22:34:20.185224Z",
            "url": "https://files.pythonhosted.org/packages/af/bf/fb5fb7f53a2c5894b85a82fde274decf3482eb0a67b4e9d6975091c6e32b/oracledb-3.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4870a482f98efa91f5c46b17d63a8c078d6110a97e97efbb66196b89b82edfa",
                "md5": "d083e22bcd41f31d666cd8f925987403",
                "sha256": "605a58ade4e967bdf61284cc16417a36f42e5778191c702234adf558b799b822"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d083e22bcd41f31d666cd8f925987403",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2597340,
            "upload_time": "2025-07-29T22:34:22",
            "upload_time_iso_8601": "2025-07-29T22:34:22.265885Z",
            "url": "https://files.pythonhosted.org/packages/c4/87/0a482f98efa91f5c46b17d63a8c078d6110a97e97efbb66196b89b82edfa/oracledb-3.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "853c7fb18f461035e2b480265af16a6989878f4eb7781d3c02f2966547aaf4e6",
                "md5": "6601f507fe189e7d55f3f79de1b048d7",
                "sha256": "f449925215cac7e41ce24107db614f49817d0a3032a595f47212bac418b14345"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "6601f507fe189e7d55f3f79de1b048d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1486535,
            "upload_time": "2025-07-29T22:34:24",
            "upload_time_iso_8601": "2025-07-29T22:34:24.122239Z",
            "url": "https://files.pythonhosted.org/packages/85/3c/7fb18f461035e2b480265af16a6989878f4eb7781d3c02f2966547aaf4e6/oracledb-3.3.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b77c65ad5b27608b44ee24f6e1cd54a0dd87b645907c018910b41c57ae65155",
                "md5": "de8d315ccaab8ce6e7da3fee1abcefed",
                "sha256": "58fb5ec16fd5ff49a2bd163e71d09adda73353bde18cea0eae9b2a41affc2a41"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "de8d315ccaab8ce6e7da3fee1abcefed",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1827509,
            "upload_time": "2025-07-29T22:34:25",
            "upload_time_iso_8601": "2025-07-29T22:34:25.939918Z",
            "url": "https://files.pythonhosted.org/packages/1b/77/c65ad5b27608b44ee24f6e1cd54a0dd87b645907c018910b41c57ae65155/oracledb-3.3.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f3595d9a502fdc48ce1ef3a513ebd027488353441e15aa0448619abb3d09d32",
                "md5": "6bf011923ad9269c47dc7ce2712e87d7",
                "sha256": "d9adb74f837838e21898d938e3a725cf73099c65f98b0b34d77146b453e945e0"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "6bf011923ad9269c47dc7ce2712e87d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3963945,
            "upload_time": "2025-07-29T22:34:28",
            "upload_time_iso_8601": "2025-07-29T22:34:28.633935Z",
            "url": "https://files.pythonhosted.org/packages/3f/35/95d9a502fdc48ce1ef3a513ebd027488353441e15aa0448619abb3d09d32/oracledb-3.3.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16a78f1ef447d995bb51d9fdc36356697afeceb603932f16410c12d52b2df1a4",
                "md5": "ef8eb307862a8d5de2646723a6c58208",
                "sha256": "4b063d1007882570f170ebde0f364e78d4a70c8f015735cc900663278b9ceef7"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef8eb307862a8d5de2646723a6c58208",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2449385,
            "upload_time": "2025-07-29T22:34:30",
            "upload_time_iso_8601": "2025-07-29T22:34:30.592752Z",
            "url": "https://files.pythonhosted.org/packages/16/a7/8f1ef447d995bb51d9fdc36356697afeceb603932f16410c12d52b2df1a4/oracledb-3.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3fa6a78480450bc7d256808d0f38ade3385735fb5a90dab662167b4257dcf94",
                "md5": "d4691f034d47ff445c571a268f1ceb6a",
                "sha256": "187728f0a2d161676b8c581a9d8f15d9631a8fea1e628f6d0e9fa2f01280cd22"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4691f034d47ff445c571a268f1ceb6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2634943,
            "upload_time": "2025-07-29T22:34:33",
            "upload_time_iso_8601": "2025-07-29T22:34:33.142112Z",
            "url": "https://files.pythonhosted.org/packages/b3/fa/6a78480450bc7d256808d0f38ade3385735fb5a90dab662167b4257dcf94/oracledb-3.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b90ea32b569a45fb99fac30b96f1ac0fb38b029eeebb78357bc6db4be9dde41",
                "md5": "11aa02d221e624645c2b41b63d6a6e7d",
                "sha256": "920f14314f3402c5ab98f2efc5932e0547e9c0a4ca9338641357f73844e3e2b1"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "11aa02d221e624645c2b41b63d6a6e7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1483549,
            "upload_time": "2025-07-29T22:34:35",
            "upload_time_iso_8601": "2025-07-29T22:34:35.015745Z",
            "url": "https://files.pythonhosted.org/packages/5b/90/ea32b569a45fb99fac30b96f1ac0fb38b029eeebb78357bc6db4be9dde41/oracledb-3.3.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8155ae60f72836eb8531b630299f9ed68df3fe7868c6da16f820a108155a21f9",
                "md5": "4ddd0d3860b5ace654f8223cef103a43",
                "sha256": "825edb97976468db1c7e52c78ba38d75ce7e2b71a2e88f8629bcf02be8e68a8a"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ddd0d3860b5ace654f8223cef103a43",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1834737,
            "upload_time": "2025-07-29T22:34:36",
            "upload_time_iso_8601": "2025-07-29T22:34:36.824560Z",
            "url": "https://files.pythonhosted.org/packages/81/55/ae60f72836eb8531b630299f9ed68df3fe7868c6da16f820a108155a21f9/oracledb-3.3.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08a8f6b7809d70e98e113786d5a6f1294da81c046d2fa901ad656669fc5d7fae",
                "md5": "0a7daceb1b8ce0c3708cbf2947b179f0",
                "sha256": "9d25e37d640872731ac9b73f83cbc5fc4743cd744766bdb250488caf0d7696a8"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "0a7daceb1b8ce0c3708cbf2947b179f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3943512,
            "upload_time": "2025-07-29T22:34:39",
            "upload_time_iso_8601": "2025-07-29T22:34:39.237996Z",
            "url": "https://files.pythonhosted.org/packages/08/a8/f6b7809d70e98e113786d5a6f1294da81c046d2fa901ad656669fc5d7fae/oracledb-3.3.0-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dfb98145ad8991f4864d3de4a911d439e5bc6cdbf14af448f3ab1e846a54210c",
                "md5": "48331384bf48ec03028928783faa28bc",
                "sha256": "b0bf7cdc2b668f939aa364f552861bc7a149d7cd3f3794730d43ef07613b2bf9"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48331384bf48ec03028928783faa28bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2276258,
            "upload_time": "2025-07-29T22:34:41",
            "upload_time_iso_8601": "2025-07-29T22:34:41.547785Z",
            "url": "https://files.pythonhosted.org/packages/df/b9/8145ad8991f4864d3de4a911d439e5bc6cdbf14af448f3ab1e846a54210c/oracledb-3.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56bff65635ad5df17d6e4a2083182750bb136ac663ff0e9996ce59d77d200f60",
                "md5": "dd3e7154f2295d72c11ce26bceb39cb5",
                "sha256": "2fe20540fde64a6987046807ea47af93be918fd70b9766b3eb803c01e6d4202e"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd3e7154f2295d72c11ce26bceb39cb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2458811,
            "upload_time": "2025-07-29T22:34:44",
            "upload_time_iso_8601": "2025-07-29T22:34:44.648822Z",
            "url": "https://files.pythonhosted.org/packages/56/bf/f65635ad5df17d6e4a2083182750bb136ac663ff0e9996ce59d77d200f60/oracledb-3.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d30e0c130b6278c10b0e6cd77a3a1a29a785c083c549676cf701c5d180b8e63",
                "md5": "af7b9adaeca085b05fe3dd7b6d6761b5",
                "sha256": "db080be9345cbf9506ffdaea3c13d5314605355e76d186ec4edfa49960ffb813"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "af7b9adaeca085b05fe3dd7b6d6761b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1445525,
            "upload_time": "2025-07-29T22:34:46",
            "upload_time_iso_8601": "2025-07-29T22:34:46.603412Z",
            "url": "https://files.pythonhosted.org/packages/7d/30/e0c130b6278c10b0e6cd77a3a1a29a785c083c549676cf701c5d180b8e63/oracledb-3.3.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a5c7254f5e1a33a5d6b8bf6813d4f4fdcf5c4166ec8a7af932d987879d5595c",
                "md5": "c3660d2d6d655d56ca613b5f52a28387",
                "sha256": "be81e3afe79f6c8ece79a86d6067ad1572d2992ce1c590a086f3755a09535eb4"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c3660d2d6d655d56ca613b5f52a28387",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1789976,
            "upload_time": "2025-07-29T22:34:48",
            "upload_time_iso_8601": "2025-07-29T22:34:48.500856Z",
            "url": "https://files.pythonhosted.org/packages/1a/5c/7254f5e1a33a5d6b8bf6813d4f4fdcf5c4166ec8a7af932d987879d5595c/oracledb-3.3.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d034d9fe4e8c6e54956be898e3caad4412de441e502a2679bb5ce8802db5078",
                "md5": "8d43ba1efc57ca47f69a2e486d2c5e7b",
                "sha256": "6abc3e4432350839ecb98527707f4929bfb58959159ea440977f621e0db82ac6"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "8d43ba1efc57ca47f69a2e486d2c5e7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3918058,
            "upload_time": "2025-07-29T22:34:51",
            "upload_time_iso_8601": "2025-07-29T22:34:51.661989Z",
            "url": "https://files.pythonhosted.org/packages/3d/03/4d9fe4e8c6e54956be898e3caad4412de441e502a2679bb5ce8802db5078/oracledb-3.3.0-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2242217c3b79c2e828c73435200f226128027e866ddb2e9124acf7e55b6ed16c",
                "md5": "ee15433bdc8f6c971cc113b3e4160d90",
                "sha256": "6770dabc441adce5c865c9f528992a7228b2e5e59924cbd8588eb159f548fc38"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ee15433bdc8f6c971cc113b3e4160d90",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2266909,
            "upload_time": "2025-07-29T22:34:53",
            "upload_time_iso_8601": "2025-07-29T22:34:53.868446Z",
            "url": "https://files.pythonhosted.org/packages/22/42/217c3b79c2e828c73435200f226128027e866ddb2e9124acf7e55b6ed16c/oracledb-3.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7a8755569f456abd62fb50ca4716cd5c8a7f4842899f587dba751108111ff1d",
                "md5": "e8fc54ac83f0ff716f1110daf2ff5eaa",
                "sha256": "55af5a49db7cbd03cef449ac51165d9aa30f26064481d68a653c81cc5a29ae80"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8fc54ac83f0ff716f1110daf2ff5eaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2449102,
            "upload_time": "2025-07-29T22:34:55",
            "upload_time_iso_8601": "2025-07-29T22:34:55.969340Z",
            "url": "https://files.pythonhosted.org/packages/a7/a8/755569f456abd62fb50ca4716cd5c8a7f4842899f587dba751108111ff1d/oracledb-3.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e02aaaeef4f71cdfb0528f53af3a29a1235f243f23b46aadb9dbf4b95f5e4853",
                "md5": "d1d7aea000cf3c492f4e65ae823e28d7",
                "sha256": "5b4a68e4d783186cea9236fb0caa295f6da382ba1b80ca7f86d2d045cf29a993"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "d1d7aea000cf3c492f4e65ae823e28d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1448088,
            "upload_time": "2025-07-29T22:34:57",
            "upload_time_iso_8601": "2025-07-29T22:34:57.766366Z",
            "url": "https://files.pythonhosted.org/packages/e0/2a/aaeef4f71cdfb0528f53af3a29a1235f243f23b46aadb9dbf4b95f5e4853/oracledb-3.3.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8ae2ef3a3592360aaf9a3f816ccd814f9ad23966e100b06dabc40ea7cf01118",
                "md5": "0c0a8a47f2e58d2b43a347075ea28213",
                "sha256": "ad63c0057d3f764cc2d96d4f6445b89a8ea59b42ed80f719d689292392ce62a3"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0c0a8a47f2e58d2b43a347075ea28213",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1789329,
            "upload_time": "2025-07-29T22:34:59",
            "upload_time_iso_8601": "2025-07-29T22:34:59.581589Z",
            "url": "https://files.pythonhosted.org/packages/c8/ae/2ef3a3592360aaf9a3f816ccd814f9ad23966e100b06dabc40ea7cf01118/oracledb-3.3.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ca505347b113123245ead81501bcc25913ac8918c5b7c645deb1d6b9f32fbe3",
                "md5": "9b0ff053dd8fbc275614c4f9a792a501",
                "sha256": "4c574a34a79934b9c6c3f5e4c715053ad3b46e18da38ec28d9c767e0541422ea"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp314-cp314-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "9b0ff053dd8fbc275614c4f9a792a501",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3939747,
            "upload_time": "2025-07-29T22:35:02",
            "upload_time_iso_8601": "2025-07-29T22:35:02.421833Z",
            "url": "https://files.pythonhosted.org/packages/0c/a5/05347b113123245ead81501bcc25913ac8918c5b7c645deb1d6b9f32fbe3/oracledb-3.3.0-cp314-cp314-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4cb911984a701960f1f8a3efd3980c4d50c8b56d3f3f338614a76521a6d5f61c",
                "md5": "1c4eaef36a6e9a8503fb6b26e25a33e4",
                "sha256": "172217e7511c58d8d3c09e9385f7d51696de27e639f336ba0a65d15009cd8cda"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1c4eaef36a6e9a8503fb6b26e25a33e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2300535,
            "upload_time": "2025-07-29T22:35:04",
            "upload_time_iso_8601": "2025-07-29T22:35:04.647114Z",
            "url": "https://files.pythonhosted.org/packages/4c/b9/11984a701960f1f8a3efd3980c4d50c8b56d3f3f338614a76521a6d5f61c/oracledb-3.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3560eef985b490e7018f501dc39af12c0023360f18e3b9b0ae14809e95487e8",
                "md5": "95e47730291046b45372b43824539fdc",
                "sha256": "d450dcada7711007a9a8a2770f81b54c24ba1e1d2456643c3fae7a2ff26b3a29"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95e47730291046b45372b43824539fdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2458312,
            "upload_time": "2025-07-29T22:35:06",
            "upload_time_iso_8601": "2025-07-29T22:35:06.725816Z",
            "url": "https://files.pythonhosted.org/packages/b3/56/0eef985b490e7018f501dc39af12c0023360f18e3b9b0ae14809e95487e8/oracledb-3.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69ed83f786041a9ab8aee157156ce2526b332e603086f1ec2dfa3e8553c8204b",
                "md5": "adc3fd6538d87cf08efbc89a9ff375c0",
                "sha256": "b19ca41b3344dc77c53f74d31e0ca442734314593c4bec578a62efebdb1b59d7"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "adc3fd6538d87cf08efbc89a9ff375c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1469071,
            "upload_time": "2025-07-29T22:35:08",
            "upload_time_iso_8601": "2025-07-29T22:35:08.760638Z",
            "url": "https://files.pythonhosted.org/packages/69/ed/83f786041a9ab8aee157156ce2526b332e603086f1ec2dfa3e8553c8204b/oracledb-3.3.0-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59789627eb1630cb60b070889fce71b90e81ed276f678a1c4dfe2dccefab73f3",
                "md5": "cb0976c9a6a196a9aaf0f0c22cd4cb5b",
                "sha256": "a410dcf69b18ea607f3aed5cb4ecdebeb7bfb5f86e746c09a864c0f5bd563279"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cb0976c9a6a196a9aaf0f0c22cd4cb5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1823668,
            "upload_time": "2025-07-29T22:35:10",
            "upload_time_iso_8601": "2025-07-29T22:35:10.612126Z",
            "url": "https://files.pythonhosted.org/packages/59/78/9627eb1630cb60b070889fce71b90e81ed276f678a1c4dfe2dccefab73f3/oracledb-3.3.0-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cfae5e44576e568395692f3819539137239b6b8ab13ee7ff072b8c64c296b203",
                "md5": "af670772fba0240342fd82dd254f498b",
                "sha256": "2615f4f516a574fdf18e5aadca809bc90ac6ab37889d0293a9192c695fe07cd9"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "af670772fba0240342fd82dd254f498b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3916715,
            "upload_time": "2025-07-29T22:35:12",
            "upload_time_iso_8601": "2025-07-29T22:35:12.866207Z",
            "url": "https://files.pythonhosted.org/packages/cf/ae/5e44576e568395692f3819539137239b6b8ab13ee7ff072b8c64c296b203/oracledb-3.3.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "020b9d80aa547b97122005143a45abb5a8c8ee4d6d14fba781f4c9d1f3e07b76",
                "md5": "f81be5cc0d91266d3c1996d925ae3e00",
                "sha256": "ed608fee4e87319618be200d2befcdd17fa534e16f20cf60df6e9cbbfeadf58e"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f81be5cc0d91266d3c1996d925ae3e00",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2414025,
            "upload_time": "2025-07-29T22:35:15",
            "upload_time_iso_8601": "2025-07-29T22:35:15.241458Z",
            "url": "https://files.pythonhosted.org/packages/02/0b/9d80aa547b97122005143a45abb5a8c8ee4d6d14fba781f4c9d1f3e07b76/oracledb-3.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ffcd674acbcda75ed3302155b9d11f5890655f1e9577fed15afac43f36d6bfb",
                "md5": "9a4928cee940fb60ef05756f932677f5",
                "sha256": "35f6df7bec55314f56d4d87a53a1d5f6a0ded9ee106bc9346a5a4d4fe64aa667"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a4928cee940fb60ef05756f932677f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2602944,
            "upload_time": "2025-07-29T22:35:17",
            "upload_time_iso_8601": "2025-07-29T22:35:17.024003Z",
            "url": "https://files.pythonhosted.org/packages/8f/fc/d674acbcda75ed3302155b9d11f5890655f1e9577fed15afac43f36d6bfb/oracledb-3.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4540a9818a7f348ebd1ea89467b8ce11338815b5cab6bb9fa25ca13d75a444c",
                "md5": "fc0fb1b86f81a612b6a1aeb2b1fd5368",
                "sha256": "0434f4ed7ded88120487b2ed3a13c37f89fc62b283960a72ddc051293e971244"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "fc0fb1b86f81a612b6a1aeb2b1fd5368",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1488390,
            "upload_time": "2025-07-29T22:35:18",
            "upload_time_iso_8601": "2025-07-29T22:35:18.620396Z",
            "url": "https://files.pythonhosted.org/packages/f4/54/0a9818a7f348ebd1ea89467b8ce11338815b5cab6bb9fa25ca13d75a444c/oracledb-3.3.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46320e3084c846d12b70146e2f82031a3f17b6488bd15b6889f8cbbdabea3d46",
                "md5": "346627ec9ffddc44e4ac3e6c94f02cdc",
                "sha256": "4c0e77e8dd1315f05f3d98d1f08df45f7bedd99612caccf315bb754cb768d692"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "346627ec9ffddc44e4ac3e6c94f02cdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1830820,
            "upload_time": "2025-07-29T22:35:20",
            "upload_time_iso_8601": "2025-07-29T22:35:20.624392Z",
            "url": "https://files.pythonhosted.org/packages/46/32/0e3084c846d12b70146e2f82031a3f17b6488bd15b6889f8cbbdabea3d46/oracledb-3.3.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51c9fae18fa5d803712d188486f8e86ad4f4e00316793ca19745d7c11092c360",
                "md5": "b6e8e73d347d7a1641caf0481f512e8d",
                "sha256": "e830d3544a1578296bcaa54c6e8c8ae10a58c7db467c528c4b27adbf9c8b4cb0"
            },
            "downloads": -1,
            "filename": "oracledb-3.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b6e8e73d347d7a1641caf0481f512e8d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 811776,
            "upload_time": "2025-07-29T22:34:10",
            "upload_time_iso_8601": "2025-07-29T22:34:10.489532Z",
            "url": "https://files.pythonhosted.org/packages/51/c9/fae18fa5d803712d188486f8e86ad4f4e00316793ca19745d7c11092c360/oracledb-3.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-29 22:34:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "oracle",
    "github_project": "python-oracledb",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "oracledb"
}
        
Elapsed time: 2.64980s