oracledb


Nameoracledb JSON
Version 2.2.0 PyPI version JSON
download
home_pagehttps://oracle.github.io/python-oracledb
SummaryPython interface to Oracle Database
upload_time2024-05-02 16:25:55
maintainerNone
docs_urlNone
authorAnthony Tuininga
requires_python>=3.7
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.7 through 3.12.

  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.7",
    "maintainer_email": null,
    "keywords": "Oracle, database",
    "author": "Anthony Tuininga",
    "author_email": "anthony.tuininga@oracle.com",
    "download_url": "https://files.pythonhosted.org/packages/99/40/e401b2d582a1b47df87b6dc9e7a7d4c30be9d44cc760d7e97be7600bea76/oracledb-2.2.0.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.7 through 3.12.\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.2.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#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": "2f497c807201d48f796a1f1b126a9395a7dc416b1b0b3f008063b92b9cee2e0f",
                "md5": "edc497fc5c06043962fc6b3b08c29509",
                "sha256": "253a85eef53d97815b4d838e5275d0a99e33ec340eb4b945cd2371e2bcede46b"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "edc497fc5c06043962fc6b3b08c29509",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3517010,
            "upload_time": "2024-05-02T16:26:00",
            "upload_time_iso_8601": "2024-05-02T16:26:00.627711Z",
            "url": "https://files.pythonhosted.org/packages/2f/49/7c807201d48f796a1f1b126a9395a7dc416b1b0b3f008063b92b9cee2e0f/oracledb-2.2.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82b8a3e66b1eefeef2baff1eac1c7611380b84d0b89af8aab51b98e17ab18efa",
                "md5": "8b84f4641496fd4bc3d46586838e176b",
                "sha256": "fa5c2982076366f59dade28b554b43a257ad426e55359124bc37f191f51c2d46"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8b84f4641496fd4bc3d46586838e176b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 11009980,
            "upload_time": "2024-05-02T16:26:03",
            "upload_time_iso_8601": "2024-05-02T16:26:03.370457Z",
            "url": "https://files.pythonhosted.org/packages/82/b8/a3e66b1eefeef2baff1eac1c7611380b84d0b89af8aab51b98e17ab18efa/oracledb-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "091581bf7c6f802e66dd2e47013168a4dd6c5ca938e94f6422cfaca51dc93625",
                "md5": "5dfa7c62ad94dc899436bb22bf794f8d",
                "sha256": "19408844bd4af5b4d40f06c3e5b88c6bfce4a749f61ab766f41b22c4070c5c15"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5dfa7c62ad94dc899436bb22bf794f8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 11094472,
            "upload_time": "2024-05-02T16:26:06",
            "upload_time_iso_8601": "2024-05-02T16:26:06.792604Z",
            "url": "https://files.pythonhosted.org/packages/09/15/81bf7c6f802e66dd2e47013168a4dd6c5ca938e94f6422cfaca51dc93625/oracledb-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6f2b491b824c6d9ef7cd0388b7a1c6c0172e7f2ef2207d7cf91266bc8896892",
                "md5": "8ea2547ef562bf3128cf06404843e4de",
                "sha256": "c2e2e3f00d7eb7f4dabfa8996dc70db03bd7dbe474d2d1dc381daeff54cfdeff"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "8ea2547ef562bf3128cf06404843e4de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1365367,
            "upload_time": "2024-05-02T16:26:09",
            "upload_time_iso_8601": "2024-05-02T16:26:09.634433Z",
            "url": "https://files.pythonhosted.org/packages/f6/f2/b491b824c6d9ef7cd0388b7a1c6c0172e7f2ef2207d7cf91266bc8896892/oracledb-2.2.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8690e8b2981d548cc10616dd66482adbf8650a2af011373c48a284d331a2943f",
                "md5": "7b065cb90d79f4258e3d241ef67bb9d9",
                "sha256": "efed536635b0fec5c1484eda55fad4affa57672b87596ec6273123a3133ba5b6"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7b065cb90d79f4258e3d241ef67bb9d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1649467,
            "upload_time": "2024-05-02T16:26:11",
            "upload_time_iso_8601": "2024-05-02T16:26:11.338448Z",
            "url": "https://files.pythonhosted.org/packages/86/90/e8b2981d548cc10616dd66482adbf8650a2af011373c48a284d331a2943f/oracledb-2.2.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6ddd6fccbeaadde5f02b8fb67ce72e365e6a79fe45089ad5a46be93e2708b00",
                "md5": "25712505b3e7bf7248605e4b7f729af7",
                "sha256": "c4b7e14b04dc2af4697ca561f9bcac110a67a7be2ccf868d789e92771017feca"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "25712505b3e7bf7248605e4b7f729af7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3548852,
            "upload_time": "2024-05-02T16:26:12",
            "upload_time_iso_8601": "2024-05-02T16:26:12.986739Z",
            "url": "https://files.pythonhosted.org/packages/e6/dd/d6fccbeaadde5f02b8fb67ce72e365e6a79fe45089ad5a46be93e2708b00/oracledb-2.2.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24eb3d0d32e861ef2d875418d035827a4e505952b674d049f3a8ff5d89702d17",
                "md5": "ab26686b4935e1dc640cf730f6aa1114",
                "sha256": "61bbf9cd64a2f3b65a12550329b2f0caed7d9aa5e892c0ce69d9ea7b3cb3cb8e"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ab26686b4935e1dc640cf730f6aa1114",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 12248710,
            "upload_time": "2024-05-02T16:26:15",
            "upload_time_iso_8601": "2024-05-02T16:26:15.434403Z",
            "url": "https://files.pythonhosted.org/packages/24/eb/3d0d32e861ef2d875418d035827a4e505952b674d049f3a8ff5d89702d17/oracledb-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2135392baa5b335ce34bd94abb88d5647c5207a63e28cad8388c2168c79014d",
                "md5": "24576b0f1f1caf576d2d9b2d3f239eb8",
                "sha256": "4e461d1c7ef4d3f03d84595a13754390a62300976782d7c29efc07fcc915e1b3"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24576b0f1f1caf576d2d9b2d3f239eb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 12307018,
            "upload_time": "2024-05-02T16:26:18",
            "upload_time_iso_8601": "2024-05-02T16:26:18.722835Z",
            "url": "https://files.pythonhosted.org/packages/b2/13/5392baa5b335ce34bd94abb88d5647c5207a63e28cad8388c2168c79014d/oracledb-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10565da45eaf7531115b553ed62dfeaaef033dba9931a2d01818b0e74517de6a",
                "md5": "da3b5e4fe38d097f3575af1fb737728c",
                "sha256": "6c7da69d18cf02e469e15215af9c6f219256972a172c0e544a2ecc2a5cab9aa5"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "da3b5e4fe38d097f3575af1fb737728c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1367744,
            "upload_time": "2024-05-02T16:26:21",
            "upload_time_iso_8601": "2024-05-02T16:26:21.581485Z",
            "url": "https://files.pythonhosted.org/packages/10/56/5da45eaf7531115b553ed62dfeaaef033dba9931a2d01818b0e74517de6a/oracledb-2.2.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d0f26398ca807c06bcf728f6574bb4365100a70ee6fc1edc088cb42906f4054",
                "md5": "3a77243e51034e7b454de7bec15eca9e",
                "sha256": "d0245f677e27ee0990eb0213485031dacdc837a89569563f1594b82ccb362255"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3a77243e51034e7b454de7bec15eca9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1653381,
            "upload_time": "2024-05-02T16:26:23",
            "upload_time_iso_8601": "2024-05-02T16:26:23.687461Z",
            "url": "https://files.pythonhosted.org/packages/1d/0f/26398ca807c06bcf728f6574bb4365100a70ee6fc1edc088cb42906f4054/oracledb-2.2.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c0d0c23e358d34d9e85926d021ded8002c0499b37da0341a8a79ce78f8290c1",
                "md5": "86c1c7ef93675697fe5fa5301668b92a",
                "sha256": "10d2cd354a15e2b7e191256a0179874068fc64fa6543b2e20c9c1c38f0dd0839"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "86c1c7ef93675697fe5fa5301668b92a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3582478,
            "upload_time": "2024-05-02T16:26:26",
            "upload_time_iso_8601": "2024-05-02T16:26:26.028645Z",
            "url": "https://files.pythonhosted.org/packages/1c/0d/0c23e358d34d9e85926d021ded8002c0499b37da0341a8a79ce78f8290c1/oracledb-2.2.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c94cc2259eebe2e8523df1b71f328a402272d39882aca57a7ace91031c3eca85",
                "md5": "faf1b4982a9baa3e338a6299411a0a22",
                "sha256": "fbf07e0e88c9ff1555c9301d95c69e0d48263cf7df63172043fe0a042539e687"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "faf1b4982a9baa3e338a6299411a0a22",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 11731915,
            "upload_time": "2024-05-02T16:26:28",
            "upload_time_iso_8601": "2024-05-02T16:26:28.139916Z",
            "url": "https://files.pythonhosted.org/packages/c9/4c/c2259eebe2e8523df1b71f328a402272d39882aca57a7ace91031c3eca85/oracledb-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "537c60480a70293e6c59bc889c310fd7d4ce21bb740b881b5261569ab9359645",
                "md5": "30d203e76e52fa7c48a863e5ddc8d511",
                "sha256": "c6a1365d3e05ca73b638ef939f9a609fed0ae5da75d13b2cfb75601ab8b85fce"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30d203e76e52fa7c48a863e5ddc8d511",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 11946281,
            "upload_time": "2024-05-02T16:26:30",
            "upload_time_iso_8601": "2024-05-02T16:26:30.749419Z",
            "url": "https://files.pythonhosted.org/packages/53/7c/60480a70293e6c59bc889c310fd7d4ce21bb740b881b5261569ab9359645/oracledb-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "836cad95783ec10ea18861624d740273f07e89a29cfd4a0ae3c704ba27a4501b",
                "md5": "64065ce431e6b47694277ba9ac262546",
                "sha256": "3fe57091a1463efac692b352e99f9daeab5ab375bab2060c5caba9a3a7743c15"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "64065ce431e6b47694277ba9ac262546",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1323476,
            "upload_time": "2024-05-02T16:26:33",
            "upload_time_iso_8601": "2024-05-02T16:26:33.652267Z",
            "url": "https://files.pythonhosted.org/packages/83/6c/ad95783ec10ea18861624d740273f07e89a29cfd4a0ae3c704ba27a4501b/oracledb-2.2.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2248eeca9c347022dd17af987e1e551a5cb7fd571b4af0a8b98e20a9aa9276df",
                "md5": "d74a1c398a21fb5d305d11961cd055f4",
                "sha256": "e5ca9c050e18b2b1005b40d44a2098155445836071253ee5d547c7f285fc7729"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d74a1c398a21fb5d305d11961cd055f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1611974,
            "upload_time": "2024-05-02T16:26:35",
            "upload_time_iso_8601": "2024-05-02T16:26:35.044728Z",
            "url": "https://files.pythonhosted.org/packages/22/48/eeca9c347022dd17af987e1e551a5cb7fd571b4af0a8b98e20a9aa9276df/oracledb-2.2.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36c02724bc754620a7c15337a15b784f9c371fa6600fe3cefa9b04d8d5ebe6a8",
                "md5": "bd8e61d77feca798f4600cce1e1bc20f",
                "sha256": "b5ad105aabc8ff32e3d3a343a92cf84976cf2454b6a6ff02065383fc3863e68d"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd8e61d77feca798f4600cce1e1bc20f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1855836,
            "upload_time": "2024-05-02T16:26:36",
            "upload_time_iso_8601": "2024-05-02T16:26:36.563680Z",
            "url": "https://files.pythonhosted.org/packages/36/c0/2724bc754620a7c15337a15b784f9c371fa6600fe3cefa9b04d8d5ebe6a8/oracledb-2.2.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e514f12b0fd41c3be88c9768ae0b8a8694fb634de1f9e583e3fe3a62aea58c4",
                "md5": "93470e9da9cd34e4b0fe057b7d7845ec",
                "sha256": "14a7f2572c358604186d857c80f384ad03226e372731770911856541a06bdd34"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "93470e9da9cd34e4b0fe057b7d7845ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 9948388,
            "upload_time": "2024-05-02T16:26:39",
            "upload_time_iso_8601": "2024-05-02T16:26:39.206289Z",
            "url": "https://files.pythonhosted.org/packages/6e/51/4f12b0fd41c3be88c9768ae0b8a8694fb634de1f9e583e3fe3a62aea58c4/oracledb-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2495c5f3845e62e5b1d946a9a41934b2ee4f5376724f771d88e74ad16c194079",
                "md5": "6934078c5513e5831f86475e584642fd",
                "sha256": "aa1fe78ed0cbf98593c1f3f620f751b725b189f8c845577e39a372f44b2bf384"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6934078c5513e5831f86475e584642fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 10053933,
            "upload_time": "2024-05-02T16:26:42",
            "upload_time_iso_8601": "2024-05-02T16:26:42.062822Z",
            "url": "https://files.pythonhosted.org/packages/24/95/c5f3845e62e5b1d946a9a41934b2ee4f5376724f771d88e74ad16c194079/oracledb-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f0eb715a0d7d81fb08b8c07c7ee248e44958430eccc3ecf37287008acfa9ddc",
                "md5": "cec934ebd6ed379b4a6f734f1daafe82",
                "sha256": "bcef115bd147d6f267e3b09cbc3fc04189bff69e94d05c1e266c698668061e8d"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "cec934ebd6ed379b4a6f734f1daafe82",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1412259,
            "upload_time": "2024-05-02T16:26:44",
            "upload_time_iso_8601": "2024-05-02T16:26:44.447727Z",
            "url": "https://files.pythonhosted.org/packages/8f/0e/b715a0d7d81fb08b8c07c7ee248e44958430eccc3ecf37287008acfa9ddc/oracledb-2.2.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "781700633409f2a1eec728823a3d2a700933490f9127edd4d10366cf14670203",
                "md5": "6960805a139bffcee3a43f7a2c458b53",
                "sha256": "1272bf562bcd6ff5e23b1e1fe8c3363d7a66fe8f48b1e00c4fb081d5436e1df5"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6960805a139bffcee3a43f7a2c458b53",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1670621,
            "upload_time": "2024-05-02T16:26:46",
            "upload_time_iso_8601": "2024-05-02T16:26:46.925159Z",
            "url": "https://files.pythonhosted.org/packages/78/17/00633409f2a1eec728823a3d2a700933490f9127edd4d10366cf14670203/oracledb-2.2.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abfb220f003821c28301b8d099705d1940670d083b786297637ee8583f831248",
                "md5": "4a833689bd970874bb4f868dd1ad54d8",
                "sha256": "e0010aee0ed0a57964ce9f6cb0e2315a4ffce947121e0bb1c618e5091e64bab4"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp38-cp38-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "4a833689bd970874bb4f868dd1ad54d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3510305,
            "upload_time": "2024-05-02T16:26:48",
            "upload_time_iso_8601": "2024-05-02T16:26:48.478976Z",
            "url": "https://files.pythonhosted.org/packages/ab/fb/220f003821c28301b8d099705d1940670d083b786297637ee8583f831248/oracledb-2.2.0-cp38-cp38-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c41504857de46570c469b77fc338f6793bdb19c11055e7029823ade7e54a71d2",
                "md5": "167749b03cadb41aa02c17e50ad1546b",
                "sha256": "437d7c5a36f7e72ca36e1ac3f1a7c087bffa1cd0ba3a84471e54506c8572a5ad"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "167749b03cadb41aa02c17e50ad1546b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 11350423,
            "upload_time": "2024-05-02T16:26:50",
            "upload_time_iso_8601": "2024-05-02T16:26:50.759936Z",
            "url": "https://files.pythonhosted.org/packages/c4/15/04857de46570c469b77fc338f6793bdb19c11055e7029823ade7e54a71d2/oracledb-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5244308d7e27ab3d38c6751877e0aebdf3f42a0aa79f20673b194ef14c36a13e",
                "md5": "a7d22a469f04ef9a562476442308b8e9",
                "sha256": "581b7067283910a53b1ac1a50c0046058a21bd5c073d529bf695113db6d25f62"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7d22a469f04ef9a562476442308b8e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 11477110,
            "upload_time": "2024-05-02T16:26:53",
            "upload_time_iso_8601": "2024-05-02T16:26:53.620886Z",
            "url": "https://files.pythonhosted.org/packages/52/44/308d7e27ab3d38c6751877e0aebdf3f42a0aa79f20673b194ef14c36a13e/oracledb-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eafdf025e353a72da7b127e162a8d644275ca1552a8817f270852ece7337274d",
                "md5": "a44d3aa35295273aad0b39f5d0618c83",
                "sha256": "97fdc27a15f6441434a7ef563f522c8ceac19c2933f2da1082125670a2e2fc6b"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "a44d3aa35295273aad0b39f5d0618c83",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1406702,
            "upload_time": "2024-05-02T16:26:55",
            "upload_time_iso_8601": "2024-05-02T16:26:55.887576Z",
            "url": "https://files.pythonhosted.org/packages/ea/fd/f025e353a72da7b127e162a8d644275ca1552a8817f270852ece7337274d/oracledb-2.2.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4c3989800a1631b7631a8a24028ce7a6ec642b003d3bfe1ba6d57b14277ae8d",
                "md5": "ca147a4b2e20226ec6001ee86a829be7",
                "sha256": "c22a2052997a01e59a4c9c33c9c0593eebcb1d893addeda9cd57003c2e088a85"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ca147a4b2e20226ec6001ee86a829be7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1700680,
            "upload_time": "2024-05-02T16:26:58",
            "upload_time_iso_8601": "2024-05-02T16:26:58.175027Z",
            "url": "https://files.pythonhosted.org/packages/e4/c3/989800a1631b7631a8a24028ce7a6ec642b003d3bfe1ba6d57b14277ae8d/oracledb-2.2.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2152dbfab3c00173ee2b1508594b740df0e45617338e410ef4b999ecb7476bc",
                "md5": "9b905b3c21e90691920d281e85eb5313",
                "sha256": "b924ee3e7d41edb367e5bb4cbb30990ad447fedda9ef0fe29b691d36a8d338c2"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "9b905b3c21e90691920d281e85eb5313",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3520611,
            "upload_time": "2024-05-02T16:26:59",
            "upload_time_iso_8601": "2024-05-02T16:26:59.884846Z",
            "url": "https://files.pythonhosted.org/packages/a2/15/2dbfab3c00173ee2b1508594b740df0e45617338e410ef4b999ecb7476bc/oracledb-2.2.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffee9c31b1d66f8ec0ed98f770dd2731fc097e74fd5ab0061ed06cbcaaf1b23b",
                "md5": "b5bbc9bcd79a518fbd30c34ac90b068f",
                "sha256": "de3f9fa10b5f5c5dbe80dc7bdea5e5746abd411217e812fae66cc61c68f3f8f6"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b5bbc9bcd79a518fbd30c34ac90b068f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 11040927,
            "upload_time": "2024-05-02T16:27:02",
            "upload_time_iso_8601": "2024-05-02T16:27:02.858919Z",
            "url": "https://files.pythonhosted.org/packages/ff/ee/9c31b1d66f8ec0ed98f770dd2731fc097e74fd5ab0061ed06cbcaaf1b23b/oracledb-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bca9fa78d717d09702b524e47b8a3a978f852b4bf717191596634565754cdac2",
                "md5": "fa1b296427ddc59b7d86f568e494a1ce",
                "sha256": "ba96a450275bceb5e0928e0dc01b5fb200e81ba04e99499d4930ccba681fd88a"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa1b296427ddc59b7d86f568e494a1ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 11138515,
            "upload_time": "2024-05-02T16:27:06",
            "upload_time_iso_8601": "2024-05-02T16:27:06.272441Z",
            "url": "https://files.pythonhosted.org/packages/bc/a9/fa78d717d09702b524e47b8a3a978f852b4bf717191596634565754cdac2/oracledb-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62cc112a52d0f1ee3c2c2a3b03b29a4449d297feae2e385d9885fd12106a804c",
                "md5": "36110aff22b657c97dd9dedb4d8f9aad",
                "sha256": "35b6524b57979dbe8463af06648ad9972bce06e014a292ad96fec34c62665a8b"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "36110aff22b657c97dd9dedb4d8f9aad",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1366627,
            "upload_time": "2024-05-02T16:27:08",
            "upload_time_iso_8601": "2024-05-02T16:27:08.509323Z",
            "url": "https://files.pythonhosted.org/packages/62/cc/112a52d0f1ee3c2c2a3b03b29a4449d297feae2e385d9885fd12106a804c/oracledb-2.2.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c489c1f8625f10690f6c07b53941e3f7eb7374d4cbe9c92ad8249ff610a48651",
                "md5": "67c4d48a70772f518b5d3e31168435de",
                "sha256": "0b4968f39871d501ab16a2fe05b5b4ae954e338e6b9dcefeb9bced998ddd4c4b"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "67c4d48a70772f518b5d3e31168435de",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1653588,
            "upload_time": "2024-05-02T16:27:10",
            "upload_time_iso_8601": "2024-05-02T16:27:10.943531Z",
            "url": "https://files.pythonhosted.org/packages/c4/89/c1f8625f10690f6c07b53941e3f7eb7374d4cbe9c92ad8249ff610a48651/oracledb-2.2.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9940e401b2d582a1b47df87b6dc9e7a7d4c30be9d44cc760d7e97be7600bea76",
                "md5": "653dc4ed813227c5400e797b9ec919be",
                "sha256": "f52c7df38b13243b5ce583457b80748a34682b9bb8370da2497868b71976798b"
            },
            "downloads": -1,
            "filename": "oracledb-2.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "653dc4ed813227c5400e797b9ec919be",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 579557,
            "upload_time": "2024-05-02T16:25:55",
            "upload_time_iso_8601": "2024-05-02T16:25:55.069253Z",
            "url": "https://files.pythonhosted.org/packages/99/40/e401b2d582a1b47df87b6dc9e7a7d4c30be9d44cc760d7e97be7600bea76/oracledb-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-02 16:25:55",
    "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.37005s