oracledb


Nameoracledb JSON
Version 2.4.1 PyPI version JSON
download
home_pagehttps://oracle.github.io/python-oracledb
SummaryPython interface to Oracle Database
upload_time2024-08-22 17:20:13
maintainerNone
docs_urlNone
authorAnthony Tuininga
requires_python>=3.8
licenseApache and/or UPL
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 a [Python programming language][python] extension module
allowing Python programs to connect to [Oracle Database][oracledb].  It is the
renamed, new major release of the popular cx_Oracle driver.

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].

Synchronous and [concurrent][concurrent] coding styles are supported.

## Installation

Run `python -m pip install oracledb`

See [python-oracledb Installation][installation].

## Dependencies and Interoperability

- Python versions 3.8 through 3.13.

  Prebuilt packages are available for these Python versions on Windows, on
  macOS and on Linux.

  Source code is also available.

- 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 21c.

- 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 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].

## Samples

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

## 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

            

Raw data

            {
    "_id": null,
    "home_page": "https://oracle.github.io/python-oracledb",
    "name": "oracledb",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "Oracle, database",
    "author": "Anthony Tuininga",
    "author_email": "anthony.tuininga@oracle.com",
    "download_url": "https://files.pythonhosted.org/packages/8e/0f/96ba2269f2365272972333177ca0c44a82037bc32c6ee9f6547ca595c478/oracledb-2.4.1.tar.gz",
    "platform": null,
    "description": "# python-oracledb\n\npython-oracledb is a [Python programming language][python] extension module\nallowing Python programs to connect to [Oracle Database][oracledb].  It is the\nrenamed, new major release of the popular cx_Oracle driver.\n\nThe module conforms to the [Python Database API 2.0 specification][pep249] with\na considerable number of additions and a couple of minor exclusions, see the\n[feature list][features].\n\nSynchronous and [concurrent][concurrent] coding styles are supported.\n\n## Installation\n\nRun `python -m pip install oracledb`\n\nSee [python-oracledb Installation][installation].\n\n## Dependencies and Interoperability\n\n- Python versions 3.8 through 3.13.\n\n  Prebuilt packages are available for these Python versions on Windows, on\n  macOS and on Linux.\n\n  Source code is also available.\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 21c.\n\n- Oracle Database\n\n  **Thin mode**: Oracle Database 12.1 (or later) is required.\n\n  **Thick mode**: Oracle Database 11.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## Samples\n\nExamples can be found in the [/samples][samples] directory and the\n[Python and Oracle Database Tutorial][tutorial].\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",
    "bugtrack_url": null,
    "license": "Apache and/or UPL",
    "summary": "Python interface to Oracle Database",
    "version": "2.4.1",
    "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#releasenotes",
        "Samples": "https://github.com/oracle/python-oracledb/tree/main/samples",
        "Source": "https://github.com/oracle/python-oracledb"
    },
    "split_keywords": [
        "oracle",
        " database"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8890c62a3d51803ed8df440247e0d7d905366c1c8440c46ffb11c9ce63cd393",
                "md5": "0c49fbfea7f577c6902b8f1901289509",
                "sha256": "b8064f272515f841f5f48159eb209ed8f798901af73f64ef9ec87ae124d16c33"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "0c49fbfea7f577c6902b8f1901289509",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3694606,
            "upload_time": "2024-08-22T17:20:20",
            "upload_time_iso_8601": "2024-08-22T17:20:20.211570Z",
            "url": "https://files.pythonhosted.org/packages/b8/89/0c62a3d51803ed8df440247e0d7d905366c1c8440c46ffb11c9ce63cd393/oracledb-2.4.1-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e764cb8b225e648fa04ee4298214be1fbeac915cf5fefe1483e95e19c2f9a8c",
                "md5": "f525522be18627bfdb34680655da6529",
                "sha256": "9b3940be302b15e86f54f7072ee596cfcacf656df904f662efcb8ebbb713fbf8"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f525522be18627bfdb34680655da6529",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2230936,
            "upload_time": "2024-08-22T17:20:22",
            "upload_time_iso_8601": "2024-08-22T17:20:22.116903Z",
            "url": "https://files.pythonhosted.org/packages/4e/76/4cb8b225e648fa04ee4298214be1fbeac915cf5fefe1483e95e19c2f9a8c/oracledb-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "340d943a7494256ce07ebd16251fa0f66ee94138ad82beaaf2fa4da3af0b6e44",
                "md5": "b09d8d296e029bea6e0768d0b8bbb08e",
                "sha256": "cc56f1880c754e84e182dcd8428d192601976fad72c96cd92629468755159b70"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b09d8d296e029bea6e0768d0b8bbb08e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2383348,
            "upload_time": "2024-08-22T17:20:24",
            "upload_time_iso_8601": "2024-08-22T17:20:24.334284Z",
            "url": "https://files.pythonhosted.org/packages/34/0d/943a7494256ce07ebd16251fa0f66ee94138ad82beaaf2fa4da3af0b6e44/oracledb-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c54af5fba925024eb3132dc162e75415a136b8310b3c471ae743c7b2f4c9676",
                "md5": "e78c84ae195690836df274e1c5190bf2",
                "sha256": "65dd659f0187c3915d61714ef4510f64a52f6fb84a67c5a0672afa8365a9d1c1"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "e78c84ae195690836df274e1c5190bf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1416685,
            "upload_time": "2024-08-22T17:20:26",
            "upload_time_iso_8601": "2024-08-22T17:20:26.488969Z",
            "url": "https://files.pythonhosted.org/packages/0c/54/af5fba925024eb3132dc162e75415a136b8310b3c471ae743c7b2f4c9676/oracledb-2.4.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f86b63c010a86093af9ea6ab5f6eb285a2299a77352f4ae89ec04191e3df637",
                "md5": "dc6312c2d0db300840308399b8e63a87",
                "sha256": "b751da022c0c85fc3da898c2fcafb1c5cf3c16c80a84a5c0f5a618a445f9d275"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dc6312c2d0db300840308399b8e63a87",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1722779,
            "upload_time": "2024-08-22T17:20:28",
            "upload_time_iso_8601": "2024-08-22T17:20:28.530343Z",
            "url": "https://files.pythonhosted.org/packages/6f/86/b63c010a86093af9ea6ab5f6eb285a2299a77352f4ae89ec04191e3df637/oracledb-2.4.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f06cf86a202caa6bb82bddc20499084e0571e6afdd5b94457dba12b2e4e3107",
                "md5": "c271b7dee99a081548d5c912a96b1061",
                "sha256": "4fc4b426f3d44ee3da81fe1bb328447fbaab005bf028ca2b2179bdd223a2bec4"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c271b7dee99a081548d5c912a96b1061",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3727194,
            "upload_time": "2024-08-22T17:20:30",
            "upload_time_iso_8601": "2024-08-22T17:20:30.623491Z",
            "url": "https://files.pythonhosted.org/packages/9f/06/cf86a202caa6bb82bddc20499084e0571e6afdd5b94457dba12b2e4e3107/oracledb-2.4.1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa57c727eb55d0d29637ef87d31df869334d36a0c183ef2f2713f8c4ce883b3d",
                "md5": "622e85e4a6d2cafde606bd7b4f0e4027",
                "sha256": "ecac3c13e02c84ac09c1491a43423de3075726638919bae45dd5bfa42b241a89"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "622e85e4a6d2cafde606bd7b4f0e4027",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2215515,
            "upload_time": "2024-08-22T17:20:32",
            "upload_time_iso_8601": "2024-08-22T17:20:32.506802Z",
            "url": "https://files.pythonhosted.org/packages/aa/57/c727eb55d0d29637ef87d31df869334d36a0c183ef2f2713f8c4ce883b3d/oracledb-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcb96d99acb96d6a8ba04ca9dc7911d9367a8fe832a422d90659968984f3c29b",
                "md5": "87c69a601e9a927c01e887b7dd436f78",
                "sha256": "0e0e25f60f8faf008f4480eaec88b8e0a13ca552ac46fd018af6d3bf3955eeb4"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "87c69a601e9a927c01e887b7dd436f78",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2354932,
            "upload_time": "2024-08-22T17:20:34",
            "upload_time_iso_8601": "2024-08-22T17:20:34.760924Z",
            "url": "https://files.pythonhosted.org/packages/fc/b9/6d99acb96d6a8ba04ca9dc7911d9367a8fe832a422d90659968984f3c29b/oracledb-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc534debde05a8ac8fc3a05e4c589d5abdb2f0cd9c15792b5675bfa73c5f14c5",
                "md5": "60b72859353d5bc1838bb5efab41b8ae",
                "sha256": "b5cb64c0e58b806ada721f50c5eaca9d335f9b1758d3de8990cebbcb2cc63981"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "60b72859353d5bc1838bb5efab41b8ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1416836,
            "upload_time": "2024-08-22T17:20:36",
            "upload_time_iso_8601": "2024-08-22T17:20:36.809148Z",
            "url": "https://files.pythonhosted.org/packages/bc/53/4debde05a8ac8fc3a05e4c589d5abdb2f0cd9c15792b5675bfa73c5f14c5/oracledb-2.4.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff142de70e1d33bbe2743ac1c5672f1a82e861dc8a0efaf2cc4254112982a9d9",
                "md5": "346c1db0de1125084c45eb9dba93b0d7",
                "sha256": "5a25f6da4ff0b99ae6a893b6fce5caf3bc036a1d5e912eaf76c6c794a2c3972c"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "346c1db0de1125084c45eb9dba93b0d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1725882,
            "upload_time": "2024-08-22T17:20:38",
            "upload_time_iso_8601": "2024-08-22T17:20:38.468785Z",
            "url": "https://files.pythonhosted.org/packages/ff/14/2de70e1d33bbe2743ac1c5672f1a82e861dc8a0efaf2cc4254112982a9d9/oracledb-2.4.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e13bccd8aef5cacad5272373a6072f9705600811a2dc590801dc3d9ac9b41f5f",
                "md5": "2dc7d5f91307355da04f21575c71c880",
                "sha256": "70efa2f6caf958fb0234fee9514f6de219f71b1b16e69176f09290a33024e553"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2dc7d5f91307355da04f21575c71c880",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3769679,
            "upload_time": "2024-08-22T17:20:40",
            "upload_time_iso_8601": "2024-08-22T17:20:40.898692Z",
            "url": "https://files.pythonhosted.org/packages/e1/3b/ccd8aef5cacad5272373a6072f9705600811a2dc590801dc3d9ac9b41f5f/oracledb-2.4.1-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f71f3e3a86d8b8a3259841b23d9a5b25200a9fc7f9a5baa0e895f86d75c763bd",
                "md5": "5b75e0f4416e66dd168ad8e127174994",
                "sha256": "3cfaab99b2b84318c34a74af18452f59279c520a08a9307f0ec041ab2bf4d9d8"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5b75e0f4416e66dd168ad8e127174994",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2080739,
            "upload_time": "2024-08-22T17:20:43",
            "upload_time_iso_8601": "2024-08-22T17:20:43.517938Z",
            "url": "https://files.pythonhosted.org/packages/f7/1f/3e3a86d8b8a3259841b23d9a5b25200a9fc7f9a5baa0e895f86d75c763bd/oracledb-2.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d46bcb226ccc749270560c6e4210d3f840fef4cab0934a3ee432a5e2db30ee16",
                "md5": "1be12e1d2de6b723f64bba2e8df71f11",
                "sha256": "047fa173868fae989150bd8e8fa7d4d28d9228ae0f3367a3c2f662c9202599b1"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1be12e1d2de6b723f64bba2e8df71f11",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2233233,
            "upload_time": "2024-08-22T17:20:45",
            "upload_time_iso_8601": "2024-08-22T17:20:45.304814Z",
            "url": "https://files.pythonhosted.org/packages/d4/6b/cb226ccc749270560c6e4210d3f840fef4cab0934a3ee432a5e2db30ee16/oracledb-2.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adba054048a1709121bf5d48b6320fc98c5a65d403b7373df871bf5d3ea2ea45",
                "md5": "60125c2fce7c1d99bbf6f3943bddf716",
                "sha256": "24c68c030cada6db5611a2d915576741cf34e369d324756fbefcd295ba6a551c"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "60125c2fce7c1d99bbf6f3943bddf716",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1373852,
            "upload_time": "2024-08-22T17:20:47",
            "upload_time_iso_8601": "2024-08-22T17:20:47.235142Z",
            "url": "https://files.pythonhosted.org/packages/ad/ba/054048a1709121bf5d48b6320fc98c5a65d403b7373df871bf5d3ea2ea45/oracledb-2.4.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28ff2e59eb23dec8005d268dd7adec8c307f578358ab616788893ab9a4b969f1",
                "md5": "4d8b2434e12c01af9a614fd2992afd8b",
                "sha256": "7e9612ec44dfae89bd2ca08b6d655de2f83b274d9732766797fdb4759cfb9952"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d8b2434e12c01af9a614fd2992afd8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1681816,
            "upload_time": "2024-08-22T17:20:49",
            "upload_time_iso_8601": "2024-08-22T17:20:49.174817Z",
            "url": "https://files.pythonhosted.org/packages/28/ff/2e59eb23dec8005d268dd7adec8c307f578358ab616788893ab9a4b969f1/oracledb-2.4.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26460fe8b0c948a2fb659133c16a6003e1969596d07727b87df85119f027a913",
                "md5": "c5ab49986cb7544df46da51f7667b0fa",
                "sha256": "898a60d5841a5cfa251aa38b789f25caa11dcef91802b60e912bf59b78d142f3"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "c5ab49986cb7544df46da51f7667b0fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3729892,
            "upload_time": "2024-08-22T17:20:51",
            "upload_time_iso_8601": "2024-08-22T17:20:51.223665Z",
            "url": "https://files.pythonhosted.org/packages/26/46/0fe8b0c948a2fb659133c16a6003e1969596d07727b87df85119f027a913/oracledb-2.4.1-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72d7b857b4864b33752044493563d87b8e41817b4175232dc98786331bfa8fe8",
                "md5": "a77c186209ea3eff32826b58aeaa56f5",
                "sha256": "5bc848aaa6c8dbefd9c725d320005ba3f2488afb67f1334865e3d133367be591"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a77c186209ea3eff32826b58aeaa56f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2077451,
            "upload_time": "2024-08-22T17:20:53",
            "upload_time_iso_8601": "2024-08-22T17:20:53.420249Z",
            "url": "https://files.pythonhosted.org/packages/72/d7/b857b4864b33752044493563d87b8e41817b4175232dc98786331bfa8fe8/oracledb-2.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64613268100ee74817d6d4e4c687f5efa630e33d4fa623485ba54e3bf6d15ccd",
                "md5": "606b2bb9b84fae9efeec0a5a8149d24d",
                "sha256": "62ef605f1e5a62ad99424966dcac94a60e63d7f8a71b613e4253f36c9d021a84"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "606b2bb9b84fae9efeec0a5a8149d24d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2229598,
            "upload_time": "2024-08-22T17:20:55",
            "upload_time_iso_8601": "2024-08-22T17:20:55.423255Z",
            "url": "https://files.pythonhosted.org/packages/64/61/3268100ee74817d6d4e4c687f5efa630e33d4fa623485ba54e3bf6d15ccd/oracledb-2.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fe8c80166454c7c145dd1f704111949d32650e4f5e3f63f12948f19e954d5e3",
                "md5": "1650d229051b165a1385700e998f9e9d",
                "sha256": "eb9cc6afe041992fd6fa6a4727b412033cfd6d4a9b372c0e0d54e65c4a6b632f"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "1650d229051b165a1385700e998f9e9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1371019,
            "upload_time": "2024-08-22T17:20:57",
            "upload_time_iso_8601": "2024-08-22T17:20:57.548258Z",
            "url": "https://files.pythonhosted.org/packages/6f/e8/c80166454c7c145dd1f704111949d32650e4f5e3f63f12948f19e954d5e3/oracledb-2.4.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9b36c6e1271f8334412765afc4da11942630c39bebc5cb92c8b11e836076d93",
                "md5": "23a78871b5b06ba1c856b292820ebaae",
                "sha256": "e00b44811b96e0209941939461aa1e119d62fa154f81b487a3c76c85a38eefc7"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "23a78871b5b06ba1c856b292820ebaae",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1678664,
            "upload_time": "2024-08-22T17:20:59",
            "upload_time_iso_8601": "2024-08-22T17:20:59.160709Z",
            "url": "https://files.pythonhosted.org/packages/a9/b3/6c6e1271f8334412765afc4da11942630c39bebc5cb92c8b11e836076d93/oracledb-2.4.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a68c29c7f972f8acf4a8e7f12a78669bc303630161d147a17a45fc7808762ca3",
                "md5": "e0af1eee0ca91078b5df66d0f1cbbcc9",
                "sha256": "98c9b42a1996a70ff9aec8ce3c1761fd4c635c046f36444c8c17a729c3516e52"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp38-cp38-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "e0af1eee0ca91078b5df66d0f1cbbcc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3685298,
            "upload_time": "2024-08-22T17:21:02",
            "upload_time_iso_8601": "2024-08-22T17:21:02.578361Z",
            "url": "https://files.pythonhosted.org/packages/a6/8c/29c7f972f8acf4a8e7f12a78669bc303630161d147a17a45fc7808762ca3/oracledb-2.4.1-cp38-cp38-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23028609669907f0f2166558c93421d0c78d323688d2d63ac256a81527caa41f",
                "md5": "1255cca754825cdcc0b467c061f821dc",
                "sha256": "e7df5a8c94f47e6a7805e9626a1d42564733678fd0f1dc9ff6e21ede2b782717"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1255cca754825cdcc0b467c061f821dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2250735,
            "upload_time": "2024-08-22T17:21:04",
            "upload_time_iso_8601": "2024-08-22T17:21:04.970647Z",
            "url": "https://files.pythonhosted.org/packages/23/02/8609669907f0f2166558c93421d0c78d323688d2d63ac256a81527caa41f/oracledb-2.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20084fc45f360ac2238ea6b6e3d9700eb755b71a8fcb4c73a4b591b8d4307fed",
                "md5": "403d4c478992b9816b1389185425de59",
                "sha256": "06457518cbbba739308cb745142421c413023b553684f16628a8c7fc04ca4d7e"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "403d4c478992b9816b1389185425de59",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2409882,
            "upload_time": "2024-08-22T17:21:06",
            "upload_time_iso_8601": "2024-08-22T17:21:06.916329Z",
            "url": "https://files.pythonhosted.org/packages/20/08/4fc45f360ac2238ea6b6e3d9700eb755b71a8fcb4c73a4b591b8d4307fed/oracledb-2.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c176b6f1d21b8ab24a05912c344a0f0b90e54b82543464a43fc1bd8169e3186b",
                "md5": "4a885e4bf695fc94b41a977b789c1291",
                "sha256": "78b02640b16931d1557b9b7fa9f6cb81bc061ede8dc3c4d38805be1074f0f7e0"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "4a885e4bf695fc94b41a977b789c1291",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1424368,
            "upload_time": "2024-08-22T17:21:09",
            "upload_time_iso_8601": "2024-08-22T17:21:09.074515Z",
            "url": "https://files.pythonhosted.org/packages/c1/76/b6f1d21b8ab24a05912c344a0f0b90e54b82543464a43fc1bd8169e3186b/oracledb-2.4.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51bc0a74c0b10c9c443a5620343149a48feb9415655aeea05bed8d1527a43f41",
                "md5": "e6bbfe949069b317708b4e09405dc9d1",
                "sha256": "38e10bef4f4b797647696706ecb1472cf7c1e31e0ab475fc2192cf6237a215b6"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e6bbfe949069b317708b4e09405dc9d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1737698,
            "upload_time": "2024-08-22T17:21:11",
            "upload_time_iso_8601": "2024-08-22T17:21:11.201676Z",
            "url": "https://files.pythonhosted.org/packages/51/bc/0a74c0b10c9c443a5620343149a48feb9415655aeea05bed8d1527a43f41/oracledb-2.4.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d184a74c480e6bd17f1312c589ae91163d0f8fca30f30bf0e4e0a311937aa30c",
                "md5": "5cc46e2dedd47fac2bc326ab644945d4",
                "sha256": "cc0730317184a1fef7046ee5a87c9b2c1e18693018058994b3f0c0a8d4d1c28a"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "5cc46e2dedd47fac2bc326ab644945d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3698808,
            "upload_time": "2024-08-22T17:21:13",
            "upload_time_iso_8601": "2024-08-22T17:21:13.220660Z",
            "url": "https://files.pythonhosted.org/packages/d1/84/a74c480e6bd17f1312c589ae91163d0f8fca30f30bf0e4e0a311937aa30c/oracledb-2.4.1-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b00a58adc5167d7d4458d27a36d684c15ef6fce9903a15b6e32d3f2c8fb7c9f3",
                "md5": "c2ddcc550f1b9adcf510d7c3efb4179f",
                "sha256": "5d12161243e888b54baaed607d9c14a679412cca8ee1a7f2548c9c0944f357df"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c2ddcc550f1b9adcf510d7c3efb4179f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2242692,
            "upload_time": "2024-08-22T17:21:15",
            "upload_time_iso_8601": "2024-08-22T17:21:15.750900Z",
            "url": "https://files.pythonhosted.org/packages/b0/0a/58adc5167d7d4458d27a36d684c15ef6fce9903a15b6e32d3f2c8fb7c9f3/oracledb-2.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd68babff9138b1b9ced06d765622db754cfb7f4f082326010f76efe23f5e6db",
                "md5": "d7e9e167329bde3052ea0a86591f00e2",
                "sha256": "7bbdd76da2506b5a533c684e120ed943dcb168d4b6312211ba0218e376d3683b"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7e9e167329bde3052ea0a86591f00e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2385009,
            "upload_time": "2024-08-22T17:21:17",
            "upload_time_iso_8601": "2024-08-22T17:21:17.771802Z",
            "url": "https://files.pythonhosted.org/packages/bd/68/babff9138b1b9ced06d765622db754cfb7f4f082326010f76efe23f5e6db/oracledb-2.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3887d80d7af1960ef870f9a18a2158e9c7d367a1d94cec11594010a16ea36054",
                "md5": "3655be108e1f31042f2c459fa7f59dea",
                "sha256": "673b0018f8044447802f4327e19f43aa971edf9fc94221988629a0e9495c9969"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "3655be108e1f31042f2c459fa7f59dea",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1417545,
            "upload_time": "2024-08-22T17:21:19",
            "upload_time_iso_8601": "2024-08-22T17:21:19.593733Z",
            "url": "https://files.pythonhosted.org/packages/38/87/d80d7af1960ef870f9a18a2158e9c7d367a1d94cec11594010a16ea36054/oracledb-2.4.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb1b2c03ffc363d3f832f4a6d2a79e347744c2cf56db5bfa02bc0bdef6661a52",
                "md5": "3c9130269e553d93c7862d0f8399e526",
                "sha256": "c119c285b0f2274c6fe9eafee89207d1672a1288f6105f5aa3f9a0c771e85ec3"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3c9130269e553d93c7862d0f8399e526",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1726115,
            "upload_time": "2024-08-22T17:21:21",
            "upload_time_iso_8601": "2024-08-22T17:21:21.234952Z",
            "url": "https://files.pythonhosted.org/packages/cb/1b/2c03ffc363d3f832f4a6d2a79e347744c2cf56db5bfa02bc0bdef6661a52/oracledb-2.4.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e0f96ba2269f2365272972333177ca0c44a82037bc32c6ee9f6547ca595c478",
                "md5": "e29531db53260f14ad8c7566b948b0ff",
                "sha256": "bd5976bef0e466e0f9d1b9f6531fb5b8171dc8534717ccb04b26e680b6c7571d"
            },
            "downloads": -1,
            "filename": "oracledb-2.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e29531db53260f14ad8c7566b948b0ff",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 614828,
            "upload_time": "2024-08-22T17:20:13",
            "upload_time_iso_8601": "2024-08-22T17:20:13.013577Z",
            "url": "https://files.pythonhosted.org/packages/8e/0f/96ba2269f2365272972333177ca0c44a82037bc32c6ee9f6547ca595c478/oracledb-2.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-22 17:20:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "oracle",
    "github_project": "python-oracledb",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "oracledb"
}
        
Elapsed time: 0.53025s