oracledb


Nameoracledb JSON
Version 3.4.0 PyPI version JSON
download
home_pageNone
SummaryPython interface to Oracle Database
upload_time2025-10-07 04:15:36
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

The python-oracledb driver is the widely used, open-source [Python][python]
extension module allowing Python programs to connect directly to [Oracle
Database][oracledb] with no extra libraries needed. The module is built with
Cython for safety and speed. It is lightweight and high-performance. It is
stable, well tested, and has comprehensive [documentation][documentation]. The
module is maintained by Oracle.

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 used by many Python frameworks, SQL generators,
ORMs, and libraries.

Python-oracledb has a rich feature set which is easy to use. It gives you
control over SQL and PL/SQL statement execution; for working with data frames;
for fast data ingestion; for calling NoSQL-style document APIs; for message
queueing; for receiving database notifications; and for starting and stopping
the database. It also has high availability and security features. Synchronous
and [concurrent][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"                  # Sample database username
cs = "localhost/orclpdb"      # Sample database connection string
# cs = "localhost/freepdb1"   # For Oracle Database Free users
# cs = "localhost/orclpdb1"   # Some databases may have this service
pw = getpass.getpass(f"Enter password for {un}@{cs}: ")

with oracledb.connect(user=un, password=pw, dsn=cs) as connection:
    with connection.cursor() as cursor:
        sql = "select sysdate from dual"
        for r in cursor.execute(sql):
            print(r)
```

## Dependencies and Interoperability

- Python versions 3.9 through 3.14.

  Pre-built packages are available on [PyPI][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 versions 11.2 through 23, inclusive.

- 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 19 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/8d/24/47601e8c2c80b577ad62a05b1e904670116845b5e013591aca05ad973309/oracledb-3.4.0.tar.gz",
    "platform": null,
    "description": "# python-oracledb\n\nThe python-oracledb driver is the widely used, open-source [Python][python]\nextension module allowing Python programs to connect directly to [Oracle\nDatabase][oracledb] with no extra libraries needed. The module is built with\nCython for safety and speed. It is lightweight and high-performance. It is\nstable, well tested, and has comprehensive [documentation][documentation]. The\nmodule is maintained by Oracle.\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]. It is used by many Python frameworks, SQL generators,\nORMs, and libraries.\n\nPython-oracledb has a rich feature set which is easy to use. It gives you\ncontrol over SQL and PL/SQL statement execution; for working with data frames;\nfor fast data ingestion; for calling NoSQL-style document APIs; for message\nqueueing; for receiving database notifications; and for starting and stopping\nthe database. It also has high availability and security features. Synchronous\nand [concurrent][concurrent] coding styles are supported. Database operations\ncan 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\"                  # Sample database username\ncs = \"localhost/orclpdb\"      # Sample database connection string\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 versions 11.2 through 23, inclusive.\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 19 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.4.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": "eaac1315ecabc52ef5c08860e8f7eebd0496748a7ad490f34476e9a6eaa9277b",
                "md5": "a6c56974edc5de0335260e63c9229c0a",
                "sha256": "90e5036599264837b9738202e50b4d6e0a16512fbdd0a8d7bdd18f44c4ab9e4a"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a6c56974edc5de0335260e63c9229c0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 4425597,
            "upload_time": "2025-10-07T04:15:47",
            "upload_time_iso_8601": "2025-10-07T04:15:47.242003Z",
            "url": "https://files.pythonhosted.org/packages/ea/ac/1315ecabc52ef5c08860e8f7eebd0496748a7ad490f34476e9a6eaa9277b/oracledb-3.4.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd5e7a7abac9b3fe1cea84ed13df8e0558a6285de7aa9295b6fda1ab338f7cb2",
                "md5": "eb014673f913449894648fc005311317",
                "sha256": "e9517bc386edf91f311023f72ac02a55a69e2c55218f020d6359c3b95d5bf7db"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb014673f913449894648fc005311317",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2523648,
            "upload_time": "2025-10-07T04:15:49",
            "upload_time_iso_8601": "2025-10-07T04:15:49.371845Z",
            "url": "https://files.pythonhosted.org/packages/bd/5e/7a7abac9b3fe1cea84ed13df8e0558a6285de7aa9295b6fda1ab338f7cb2/oracledb-3.4.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": "6e2f3d1e8363032fcf4d0364b2523ea0477d902c583fe8cda716cb109908be9f",
                "md5": "d5cdca38f0917ca71becef02f101fcb7",
                "sha256": "10c3778c7994809fbb05d27b36f5579d7837a1961cc034cedb6c4808222c4435"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d5cdca38f0917ca71becef02f101fcb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2701596,
            "upload_time": "2025-10-07T04:15:51",
            "upload_time_iso_8601": "2025-10-07T04:15:51.539537Z",
            "url": "https://files.pythonhosted.org/packages/6e/2f/3d1e8363032fcf4d0364b2523ea0477d902c583fe8cda716cb109908be9f/oracledb-3.4.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": "00cdd5e6f2d24c78ce0fe0927c185334def7030ead903b314be8155cb910cafb",
                "md5": "d8ffafaa242c5554e550bed85299f30a",
                "sha256": "2d43234f26a5928390cd9c83923054cf442875bd34f2b9b9b2432427de15a037"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "d8ffafaa242c5554e550bed85299f30a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1555277,
            "upload_time": "2025-10-07T04:15:54",
            "upload_time_iso_8601": "2025-10-07T04:15:54.107647Z",
            "url": "https://files.pythonhosted.org/packages/00/cd/d5e6f2d24c78ce0fe0927c185334def7030ead903b314be8155cb910cafb/oracledb-3.4.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2da247fea207225e6b1fca6e74577b6748c944bb69b88884af44bf6b743f8d8",
                "md5": "0708fe7e00920e54ebe5ca11c54fb90d",
                "sha256": "d8687750374a947c12b05ffa2e7788fe93bb8cbf16cb1f231578381f47b976aa"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0708fe7e00920e54ebe5ca11c54fb90d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1907401,
            "upload_time": "2025-10-07T04:15:56",
            "upload_time_iso_8601": "2025-10-07T04:15:56.043400Z",
            "url": "https://files.pythonhosted.org/packages/e2/da/247fea207225e6b1fca6e74577b6748c944bb69b88884af44bf6b743f8d8/oracledb-3.4.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5f745b7be483b100d1d3b0f8620a1073b098b1d5eb00b38dd4526516b8e537d",
                "md5": "ccada55628247e3964cefd9ca3d7c35d",
                "sha256": "ea8d5b548657cf89fb3b9a071a87726a755d5546eb452365d31d3cdb6814d56b"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ccada55628247e3964cefd9ca3d7c35d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 4483773,
            "upload_time": "2025-10-07T04:15:59",
            "upload_time_iso_8601": "2025-10-07T04:15:59.519884Z",
            "url": "https://files.pythonhosted.org/packages/b5/f7/45b7be483b100d1d3b0f8620a1073b098b1d5eb00b38dd4526516b8e537d/oracledb-3.4.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6c95ff47cef222260eb07f9d24fdf617fd9031eb12178fe7494d48528e28784",
                "md5": "307ce5d3c28cc268c0a04831cc92b65f",
                "sha256": "a8b260a495472212025409788b4f470d15590b0912e2912e2c6019fbda92aea9"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "307ce5d3c28cc268c0a04831cc92b65f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2561595,
            "upload_time": "2025-10-07T04:16:01",
            "upload_time_iso_8601": "2025-10-07T04:16:01.376486Z",
            "url": "https://files.pythonhosted.org/packages/d6/c9/5ff47cef222260eb07f9d24fdf617fd9031eb12178fe7494d48528e28784/oracledb-3.4.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": "1289d4f1f925bcf6151f8035e86604df9bd6472fe6a4470064d243d4c6cdf8df",
                "md5": "d6f18b8f2fbd1803831fad160338a89e",
                "sha256": "06384289b4c3bb1f6af9c0911e4551fab90d4e8de8d9e8c889b95d9dc90e8db8"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d6f18b8f2fbd1803831fad160338a89e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2736584,
            "upload_time": "2025-10-07T04:16:03",
            "upload_time_iso_8601": "2025-10-07T04:16:03.595740Z",
            "url": "https://files.pythonhosted.org/packages/12/89/d4f1f925bcf6151f8035e86604df9bd6472fe6a4470064d243d4c6cdf8df/oracledb-3.4.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": "33d01fcc2f312c8cb5ea130f8915b9782db1b5d2287a624dd8f777c81238a03e",
                "md5": "9473bd75873224b4d9245a6e110d62d3",
                "sha256": "90b0605b8096cfed23006a1825e6c84164f6ebb57d0661ca83ad530a9fca09d1"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "9473bd75873224b4d9245a6e110d62d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1553088,
            "upload_time": "2025-10-07T04:16:06",
            "upload_time_iso_8601": "2025-10-07T04:16:06.466309Z",
            "url": "https://files.pythonhosted.org/packages/33/d0/1fcc2f312c8cb5ea130f8915b9782db1b5d2287a624dd8f777c81238a03e/oracledb-3.4.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb3848a7dc4d8992bd3436d0a95bf85afafd5afd87c2f60a5493fb61f9525d7e",
                "md5": "b09806c7556aa7d5b01fef1d5925b3f5",
                "sha256": "f400d30e1afc45bc54bde6fde58c5c6dddf9bc65c73e261f2c8a44b36131e627"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b09806c7556aa7d5b01fef1d5925b3f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1913920,
            "upload_time": "2025-10-07T04:16:08",
            "upload_time_iso_8601": "2025-10-07T04:16:08.543996Z",
            "url": "https://files.pythonhosted.org/packages/eb/38/48a7dc4d8992bd3436d0a95bf85afafd5afd87c2f60a5493fb61f9525d7e/oracledb-3.4.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd9c7c7c9be57867842b166935ecf354b290d3b4cd7e6c070f68db3f71d5e0d4",
                "md5": "18204555704548fc7a103060883ca50f",
                "sha256": "4613fef1a0ede3c3af8398f5b693e7914e725d1c0fa7ccf03742192d1e496758"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "18204555704548fc7a103060883ca50f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 4485180,
            "upload_time": "2025-10-07T04:16:11",
            "upload_time_iso_8601": "2025-10-07T04:16:11.179339Z",
            "url": "https://files.pythonhosted.org/packages/dd/9c/7c7c9be57867842b166935ecf354b290d3b4cd7e6c070f68db3f71d5e0d4/oracledb-3.4.0-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6635e16a31e5f0430c806aac564ebc13ccdae1bfe371b90c877255d0aff21e76",
                "md5": "a49112cdfbcdab3cd13c89cd4abc071c",
                "sha256": "796cfb1ce492523379836bc4880b9665993e5cf5044a0fb55b40ab3f617be983"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a49112cdfbcdab3cd13c89cd4abc071c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2373297,
            "upload_time": "2025-10-07T04:16:14",
            "upload_time_iso_8601": "2025-10-07T04:16:14.016729Z",
            "url": "https://files.pythonhosted.org/packages/66/35/e16a31e5f0430c806aac564ebc13ccdae1bfe371b90c877255d0aff21e76/oracledb-3.4.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": "db9e10e4f13081e51e7a55b9ddd2e84657ff45576f1062b953125499a11b547e",
                "md5": "b36f2014804daecc0ce5125800345efe",
                "sha256": "7e59627831df8910a48a1650ef48c3e57a91399c97f13029c632d2ae311b49b3"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b36f2014804daecc0ce5125800345efe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2569896,
            "upload_time": "2025-10-07T04:16:16",
            "upload_time_iso_8601": "2025-10-07T04:16:16.867992Z",
            "url": "https://files.pythonhosted.org/packages/db/9e/10e4f13081e51e7a55b9ddd2e84657ff45576f1062b953125499a11b547e/oracledb-3.4.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": "4661f2fb338e523fb00e091722954994289565674435bf0b0438671e1e941723",
                "md5": "7c3fe5a68b57f444013057fc913d51eb",
                "sha256": "f0f59f15c4dc2a41ae66398c0c6416f053efb1be04309e0534acc9c39c2bbbae"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "7c3fe5a68b57f444013057fc913d51eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1513408,
            "upload_time": "2025-10-07T04:16:18",
            "upload_time_iso_8601": "2025-10-07T04:16:18.882964Z",
            "url": "https://files.pythonhosted.org/packages/46/61/f2fb338e523fb00e091722954994289565674435bf0b0438671e1e941723/oracledb-3.4.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f74489d1758a7b13da1049a8c3cd98945ead0a798b66aefb544ec14a9e206ec",
                "md5": "432fce5fe6099a77fc44a157f5fe3191",
                "sha256": "ce9380e757f29d79df6d1c8b4e14d68507d4b1b720c9fd8a9549a0605364a770"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "432fce5fe6099a77fc44a157f5fe3191",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1869386,
            "upload_time": "2025-10-07T04:16:20",
            "upload_time_iso_8601": "2025-10-07T04:16:20.605337Z",
            "url": "https://files.pythonhosted.org/packages/7f/74/489d1758a7b13da1049a8c3cd98945ead0a798b66aefb544ec14a9e206ec/oracledb-3.4.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "220ba154fb2d73130afffa617f4bdcd2debf6f2160f529f8573f833ce041e477",
                "md5": "663c95556df6a03efa679a3adcd17260",
                "sha256": "70b5c732832297c2e1b5ea067c79a253edf3c70a0dedd2f8f269231fd0c649a3"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "663c95556df6a03efa679a3adcd17260",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 4466938,
            "upload_time": "2025-10-07T04:16:23",
            "upload_time_iso_8601": "2025-10-07T04:16:23.630276Z",
            "url": "https://files.pythonhosted.org/packages/22/0b/a154fb2d73130afffa617f4bdcd2debf6f2160f529f8573f833ce041e477/oracledb-3.4.0-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "269c18e48120965870d1b395e50a50872748b5a369f924b10997ea64f069cc58",
                "md5": "1a3695b1f8b9e268f3e40aa574b5fb8c",
                "sha256": "3c32e7742cba933ca3271762d9565a0b2fdb8d3b7f03d105401834c7ea25831e"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1a3695b1f8b9e268f3e40aa574b5fb8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2364723,
            "upload_time": "2025-10-07T04:16:25",
            "upload_time_iso_8601": "2025-10-07T04:16:25.719013Z",
            "url": "https://files.pythonhosted.org/packages/26/9c/18e48120965870d1b395e50a50872748b5a369f924b10997ea64f069cc58/oracledb-3.4.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": "2530d426824d6f4cbb3609975c8c1beb6c394a47f9e0274306a1a49595599294",
                "md5": "fa2544904105a2f651d146b430415acf",
                "sha256": "0b1da9bbd4411bd53ddcfb5ce9a69d791f42f6a6c8cd6665cfc20d1d88497cc7"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa2544904105a2f651d146b430415acf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2559838,
            "upload_time": "2025-10-07T04:16:28",
            "upload_time_iso_8601": "2025-10-07T04:16:28.175591Z",
            "url": "https://files.pythonhosted.org/packages/25/30/d426824d6f4cbb3609975c8c1beb6c394a47f9e0274306a1a49595599294/oracledb-3.4.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": "0505a4c6881b1d09893e04a12eaff01094aabdf9b0fb6b1cb5fab5aeb1a0f6c5",
                "md5": "a98b2b51dc7866114a7c146d37e99e6e",
                "sha256": "2038870b19902fd1bf2735905d521bbd3e389298c47c39873d94b410ea61ae51"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "a98b2b51dc7866114a7c146d37e99e6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1516726,
            "upload_time": "2025-10-07T04:16:30",
            "upload_time_iso_8601": "2025-10-07T04:16:30.066214Z",
            "url": "https://files.pythonhosted.org/packages/05/05/a4c6881b1d09893e04a12eaff01094aabdf9b0fb6b1cb5fab5aeb1a0f6c5/oracledb-3.4.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7573b102f11ca161963c29a1783a4589cac1b9490c9233327b590a6be1e52a61",
                "md5": "7577254f4aad6766e1641c0013dac9f1",
                "sha256": "f752823649cc1d27e90a439b823d94b9a5839189597b932b5ffbeeb607177a27"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7577254f4aad6766e1641c0013dac9f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1868572,
            "upload_time": "2025-10-07T04:16:31",
            "upload_time_iso_8601": "2025-10-07T04:16:31.916874Z",
            "url": "https://files.pythonhosted.org/packages/75/73/b102f11ca161963c29a1783a4589cac1b9490c9233327b590a6be1e52a61/oracledb-3.4.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0b4b6ad31422d01018121eeac961f8af8eb8cf39b7f3c00c3295ffc2c8b8936",
                "md5": "1e97a0cc036a09b957d7c45c22154b9c",
                "sha256": "9d842a1c1f8462ca9b5228f79f93cfa7b7f33d202ab642509e7071134e8e12d2"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp314-cp314-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "1e97a0cc036a09b957d7c45c22154b9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 4482933,
            "upload_time": "2025-10-07T04:16:33",
            "upload_time_iso_8601": "2025-10-07T04:16:33.990890Z",
            "url": "https://files.pythonhosted.org/packages/f0/b4/b6ad31422d01018121eeac961f8af8eb8cf39b7f3c00c3295ffc2c8b8936/oracledb-3.4.0-cp314-cp314-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50e09b5e359ed800c632cbcf6517f8e345a712e1357bfe67e6d9f864d72bf6ae",
                "md5": "9f9f7248f7723991850323c1a1a93978",
                "sha256": "746154270932699235229c776ced35e7759d80cf95cba1b326744bebc7ae7f77"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9f9f7248f7723991850323c1a1a93978",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2400273,
            "upload_time": "2025-10-07T04:16:35",
            "upload_time_iso_8601": "2025-10-07T04:16:35.677351Z",
            "url": "https://files.pythonhosted.org/packages/50/e0/9b5e359ed800c632cbcf6517f8e345a712e1357bfe67e6d9f864d72bf6ae/oracledb-3.4.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": "0308057341d84adbe4a8e73b875a9e732a0356fe9602f6dc6923edcc3e3aa509",
                "md5": "8969517fd228035e6b410cd051974497",
                "sha256": "b7b312896bafb7f6e0e724b4fc2c28c4df6338302ac0906da05a07db5666e578"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8969517fd228035e6b410cd051974497",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2574810,
            "upload_time": "2025-10-07T04:16:37",
            "upload_time_iso_8601": "2025-10-07T04:16:37.502298Z",
            "url": "https://files.pythonhosted.org/packages/03/08/057341d84adbe4a8e73b875a9e732a0356fe9602f6dc6923edcc3e3aa509/oracledb-3.4.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": "6c028d110e380cb7656ae5e6b91976595f2a174e3a858b6c7dfed0d795dc68ed",
                "md5": "d1393c5c6b5966f7f68e143d2f9a70b0",
                "sha256": "98689c068900c6b276182c2f6181a2a42c905a0b4d7dc42bed05b80d515bf609"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "d1393c5c6b5966f7f68e143d2f9a70b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1537801,
            "upload_time": "2025-10-07T04:16:39",
            "upload_time_iso_8601": "2025-10-07T04:16:39.184722Z",
            "url": "https://files.pythonhosted.org/packages/6c/02/8d110e380cb7656ae5e6b91976595f2a174e3a858b6c7dfed0d795dc68ed/oracledb-3.4.0-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5694679eabc8629caa5b4caa033871b294b9eef8b986d466be2f499c4cdc4bdd",
                "md5": "0a8c592034e199c3406a59b565af21d8",
                "sha256": "e89031578e08051ce2aa05f7590ca9d3368b0609dba614949fa85cf726482f5d"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0a8c592034e199c3406a59b565af21d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1901942,
            "upload_time": "2025-10-07T04:16:40",
            "upload_time_iso_8601": "2025-10-07T04:16:40.709164Z",
            "url": "https://files.pythonhosted.org/packages/56/94/679eabc8629caa5b4caa033871b294b9eef8b986d466be2f499c4cdc4bdd/oracledb-3.4.0-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "878deade29811654cf895055378868c262fdf1d6dafae28eabee87a6e71eb28c",
                "md5": "a9706d571b37e4ae99de1bc9ba2fa230",
                "sha256": "2f9b815ae60eaccc73abece18683d6984f7fc793eca9a451578ad3cbf22c8ae9"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a9706d571b37e4ae99de1bc9ba2fa230",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 4430806,
            "upload_time": "2025-10-07T04:16:43",
            "upload_time_iso_8601": "2025-10-07T04:16:43.140566Z",
            "url": "https://files.pythonhosted.org/packages/87/8d/eade29811654cf895055378868c262fdf1d6dafae28eabee87a6e71eb28c/oracledb-3.4.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c02f56cb00f126a8329729ed253709f1ddcd23883f8339010d4d114995a9b181",
                "md5": "196942be30ad12aaf0c42e9a327e9d52",
                "sha256": "d183373a574612db274782ab4fc549b1951d611ca68d34f98d53a9ed8ed210aa"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "196942be30ad12aaf0c42e9a327e9d52",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2524873,
            "upload_time": "2025-10-07T04:16:45",
            "upload_time_iso_8601": "2025-10-07T04:16:45.068463Z",
            "url": "https://files.pythonhosted.org/packages/c0/2f/56cb00f126a8329729ed253709f1ddcd23883f8339010d4d114995a9b181/oracledb-3.4.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": "3a1eab648276086dbff0f86a7ce93f88e5f02ede289e29c8d0a7223db78a0f3e",
                "md5": "86abae5245bba413a0123991b84b7522",
                "sha256": "5cc94c5b25c160a14909119e4ac6222464da9cb398dbdb2fa4b551b7628fe056"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86abae5245bba413a0123991b84b7522",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2699213,
            "upload_time": "2025-10-07T04:16:46",
            "upload_time_iso_8601": "2025-10-07T04:16:46.946526Z",
            "url": "https://files.pythonhosted.org/packages/3a/1e/ab648276086dbff0f86a7ce93f88e5f02ede289e29c8d0a7223db78a0f3e/oracledb-3.4.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": "90a0474d74b188065676f2400a4f41d02534fa47d1f66554c47534d450f02ca3",
                "md5": "433df705857f932c822d24505c04d98b",
                "sha256": "99b6bf68e3ee1227584b2b0a0cb18410c177e4fe7d04a16c23938011571bba3a"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "433df705857f932c822d24505c04d98b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1556837,
            "upload_time": "2025-10-07T04:16:48",
            "upload_time_iso_8601": "2025-10-07T04:16:48.663494Z",
            "url": "https://files.pythonhosted.org/packages/90/a0/474d74b188065676f2400a4f41d02534fa47d1f66554c47534d450f02ca3/oracledb-3.4.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4657a466492132573138ebcb75d8ba263810e16f23c7d812eafe9e3562044bb8",
                "md5": "d7207787e53d3bb60e0cb54ffd9d42d7",
                "sha256": "10cd40e00a1ff411a8a6a077d076442a248dd2ec083688ac2001f9ab124efc54"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d7207787e53d3bb60e0cb54ffd9d42d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1910468,
            "upload_time": "2025-10-07T04:16:50",
            "upload_time_iso_8601": "2025-10-07T04:16:50.517459Z",
            "url": "https://files.pythonhosted.org/packages/46/57/a466492132573138ebcb75d8ba263810e16f23c7d812eafe9e3562044bb8/oracledb-3.4.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d2447601e8c2c80b577ad62a05b1e904670116845b5e013591aca05ad973309",
                "md5": "c4b4c19e44190df8f3b2fb77b8081342",
                "sha256": "3196f0b9d3475313e832d4fd944ab21f7ebdf596d9abd7efd2b2f7e208538150"
            },
            "downloads": -1,
            "filename": "oracledb-3.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c4b4c19e44190df8f3b2fb77b8081342",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 851221,
            "upload_time": "2025-10-07T04:15:36",
            "upload_time_iso_8601": "2025-10-07T04:15:36.280520Z",
            "url": "https://files.pythonhosted.org/packages/8d/24/47601e8c2c80b577ad62a05b1e904670116845b5e013591aca05ad973309/oracledb-3.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-07 04:15:36",
    "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.60572s