oat-python


Nameoat-python JSON
Version 0.1.1 PyPI version JSON
download
home_pagehttps://openappliedtopology.github.io
SummaryUser-friendly tools for applied topology in Python
upload_time2024-10-17 19:03:01
maintainerNone
docs_urlNone
authorGregory Henselman-Petrusek Roek<gregory.roek@pnnl.gov>
requires_pythonNone
licenseNone
keywords data geometry ai ml hpc
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Open Applied Topology

[Open applied topology (OAT)](https://openappliedtopology.github.io) is a library for fast, user-friendly algebra and topology. OAT has 

- a user-friendly frontend for Python users, called [oat_python](https://github.com/OpenAppliedTopology/oat_python)
- a fast backend written in Rust, called [oat_rust](https://github.com/OpenAppliedTopology/oat_rust) 
- a variety of tutorials published as [jupyter notebooks](https://openappliedtopology.github.io)

This package contains the source code for [oat_python](https://github.com/OpenAppliedTopology/oat_python).


# Caution: breaking changes

OAT is in early stages of develpoment, and it's evolving quickly. Code that you write today may not work tomorrow, due to these changes. We will do our very best to make sure that if/when this happens, you will only need to make small changes to your code to fix the problem (e.g., updating the name of a function). However, please do bear this in mind as you write your code!

# Install and explore

**Python users** Can install oat_python through [PyPI](https://pypi.org/project/oat_python/) using any package manager, for example `pip install oat_python`, `conda_install oat_python`, etc. Explore the [Jupyter notebook tutorials on GitHub](https://github.com/OpenAppliedTopology/oat)!


**Developers** Everyone is a developer, and everyone is invited to modify and extend the source code for this package! oat_python is a combination of Rust and Python code. We developed oat_python using `PyO3` and `maturin`. To download and modify oat_python, then install and use the modified version, check out the instructions for Python [Installation from source](#python-installation-from-source), below.

# Documentation

Documentation for OAT-Python is currently under development. 

**Python users** The best resources currently available are
- [Jupyter notebook tutorials](https://openappliedtopology.github.io) available on the OAT homepage
- Docstrings available through Python's `help()` function.

**Rust Developers** If you are interested in modifying the Rust code in OAT-Python, see the API documenation for oat_python available at [Crates.io](https://crates.io/crates/oat_python). You may also find it helpful to explore the documenation for PyO3 and Maturin, which are the packages used to link Rust and Python.

**Python Developers** Documentation for the Python API is not available at this time (we are working to address this). In the meantime we have done our best to document the code with docstrings, and encourage you to check out the source code directly. 

# Contributing

For information on **contributing**, see [`CONTRIBUTING.md`](https://github.com/OpenAppliedTopology/oat_python/blob/main/CONTRIBUTING.md).

# License

For inforamtion on copyright and licensing, see [`LICENSE`](https://github.com/OpenAppliedTopology/oat_python/blob/main/LICENSE).

# Attributions

OAT is an extension of the ExHACT library. See [`ATTRIBUTIONS.md`](https://github.com/OpenAppliedTopology/oat_python/blob/main/ATTRIBUTIONS.md) for details.

# Python Installation from source

1. Download and install the most recent version of [Rust](https://www.rust-lang.org/).  Make sure your installation is up to date by running `rustup update` in a command shell.

2. Create a virtual Python environment, e.g. using Anaconda, or open one that you already have.  In this example, let's assume the environment name is `myenv`.  Activate `myenv`, and run

    ```bash
    pip install maturin
    ```

    A number of warning messages may appear; this is normal. 

    **If you already have maturin installed, make sure it is up to date!**

3. [Clone](https://github.com/OpenAppliedTopology/oat_python) a copy of oat_python. Open a shell and CD into the oat_python folder.  Activate `myenv` and run

    ```bash
    maturin develop --release
    ```
    
5. oat_python should now be installed.  Try running the Jupyter notebooks with `myenv`!


            

Raw data

            {
    "_id": null,
    "home_page": "https://openappliedtopology.github.io",
    "name": "oat-python",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "data, geometry, AI, ML, HPC",
    "author": "Gregory Henselman-Petrusek Roek<gregory.roek@pnnl.gov>",
    "author_email": "Gregory Henselman-Petrusek Roek<gregory.roek@pnnl.gov>",
    "download_url": "https://files.pythonhosted.org/packages/0a/a1/6e7a7484deec07bc1a0e53a132c0abe05a91b9eb910875814ced2e13220d/oat_python-0.1.1.tar.gz",
    "platform": null,
    "description": "# Open Applied Topology\n\n[Open applied topology (OAT)](https://openappliedtopology.github.io) is a library for fast, user-friendly algebra and topology. OAT has \n\n- a user-friendly frontend for Python users, called [oat_python](https://github.com/OpenAppliedTopology/oat_python)\n- a fast backend written in Rust, called [oat_rust](https://github.com/OpenAppliedTopology/oat_rust) \n- a variety of tutorials published as [jupyter notebooks](https://openappliedtopology.github.io)\n\nThis package contains the source code for [oat_python](https://github.com/OpenAppliedTopology/oat_python).\n\n\n# Caution: breaking changes\n\nOAT is in early stages of develpoment, and it's evolving quickly. Code that you write today may not work tomorrow, due to these changes. We will do our very best to make sure that if/when this happens, you will only need to make small changes to your code to fix the problem (e.g., updating the name of a function). However, please do bear this in mind as you write your code!\n\n# Install and explore\n\n**Python users** Can install oat_python through [PyPI](https://pypi.org/project/oat_python/) using any package manager, for example `pip install oat_python`, `conda_install oat_python`, etc. Explore the [Jupyter notebook tutorials on GitHub](https://github.com/OpenAppliedTopology/oat)!\n\n\n**Developers** Everyone is a developer, and everyone is invited to modify and extend the source code for this package! oat_python is a combination of Rust and Python code. We developed oat_python using `PyO3` and `maturin`. To download and modify oat_python, then install and use the modified version, check out the instructions for Python [Installation from source](#python-installation-from-source), below.\n\n# Documentation\n\nDocumentation for OAT-Python is currently under development. \n\n**Python users** The best resources currently available are\n- [Jupyter notebook tutorials](https://openappliedtopology.github.io) available on the OAT homepage\n- Docstrings available through Python's `help()` function.\n\n**Rust Developers** If you are interested in modifying the Rust code in OAT-Python, see the API documenation for oat_python available at [Crates.io](https://crates.io/crates/oat_python). You may also find it helpful to explore the documenation for PyO3 and Maturin, which are the packages used to link Rust and Python.\n\n**Python Developers** Documentation for the Python API is not available at this time (we are working to address this). In the meantime we have done our best to document the code with docstrings, and encourage you to check out the source code directly. \n\n# Contributing\n\nFor information on **contributing**, see [`CONTRIBUTING.md`](https://github.com/OpenAppliedTopology/oat_python/blob/main/CONTRIBUTING.md).\n\n# License\n\nFor inforamtion on copyright and licensing, see [`LICENSE`](https://github.com/OpenAppliedTopology/oat_python/blob/main/LICENSE).\n\n# Attributions\n\nOAT is an extension of the ExHACT library. See [`ATTRIBUTIONS.md`](https://github.com/OpenAppliedTopology/oat_python/blob/main/ATTRIBUTIONS.md) for details.\n\n# Python Installation from source\n\n1. Download and install the most recent version of [Rust](https://www.rust-lang.org/).  Make sure your installation is up to date by running `rustup update` in a command shell.\n\n2. Create a virtual Python environment, e.g. using Anaconda, or open one that you already have.  In this example, let's assume the environment name is `myenv`.  Activate `myenv`, and run\n\n    ```bash\n    pip install maturin\n    ```\n\n    A number of warning messages may appear; this is normal. \n\n    **If you already have maturin installed, make sure it is up to date!**\n\n3. [Clone](https://github.com/OpenAppliedTopology/oat_python) a copy of oat_python. Open a shell and CD into the oat_python folder.  Activate `myenv` and run\n\n    ```bash\n    maturin develop --release\n    ```\n    \n5. oat_python should now be installed.  Try running the Jupyter notebooks with `myenv`!\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "User-friendly tools for applied topology in Python",
    "version": "0.1.1",
    "project_urls": {
        "Homepage": "https://openappliedtopology.github.io",
        "Source Code": "https://github.com/OpenAppliedTopology/oat_python"
    },
    "split_keywords": [
        "data",
        " geometry",
        " ai",
        " ml",
        " hpc"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afc3710eef83617fe220e20dc6b1ec304f60dbff6de2b5ca9df283bb0ed7896b",
                "md5": "b9155b1d840cfe6f745aed2ecdd23b35",
                "sha256": "76ddc6102376ee00b96b9be6c21ffc078d27ab109893bed252498d6daf6a18df"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b9155b1d840cfe6f745aed2ecdd23b35",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 660445,
            "upload_time": "2024-10-17T19:01:37",
            "upload_time_iso_8601": "2024-10-17T19:01:37.613865Z",
            "url": "https://files.pythonhosted.org/packages/af/c3/710eef83617fe220e20dc6b1ec304f60dbff6de2b5ca9df283bb0ed7896b/oat_python-0.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0670ecab6eb04c37330428d6e12df4e17b50d88bad7faa7a36e630daaac691f",
                "md5": "1e9a28501bf10addce6cb9e4e1a3c1ef",
                "sha256": "0cd5a036c41807a3d50bd71d992d0fa56e40167db30f6d42ef25a0a051cee3a6"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1e9a28501bf10addce6cb9e4e1a3c1ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 726662,
            "upload_time": "2024-10-17T19:00:09",
            "upload_time_iso_8601": "2024-10-17T19:00:09.919644Z",
            "url": "https://files.pythonhosted.org/packages/a0/67/0ecab6eb04c37330428d6e12df4e17b50d88bad7faa7a36e630daaac691f/oat_python-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e7161cd451f79b0bda3312639f3518f747bb95f12ef2537ba0a35fc7ffcbe9c",
                "md5": "fa626a92c0a46576ded35b4f67ba57f4",
                "sha256": "179c79328a06ac834849d90b3b1a11de77bb6654f8d08b573a27289a6a1f7c6d"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fa626a92c0a46576ded35b4f67ba57f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 738502,
            "upload_time": "2024-10-17T19:00:27",
            "upload_time_iso_8601": "2024-10-17T19:00:27.371024Z",
            "url": "https://files.pythonhosted.org/packages/0e/71/61cd451f79b0bda3312639f3518f747bb95f12ef2537ba0a35fc7ffcbe9c/oat_python-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c4b5058c46f9bcc56c907608332e47d867a2e54bd69fc8d3d87428e6e1efba3",
                "md5": "8f7623df90c3a046c4147a80930d6a78",
                "sha256": "0da90f560bc0d6261b2051589c7a7e7c35a74e01cd594aabd017178b4daa1661"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8f7623df90c3a046c4147a80930d6a78",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 834319,
            "upload_time": "2024-10-17T19:00:43",
            "upload_time_iso_8601": "2024-10-17T19:00:43.483261Z",
            "url": "https://files.pythonhosted.org/packages/8c/4b/5058c46f9bcc56c907608332e47d867a2e54bd69fc8d3d87428e6e1efba3/oat_python-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f0bad426ce5170a4afdb0cc4c4c8fdb85913da961753b7be4178c21bdcda77c",
                "md5": "4969dd0343c3f0dfb9c0016fd63a298d",
                "sha256": "253f27e1713aa659eefeb3af25a3b3299c4c9aadebcee365a104d90ffa181149"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4969dd0343c3f0dfb9c0016fd63a298d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 940060,
            "upload_time": "2024-10-17T19:00:58",
            "upload_time_iso_8601": "2024-10-17T19:00:58.787564Z",
            "url": "https://files.pythonhosted.org/packages/6f/0b/ad426ce5170a4afdb0cc4c4c8fdb85913da961753b7be4178c21bdcda77c/oat_python-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b566c7a80135892d402aa024c541f426e1348aa70bebd1098231a63d7bf878d",
                "md5": "a8891486f4f803018806f103031881b7",
                "sha256": "bcb594892a551c255f2945912dd304bcb59a41a333add77062e047a7e789123b"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8891486f4f803018806f103031881b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 766445,
            "upload_time": "2024-10-17T19:01:26",
            "upload_time_iso_8601": "2024-10-17T19:01:26.045878Z",
            "url": "https://files.pythonhosted.org/packages/0b/56/6c7a80135892d402aa024c541f426e1348aa70bebd1098231a63d7bf878d/oat_python-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a1cc8b1e6c99372b979c384ca9c7215753618d9cb78198961ad69b059e31ea9",
                "md5": "c112982b77ea8cbd2513dcae69ab6628",
                "sha256": "78bf14c8bb0ae292b3e431fc4879e077c0f7c82bfa121c84001ca4e1fde347e2"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c112982b77ea8cbd2513dcae69ab6628",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 823447,
            "upload_time": "2024-10-17T19:01:14",
            "upload_time_iso_8601": "2024-10-17T19:01:14.486514Z",
            "url": "https://files.pythonhosted.org/packages/1a/1c/c8b1e6c99372b979c384ca9c7215753618d9cb78198961ad69b059e31ea9/oat_python-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f8f607c458189cfd8f12e67202fd09c4a9c8f83094cdd2f7e876c4ef1805e14",
                "md5": "565624e8f1ead150152900f17d905d25",
                "sha256": "f6376d026bada1918e26ddb99dde01e9185422c3473e64fd5f1b94e1b1480eaa"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "565624e8f1ead150152900f17d905d25",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 879225,
            "upload_time": "2024-10-17T19:01:48",
            "upload_time_iso_8601": "2024-10-17T19:01:48.514345Z",
            "url": "https://files.pythonhosted.org/packages/6f/8f/607c458189cfd8f12e67202fd09c4a9c8f83094cdd2f7e876c4ef1805e14/oat_python-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d40562f4cf57dc493a50c6dc84c7c41a812944bca7305d9f17f1b9bf6d9dbd04",
                "md5": "bf5a4b85d879565001ad5e3a3e22f577",
                "sha256": "67bde8e9a3cc57857998e7ad01a76fa255d18b0d718c6c99b6223be3c599fd90"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bf5a4b85d879565001ad5e3a3e22f577",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 957265,
            "upload_time": "2024-10-17T19:02:05",
            "upload_time_iso_8601": "2024-10-17T19:02:05.310385Z",
            "url": "https://files.pythonhosted.org/packages/d4/05/62f4cf57dc493a50c6dc84c7c41a812944bca7305d9f17f1b9bf6d9dbd04/oat_python-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c26980b5707807e6f90bf6fba03f3b876d14f069d1ea303c01b0afcf6ac97101",
                "md5": "cbbe9aea5691a67522b92172d4ca36c1",
                "sha256": "2d0d5627d9226b64f33bf3e812693724c21e228098ae4f14d9ec7b0f7964e422"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "cbbe9aea5691a67522b92172d4ca36c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 912652,
            "upload_time": "2024-10-17T19:02:20",
            "upload_time_iso_8601": "2024-10-17T19:02:20.246443Z",
            "url": "https://files.pythonhosted.org/packages/c2/69/80b5707807e6f90bf6fba03f3b876d14f069d1ea303c01b0afcf6ac97101/oat_python-0.1.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f24840152eafa337553e9ff1f0041938d86b4fe9e9d3a3f3732c841739bc6b6",
                "md5": "3bce4a4f61e6ca475447c1fb3b5eefad",
                "sha256": "6a403674d6cc40e785cbcf719ffe74552637cbfdb66510be50fd80bc1089cb32"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3bce4a4f61e6ca475447c1fb3b5eefad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 885661,
            "upload_time": "2024-10-17T19:02:44",
            "upload_time_iso_8601": "2024-10-17T19:02:44.195133Z",
            "url": "https://files.pythonhosted.org/packages/2f/24/840152eafa337553e9ff1f0041938d86b4fe9e9d3a3f3732c841739bc6b6/oat_python-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91b944a2e54685ff7033d487b5edfdab69c7b02a33920a52dc9f3f6042db9430",
                "md5": "50f68b7356b1512e60868d89c51cad2d",
                "sha256": "05fc5e82903b2ca226b55c0f7c714b9dfe4ade59bc974bf9f76dd20f2b389c0e"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "50f68b7356b1512e60868d89c51cad2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 518340,
            "upload_time": "2024-10-17T19:03:11",
            "upload_time_iso_8601": "2024-10-17T19:03:11.876048Z",
            "url": "https://files.pythonhosted.org/packages/91/b9/44a2e54685ff7033d487b5edfdab69c7b02a33920a52dc9f3f6042db9430/oat_python-0.1.1-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5082e14b0267db6ec10daa97a25f19c1cc82ef071d61639a600730af9fce35c6",
                "md5": "e951a8ca9228a854e91842df43a2541d",
                "sha256": "df740a27a336a9eabae5fea320a8495e96926b6795d65e899a19a220f1e55589"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e951a8ca9228a854e91842df43a2541d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 551811,
            "upload_time": "2024-10-17T19:03:02",
            "upload_time_iso_8601": "2024-10-17T19:03:02.257435Z",
            "url": "https://files.pythonhosted.org/packages/50/82/e14b0267db6ec10daa97a25f19c1cc82ef071d61639a600730af9fce35c6/oat_python-0.1.1-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00e33ef5898bfc9845e58e39bc24b2264cb0d744309a34e126106a044cc984b0",
                "md5": "fdf485273a8dac758e63ae309ec0bb3c",
                "sha256": "d26f4755ac91709a7da9b6a924d19ced44f80d97185f681567ece8d31d6e415a"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fdf485273a8dac758e63ae309ec0bb3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 690869,
            "upload_time": "2024-10-17T19:01:44",
            "upload_time_iso_8601": "2024-10-17T19:01:44.800910Z",
            "url": "https://files.pythonhosted.org/packages/00/e3/3ef5898bfc9845e58e39bc24b2264cb0d744309a34e126106a044cc984b0/oat_python-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80b4726b69df180175e80f6eabd7fa877a37a94487bcbb30c63275d506cc3117",
                "md5": "5d6a7e4de74b0e7fbc256abc0fcfaa4f",
                "sha256": "1526739760a90686c429e17d643eb00e42f12483de999c7c42a55e823d172e57"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5d6a7e4de74b0e7fbc256abc0fcfaa4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 660488,
            "upload_time": "2024-10-17T19:01:38",
            "upload_time_iso_8601": "2024-10-17T19:01:38.984305Z",
            "url": "https://files.pythonhosted.org/packages/80/b4/726b69df180175e80f6eabd7fa877a37a94487bcbb30c63275d506cc3117/oat_python-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88621cef456c74358e3fcbea2a0b0cf0a1110a43bb07590e65c8dbe8a92d3b08",
                "md5": "cd8464d5fcfd0159ed1552a6f73c037c",
                "sha256": "938776ec3b1e893de27de293422d553230e68bedec5979120fc8e9dcc8420470"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd8464d5fcfd0159ed1552a6f73c037c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 726863,
            "upload_time": "2024-10-17T19:00:11",
            "upload_time_iso_8601": "2024-10-17T19:00:11.579252Z",
            "url": "https://files.pythonhosted.org/packages/88/62/1cef456c74358e3fcbea2a0b0cf0a1110a43bb07590e65c8dbe8a92d3b08/oat_python-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b116db30048c9d9ac08b6db110ed4b040e241ee6a1b586e50599a5923f812aef",
                "md5": "c1abc48931e7b35725569c4b6d59d2e5",
                "sha256": "53fff6af9194e225b88befa89c161d51b690f229aa8b8f3646d55341ad38b9a6"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c1abc48931e7b35725569c4b6d59d2e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 738619,
            "upload_time": "2024-10-17T19:00:28",
            "upload_time_iso_8601": "2024-10-17T19:00:28.699554Z",
            "url": "https://files.pythonhosted.org/packages/b1/16/db30048c9d9ac08b6db110ed4b040e241ee6a1b586e50599a5923f812aef/oat_python-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f1da7f9f9c1f9118ca5eb4f8af578a0577f6f82456f2d9cd4f1f97cba98aadf",
                "md5": "6410816b0df06b92b8c6caf0be44d250",
                "sha256": "785647b809b29e7f4f20515382f45a779cf28ce499be6bd892f1f73275507dfa"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6410816b0df06b92b8c6caf0be44d250",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 834368,
            "upload_time": "2024-10-17T19:00:45",
            "upload_time_iso_8601": "2024-10-17T19:00:45.675446Z",
            "url": "https://files.pythonhosted.org/packages/2f/1d/a7f9f9c1f9118ca5eb4f8af578a0577f6f82456f2d9cd4f1f97cba98aadf/oat_python-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89769045956a91f31d929e98c35f2774652430f553150ec0abca9a85e3804c72",
                "md5": "09ce28931c84030de2d211c9e28a4666",
                "sha256": "2232f4658c242a0dae62c63f1bbba65a3d573fd402ee62248315bab9f512ead4"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "09ce28931c84030de2d211c9e28a4666",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 940191,
            "upload_time": "2024-10-17T19:01:00",
            "upload_time_iso_8601": "2024-10-17T19:01:00.230817Z",
            "url": "https://files.pythonhosted.org/packages/89/76/9045956a91f31d929e98c35f2774652430f553150ec0abca9a85e3804c72/oat_python-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d9ed7aae4bceba6eba7a3dbbdac788f9261f789401c0a681a80d0d46385d974",
                "md5": "be8601a7ed4321798a7c73535236234e",
                "sha256": "9f99827a2aef931ed865d9de46c878c602fb2de1c178693fa5d47699d15934b0"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be8601a7ed4321798a7c73535236234e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 766530,
            "upload_time": "2024-10-17T19:01:27",
            "upload_time_iso_8601": "2024-10-17T19:01:27.607934Z",
            "url": "https://files.pythonhosted.org/packages/1d/9e/d7aae4bceba6eba7a3dbbdac788f9261f789401c0a681a80d0d46385d974/oat_python-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4235d875c683371dc521611123e2d7269bd1893ca18b5679857f8e70f583ba43",
                "md5": "467ae0bda48418066cc3966ce0c62445",
                "sha256": "d267fd1e616d32314079d73b72b5ab728341be067db745fba56ca1320afce133"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "467ae0bda48418066cc3966ce0c62445",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 823602,
            "upload_time": "2024-10-17T19:01:15",
            "upload_time_iso_8601": "2024-10-17T19:01:15.884721Z",
            "url": "https://files.pythonhosted.org/packages/42/35/d875c683371dc521611123e2d7269bd1893ca18b5679857f8e70f583ba43/oat_python-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c71171b94a7069adf55efc3b0268ac1dbd7da7e43f0dae3cc0e1397a40aae6a",
                "md5": "ccf3a18100aec33f83a2aa57d8a82d02",
                "sha256": "2d8cdd184e0f76731fb7bdc423a2f52f96cba284681e3f0b4841447485d88388"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ccf3a18100aec33f83a2aa57d8a82d02",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 879274,
            "upload_time": "2024-10-17T19:01:50",
            "upload_time_iso_8601": "2024-10-17T19:01:50.152727Z",
            "url": "https://files.pythonhosted.org/packages/2c/71/171b94a7069adf55efc3b0268ac1dbd7da7e43f0dae3cc0e1397a40aae6a/oat_python-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9bd881758535f41e528d4fcf97c29036a6b2e7b1fbd531dd50e89e374f503eaa",
                "md5": "366fecb0416578a1fbd10ed49f3304d5",
                "sha256": "a19fcd76607f86f759bbf4446108f846e176937153a0c9804626e4a3eb5ab16a"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "366fecb0416578a1fbd10ed49f3304d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 957322,
            "upload_time": "2024-10-17T19:02:06",
            "upload_time_iso_8601": "2024-10-17T19:02:06.658094Z",
            "url": "https://files.pythonhosted.org/packages/9b/d8/81758535f41e528d4fcf97c29036a6b2e7b1fbd531dd50e89e374f503eaa/oat_python-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e157af259d96188ca8145cf03426342d9652d224f090badffd4705e8c46b1dce",
                "md5": "e708cad7873d0b755a94abdfd15551ad",
                "sha256": "f93265143d7db0cf96e2156ea950b1914eb1d5a32604679fd0ceb8fe2e6350e4"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e708cad7873d0b755a94abdfd15551ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 912699,
            "upload_time": "2024-10-17T19:02:22",
            "upload_time_iso_8601": "2024-10-17T19:02:22.049701Z",
            "url": "https://files.pythonhosted.org/packages/e1/57/af259d96188ca8145cf03426342d9652d224f090badffd4705e8c46b1dce/oat_python-0.1.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56741aa500cd59b22beca691401b5077ffe7141d31c54f7e97097a00ed80cc4b",
                "md5": "438c9a6e0f0bcec3bc363ba01b6be7af",
                "sha256": "7aad9ad9a2cf30d6db3a269afd75b9a221edd51dc4fedbbadd075507ec4592d2"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "438c9a6e0f0bcec3bc363ba01b6be7af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 885672,
            "upload_time": "2024-10-17T19:02:46",
            "upload_time_iso_8601": "2024-10-17T19:02:46.063496Z",
            "url": "https://files.pythonhosted.org/packages/56/74/1aa500cd59b22beca691401b5077ffe7141d31c54f7e97097a00ed80cc4b/oat_python-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f090cb542801540d34627e499f12a470bcf4e846c16b6b35bf466cb47736b9a3",
                "md5": "12e8ac073f390591564d10815e4f2cec",
                "sha256": "3c7e7aabd6f572c3eaa570c7e744033fef70f2f3a08c6a4d1c8c71c459e9aca6"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "12e8ac073f390591564d10815e4f2cec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 518344,
            "upload_time": "2024-10-17T19:03:13",
            "upload_time_iso_8601": "2024-10-17T19:03:13.426334Z",
            "url": "https://files.pythonhosted.org/packages/f0/90/cb542801540d34627e499f12a470bcf4e846c16b6b35bf466cb47736b9a3/oat_python-0.1.1-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87841b28f646dc4cb1334adc77b0ccbc9b503951e5dab83fb619b2fd8f02f3d8",
                "md5": "c3988a5e4fd27d1ef5cc04d8c58d6b33",
                "sha256": "01b468cd06d2cd7b34918393b4fe3f865b287a45d5ecd56fbcfc7284937a1087"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c3988a5e4fd27d1ef5cc04d8c58d6b33",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 551815,
            "upload_time": "2024-10-17T19:03:03",
            "upload_time_iso_8601": "2024-10-17T19:03:03.639357Z",
            "url": "https://files.pythonhosted.org/packages/87/84/1b28f646dc4cb1334adc77b0ccbc9b503951e5dab83fb619b2fd8f02f3d8/oat_python-0.1.1-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81a2b8024bdb4ddfe80ec27ba0284f704215c972e2c1297c3e8cfbb225869254",
                "md5": "d004d2309055ebcf0aca2c8cb841c146",
                "sha256": "e3cbbe07099b507718183368e84f964492dbac782c65701bbe7a6ba2cca3fa41"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d004d2309055ebcf0aca2c8cb841c146",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 691283,
            "upload_time": "2024-10-17T19:01:46",
            "upload_time_iso_8601": "2024-10-17T19:01:46.857595Z",
            "url": "https://files.pythonhosted.org/packages/81/a2/b8024bdb4ddfe80ec27ba0284f704215c972e2c1297c3e8cfbb225869254/oat_python-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "141edc8be820b8c683101a0f0d75d79a9a38cf0c89e1e114eb098c493ec30be2",
                "md5": "481ae1acef841d5d00edbd0b42109d59",
                "sha256": "f016501eeed92c4697b3d7c459091ef0c40f532840555443af2374d8fa4401a0"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "481ae1acef841d5d00edbd0b42109d59",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 660831,
            "upload_time": "2024-10-17T19:01:40",
            "upload_time_iso_8601": "2024-10-17T19:01:40.288037Z",
            "url": "https://files.pythonhosted.org/packages/14/1e/dc8be820b8c683101a0f0d75d79a9a38cf0c89e1e114eb098c493ec30be2/oat_python-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f50637d03c955b7a28925d6a8cda7217695d3f8704317859518665cb313af67e",
                "md5": "229bf229fc5de05fe63fe1bed3018971",
                "sha256": "719cf0cdfca22bde809917b1e5899976f1d3439374fc695b77e96aa6e6350dd8"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "229bf229fc5de05fe63fe1bed3018971",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 728809,
            "upload_time": "2024-10-17T19:00:13",
            "upload_time_iso_8601": "2024-10-17T19:00:13.820144Z",
            "url": "https://files.pythonhosted.org/packages/f5/06/37d03c955b7a28925d6a8cda7217695d3f8704317859518665cb313af67e/oat_python-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e72404294c471a4f6fc6552c9c1ad47e78f1cc50cf037746572eb0d4f359912c",
                "md5": "4f7d261880add486b590a10dd84d170e",
                "sha256": "6f2b87c5e18b93afb2839c968f86cc9ba8f1a60cfab15b7ad7912eb6910a24a1"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4f7d261880add486b590a10dd84d170e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 740829,
            "upload_time": "2024-10-17T19:00:31",
            "upload_time_iso_8601": "2024-10-17T19:00:31.078918Z",
            "url": "https://files.pythonhosted.org/packages/e7/24/04294c471a4f6fc6552c9c1ad47e78f1cc50cf037746572eb0d4f359912c/oat_python-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "432aac08d9a4d776fc3dd2dac5e87ca7771e01db0167ace19c2de9cb07cca084",
                "md5": "3451f1b7b3abd6feffa0430c15446931",
                "sha256": "287114b124bb9f548127e2c958e847aff6a0438fa5675ff2bc9fff1080f88e70"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3451f1b7b3abd6feffa0430c15446931",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 835192,
            "upload_time": "2024-10-17T19:00:47",
            "upload_time_iso_8601": "2024-10-17T19:00:47.227338Z",
            "url": "https://files.pythonhosted.org/packages/43/2a/ac08d9a4d776fc3dd2dac5e87ca7771e01db0167ace19c2de9cb07cca084/oat_python-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "476c03a1bf78570dd637feb7f6b75973d983992215cb27f5d55e6a1e55956881",
                "md5": "a90b30113b7ac0132d6acd05e72f1702",
                "sha256": "95d343fd9a3cfe678f8fe302bfa311f5373cce1743ae568c4cd08f8ac5cb3f00"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a90b30113b7ac0132d6acd05e72f1702",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 918139,
            "upload_time": "2024-10-17T19:01:01",
            "upload_time_iso_8601": "2024-10-17T19:01:01.518658Z",
            "url": "https://files.pythonhosted.org/packages/47/6c/03a1bf78570dd637feb7f6b75973d983992215cb27f5d55e6a1e55956881/oat_python-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1bcce4613acb62d7ab39717644fb2f378d638bca49db07b03f0949c02f5172a",
                "md5": "690f063680410fed12adaa5973d23b74",
                "sha256": "2d90ce2566e20d337bb555a759c8b4b54b0a9f78785143f63ba4a758dff452cf"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "690f063680410fed12adaa5973d23b74",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 769557,
            "upload_time": "2024-10-17T19:01:28",
            "upload_time_iso_8601": "2024-10-17T19:01:28.970040Z",
            "url": "https://files.pythonhosted.org/packages/e1/bc/ce4613acb62d7ab39717644fb2f378d638bca49db07b03f0949c02f5172a/oat_python-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "989e9f8bae309327ac116fe7746ae3b778c379b84789d3eced11dc6176ad29ef",
                "md5": "aa64e6c25ed55ef19905ca28f41ab10b",
                "sha256": "33198f61c5bcbaba37b8290512f124d9088962cb237eee0c5efbe5097201ad8a"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "aa64e6c25ed55ef19905ca28f41ab10b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 827507,
            "upload_time": "2024-10-17T19:01:17",
            "upload_time_iso_8601": "2024-10-17T19:01:17.290971Z",
            "url": "https://files.pythonhosted.org/packages/98/9e/9f8bae309327ac116fe7746ae3b778c379b84789d3eced11dc6176ad29ef/oat_python-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3298bbeebb2c07c44dadd0e11e3438fc7ab0fc1f6501a81b9438bdf5cc3ee4d",
                "md5": "a81eb82de8ec6fd25bd96535e2c36eae",
                "sha256": "fddb8a16c2be7b78ea21d528e8f051887bd3076894ab8795dcc1e240d0f85b19"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a81eb82de8ec6fd25bd96535e2c36eae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 878251,
            "upload_time": "2024-10-17T19:01:52",
            "upload_time_iso_8601": "2024-10-17T19:01:52.221664Z",
            "url": "https://files.pythonhosted.org/packages/f3/29/8bbeebb2c07c44dadd0e11e3438fc7ab0fc1f6501a81b9438bdf5cc3ee4d/oat_python-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f412f60685224986a9c896661ec17296f52b956798d78a59f8fc98c245233b3a",
                "md5": "9a51fb7079845860ee92a5bf4bc73e0a",
                "sha256": "b66c68a5ed56961e7d599a16d8247cdcfccbfa147b42b055ed7783d739bd2655"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9a51fb7079845860ee92a5bf4bc73e0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 952389,
            "upload_time": "2024-10-17T19:02:08",
            "upload_time_iso_8601": "2024-10-17T19:02:08.061102Z",
            "url": "https://files.pythonhosted.org/packages/f4/12/f60685224986a9c896661ec17296f52b956798d78a59f8fc98c245233b3a/oat_python-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8cf913c73817dcc0a39677cca5094ffc9372aab8ef46d0b69fa0706e678242cc",
                "md5": "38b88c49571f18747cf855b6707e331e",
                "sha256": "108a85c6b1e016b40aa0803e15ac0642924cf48f821b82af77fa053e0e147643"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "38b88c49571f18747cf855b6707e331e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 912249,
            "upload_time": "2024-10-17T19:02:23",
            "upload_time_iso_8601": "2024-10-17T19:02:23.802620Z",
            "url": "https://files.pythonhosted.org/packages/8c/f9/13c73817dcc0a39677cca5094ffc9372aab8ef46d0b69fa0706e678242cc/oat_python-0.1.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7f98641a8e098ac4db305322628eedd2fdba532a761e869d2dc7b29d5d5e576",
                "md5": "0b4ecd2fbdb2f65e748dd15ec8f2da14",
                "sha256": "0697a0a7e543b1e37849d1b565fdf6310ea91c5b0590763c2467c98afd8a40cf"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b4ecd2fbdb2f65e748dd15ec8f2da14",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 885097,
            "upload_time": "2024-10-17T19:02:47",
            "upload_time_iso_8601": "2024-10-17T19:02:47.611196Z",
            "url": "https://files.pythonhosted.org/packages/e7/f9/8641a8e098ac4db305322628eedd2fdba532a761e869d2dc7b29d5d5e576/oat_python-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "388761bdd76fc7b10b6d3bb5e16bf51aab3f071fba208433ef60a3d7aab8964a",
                "md5": "e69c271b65f06070e4599743a5c6ad8c",
                "sha256": "1ea6ed341a2f4cde74ccc2c67d4f65e56bd13cd39720cbee7df570a0a053814b"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e69c271b65f06070e4599743a5c6ad8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 522136,
            "upload_time": "2024-10-17T19:03:14",
            "upload_time_iso_8601": "2024-10-17T19:03:14.866759Z",
            "url": "https://files.pythonhosted.org/packages/38/87/61bdd76fc7b10b6d3bb5e16bf51aab3f071fba208433ef60a3d7aab8964a/oat_python-0.1.1-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00fca0019a3b474e35143dcd8a71e02085c274a6906bd3f113a140263babc900",
                "md5": "3ceedfab9482c87087990be544c5230e",
                "sha256": "f49364b7c21528ae8ab7f11166c66a5922373f74c6e7f3e7213e29714e5c8c22"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3ceedfab9482c87087990be544c5230e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 555895,
            "upload_time": "2024-10-17T19:03:05",
            "upload_time_iso_8601": "2024-10-17T19:03:05.228299Z",
            "url": "https://files.pythonhosted.org/packages/00/fc/a0019a3b474e35143dcd8a71e02085c274a6906bd3f113a140263babc900/oat_python-0.1.1-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0b878793d06c5d25f5c25e2f59ca171b97ca05bbc87e4cc209aa22b4b56a23c",
                "md5": "7ad8152f36b7b6cd7fe0c7abbba4b465",
                "sha256": "00dfe481361a74728ca32c65acb3638bc040155d414df442aafcc07e8452d177"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7ad8152f36b7b6cd7fe0c7abbba4b465",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 728173,
            "upload_time": "2024-10-17T19:00:15",
            "upload_time_iso_8601": "2024-10-17T19:00:15.809348Z",
            "url": "https://files.pythonhosted.org/packages/d0/b8/78793d06c5d25f5c25e2f59ca171b97ca05bbc87e4cc209aa22b4b56a23c/oat_python-0.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4a5332e3027c241c05c7fc8124c83528d618c693fad17b834724f179bcb7827",
                "md5": "59f12215b9933c306fcffcd07154ed2a",
                "sha256": "4f2e4a1a92bd04d42ded69964a6e45e9be4c8c06d21284be6711743eae951972"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "59f12215b9933c306fcffcd07154ed2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 736736,
            "upload_time": "2024-10-17T19:00:32",
            "upload_time_iso_8601": "2024-10-17T19:00:32.409191Z",
            "url": "https://files.pythonhosted.org/packages/c4/a5/332e3027c241c05c7fc8124c83528d618c693fad17b834724f179bcb7827/oat_python-0.1.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00319e43e92df6754c0b480df655a114addc8c5a5e9b57f0a2553e0c5bf33091",
                "md5": "3c410d1c4b8148d16dd9b8f2817823b0",
                "sha256": "d66149767c4d44f4acf886ca7f27d139ecd2aaf774d837a76828ac1da895e0f4"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3c410d1c4b8148d16dd9b8f2817823b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 834953,
            "upload_time": "2024-10-17T19:00:48",
            "upload_time_iso_8601": "2024-10-17T19:00:48.527547Z",
            "url": "https://files.pythonhosted.org/packages/00/31/9e43e92df6754c0b480df655a114addc8c5a5e9b57f0a2553e0c5bf33091/oat_python-0.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f810ab6c9876ad623fe2e02e4c1aa5300a5a7afac87ad9ca1e68bd356e94becf",
                "md5": "c36e09988fd34d8a1581da344db31da7",
                "sha256": "549f2b57288d80ec1f44685558e4b591ed5770a136cd9aba3906d9be50d7e4fc"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c36e09988fd34d8a1581da344db31da7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 939911,
            "upload_time": "2024-10-17T19:01:03",
            "upload_time_iso_8601": "2024-10-17T19:01:03.019444Z",
            "url": "https://files.pythonhosted.org/packages/f8/10/ab6c9876ad623fe2e02e4c1aa5300a5a7afac87ad9ca1e68bd356e94becf/oat_python-0.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45c78da0cae4668c2759eaf3febe8a09d89b657842b3bd2c6dd64b513a9f6ceb",
                "md5": "2660b7f1e8c3666625f9834d46efdce2",
                "sha256": "80fc29ab62b944844b6b3c2af09697de11da46ea522b1518b95878c21771e1e6"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2660b7f1e8c3666625f9834d46efdce2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 767670,
            "upload_time": "2024-10-17T19:01:30",
            "upload_time_iso_8601": "2024-10-17T19:01:30.279555Z",
            "url": "https://files.pythonhosted.org/packages/45/c7/8da0cae4668c2759eaf3febe8a09d89b657842b3bd2c6dd64b513a9f6ceb/oat_python-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af462ea44a2f4477905a255dbb9cdfdbe0b55f81322250aa815f3f5abf096e80",
                "md5": "d01689cb185fa8e3fdcd03169333206b",
                "sha256": "0dc0bb36ef416659a30a6217196d7497200189334ddc355fac8eaf6232ddb478"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "d01689cb185fa8e3fdcd03169333206b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 822697,
            "upload_time": "2024-10-17T19:01:18",
            "upload_time_iso_8601": "2024-10-17T19:01:18.568338Z",
            "url": "https://files.pythonhosted.org/packages/af/46/2ea44a2f4477905a255dbb9cdfdbe0b55f81322250aa815f3f5abf096e80/oat_python-0.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "717ff20465aec0222b754d9d1500fc0347927cb88530569804386f8d72edb1c0",
                "md5": "f4f8a10355028811acdb376d6de3d638",
                "sha256": "0183c9813c65d072b46848e328c19e7e68d152ea1f7cf72d21c3629f497e4f7b"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f4f8a10355028811acdb376d6de3d638",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 881271,
            "upload_time": "2024-10-17T19:01:53",
            "upload_time_iso_8601": "2024-10-17T19:01:53.553067Z",
            "url": "https://files.pythonhosted.org/packages/71/7f/f20465aec0222b754d9d1500fc0347927cb88530569804386f8d72edb1c0/oat_python-0.1.1-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c271bbc441bbd930960d4a7ccb721a8d5be1c28b8c984aba6b4027ff1f934b6f",
                "md5": "705e523384fdffcb02eff8012e37af5a",
                "sha256": "199a82ae5c7160fdadc689631702f00f7707b5c5e5c690b862c92d622c9543c7"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "705e523384fdffcb02eff8012e37af5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 958071,
            "upload_time": "2024-10-17T19:02:09",
            "upload_time_iso_8601": "2024-10-17T19:02:09.501271Z",
            "url": "https://files.pythonhosted.org/packages/c2/71/bbc441bbd930960d4a7ccb721a8d5be1c28b8c984aba6b4027ff1f934b6f/oat_python-0.1.1-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07ac099eb8e8723d992e9a81af153c2d9fcb64b718c03c2fca6f2e42ba949447",
                "md5": "3a763588882778bc0c0a6471d94ab844",
                "sha256": "5a5b13312c8c5ede59a28754d94c25000821f69d2163df8da2fa95157dff98a4"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3a763588882778bc0c0a6471d94ab844",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 913983,
            "upload_time": "2024-10-17T19:02:26",
            "upload_time_iso_8601": "2024-10-17T19:02:26.860623Z",
            "url": "https://files.pythonhosted.org/packages/07/ac/099eb8e8723d992e9a81af153c2d9fcb64b718c03c2fca6f2e42ba949447/oat_python-0.1.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42160a84e3c7cb5f5fefe48cb59ea92b728efbee42270293af47b5456304ea50",
                "md5": "17449dc488d51bc56cc0d9df2a3e26d8",
                "sha256": "e2b2edab9900a129289e342a2edab87508f52620b46dda8ef7c63669b14a3015"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17449dc488d51bc56cc0d9df2a3e26d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 887300,
            "upload_time": "2024-10-17T19:02:49",
            "upload_time_iso_8601": "2024-10-17T19:02:49.422487Z",
            "url": "https://files.pythonhosted.org/packages/42/16/0a84e3c7cb5f5fefe48cb59ea92b728efbee42270293af47b5456304ea50/oat_python-0.1.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3bc02f1a17195754dc58e930c52bb1c112c562716ab802fb62309cf7aa2cdd4",
                "md5": "8ba60fb158a4de07b52f2ddbcb582c25",
                "sha256": "5e8b74cd3a72d5b422b5b3ea67f59fc9b4d0288ff5e950918a865610b4de3215"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "8ba60fb158a4de07b52f2ddbcb582c25",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 518667,
            "upload_time": "2024-10-17T19:03:16",
            "upload_time_iso_8601": "2024-10-17T19:03:16.313802Z",
            "url": "https://files.pythonhosted.org/packages/c3/bc/02f1a17195754dc58e930c52bb1c112c562716ab802fb62309cf7aa2cdd4/oat_python-0.1.1-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a30af038f71604de86a2b64549c97a2f1d085ca13eaea278e72b9d56a8522b24",
                "md5": "aba8be67f3260701f4585a59047bec08",
                "sha256": "a55dfef044cab4368d0d5f016f4208c947d9ffae8402f1e2a228c7c5d0e66c82"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aba8be67f3260701f4585a59047bec08",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 551820,
            "upload_time": "2024-10-17T19:03:07",
            "upload_time_iso_8601": "2024-10-17T19:03:07.338055Z",
            "url": "https://files.pythonhosted.org/packages/a3/0a/f038f71604de86a2b64549c97a2f1d085ca13eaea278e72b9d56a8522b24/oat_python-0.1.1-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32c9f664eb4a7d07dd29a14ddd6729e5700899474311e4af6c966089a8a5fc72",
                "md5": "5954f93cb6d8a7b1f98e74cadeaeba88",
                "sha256": "e2fcc6014b180bb09f9ded52c8931b29d54307a06fe8f7db96e8f3aec62fcf19"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5954f93cb6d8a7b1f98e74cadeaeba88",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 727121,
            "upload_time": "2024-10-17T19:00:17",
            "upload_time_iso_8601": "2024-10-17T19:00:17.810341Z",
            "url": "https://files.pythonhosted.org/packages/32/c9/f664eb4a7d07dd29a14ddd6729e5700899474311e4af6c966089a8a5fc72/oat_python-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03578ad188f7f42ffa28f6339db1228f37578c3f7d99cd49bedc70fad9edd3b0",
                "md5": "b98397892317c5329386313dc9051055",
                "sha256": "a56735936a37b045affa30037001fb8dddb94d081e134261ec317528bbf86c99"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b98397892317c5329386313dc9051055",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 736862,
            "upload_time": "2024-10-17T19:00:34",
            "upload_time_iso_8601": "2024-10-17T19:00:34.087321Z",
            "url": "https://files.pythonhosted.org/packages/03/57/8ad188f7f42ffa28f6339db1228f37578c3f7d99cd49bedc70fad9edd3b0/oat_python-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df762de8129cb486b7da8f696ba0cb8a60f614e382a29224f29fdc598453a27c",
                "md5": "9963a03d65c19271b7d3e2352ee4372f",
                "sha256": "67e360bdac6c7c25c1219086575dc3e4db9d8c59b2cfb8c718931ab3cb550a80"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9963a03d65c19271b7d3e2352ee4372f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 834819,
            "upload_time": "2024-10-17T19:00:49",
            "upload_time_iso_8601": "2024-10-17T19:00:49.909184Z",
            "url": "https://files.pythonhosted.org/packages/df/76/2de8129cb486b7da8f696ba0cb8a60f614e382a29224f29fdc598453a27c/oat_python-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c758f50355a87255046609ed5a8b8f7aac1a7dd2982cdc4fa80f5eaa74054ee3",
                "md5": "1ba997b25a3ef017e20cbb81f8ca5d25",
                "sha256": "0adbce17d34887672654c7411fc2f29bfd94b88c5c55e1bc9c142f596517bbf3"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1ba997b25a3ef017e20cbb81f8ca5d25",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 939892,
            "upload_time": "2024-10-17T19:01:05",
            "upload_time_iso_8601": "2024-10-17T19:01:05.098377Z",
            "url": "https://files.pythonhosted.org/packages/c7/58/f50355a87255046609ed5a8b8f7aac1a7dd2982cdc4fa80f5eaa74054ee3/oat_python-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c60df1dd4c175aa2362adc1a63449cc23a0513f1ecee2c9855bda453297d70a8",
                "md5": "6e1a68cdca1721a836ea0556c7c7dd4f",
                "sha256": "c309894ecebae8d5b0b8819d9f1c74ca8604823aef14d3e4f9954917a3e336ae"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e1a68cdca1721a836ea0556c7c7dd4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 767490,
            "upload_time": "2024-10-17T19:01:32",
            "upload_time_iso_8601": "2024-10-17T19:01:32.165151Z",
            "url": "https://files.pythonhosted.org/packages/c6/0d/f1dd4c175aa2362adc1a63449cc23a0513f1ecee2c9855bda453297d70a8/oat_python-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77e623ae4a80e819c6f980453e87cce912a93a27bcb7ebb906157f3bb4fa0329",
                "md5": "c7d0b6224bbdeff55ee7b6660d7f570f",
                "sha256": "f4465080b553493758594c6f9c9f602bb105d161b6b62ca56a037d7abed47afe"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c7d0b6224bbdeff55ee7b6660d7f570f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 824613,
            "upload_time": "2024-10-17T19:01:20",
            "upload_time_iso_8601": "2024-10-17T19:01:20.245710Z",
            "url": "https://files.pythonhosted.org/packages/77/e6/23ae4a80e819c6f980453e87cce912a93a27bcb7ebb906157f3bb4fa0329/oat_python-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "327c02e50cf657213f7beae587c13575c181e2fc1fbf8c08b82df17707b746ad",
                "md5": "8a9c12c03d6f47f09932662256486c00",
                "sha256": "fadbda46871b227483a3926f53a6dddeece415fd6331cf04410a4623f181fd40"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a9c12c03d6f47f09932662256486c00",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 880610,
            "upload_time": "2024-10-17T19:01:55",
            "upload_time_iso_8601": "2024-10-17T19:01:55.844361Z",
            "url": "https://files.pythonhosted.org/packages/32/7c/02e50cf657213f7beae587c13575c181e2fc1fbf8c08b82df17707b746ad/oat_python-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b415c847aafab4f1c095dfea7fb9e73b8b43b437520c4984d0008a644e043239",
                "md5": "6908f13f5b79e0c849061a75f73d1e54",
                "sha256": "4919d735d86639c244c18e1ec8d71775fd41ac248226b267d0f845d0adf07287"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6908f13f5b79e0c849061a75f73d1e54",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 958111,
            "upload_time": "2024-10-17T19:02:10",
            "upload_time_iso_8601": "2024-10-17T19:02:10.958196Z",
            "url": "https://files.pythonhosted.org/packages/b4/15/c847aafab4f1c095dfea7fb9e73b8b43b437520c4984d0008a644e043239/oat_python-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c7ae2895d8a4e055c9170ee81d0bc7b5bfbf897f7c5f82eb9d2bee47dabef2b",
                "md5": "8abaa46f36b1b7688a17e602255e17bf",
                "sha256": "be234e14eae6582108edd59f5fbf76ad11d10ab3321f0e69e29b39970f02e32b"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8abaa46f36b1b7688a17e602255e17bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 911601,
            "upload_time": "2024-10-17T19:02:30",
            "upload_time_iso_8601": "2024-10-17T19:02:30.389615Z",
            "url": "https://files.pythonhosted.org/packages/1c/7a/e2895d8a4e055c9170ee81d0bc7b5bfbf897f7c5f82eb9d2bee47dabef2b/oat_python-0.1.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c95325fdf35de169ce460aaa5ae85ad932554993b2bbe3512e5c028feacb086",
                "md5": "335a47e33354fdfbbb86c7e5877322bf",
                "sha256": "cb492bea8fa562d8175b2f24fd51727fa2023f682334299420cbeb668e6469b9"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "335a47e33354fdfbbb86c7e5877322bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 887172,
            "upload_time": "2024-10-17T19:02:50",
            "upload_time_iso_8601": "2024-10-17T19:02:50.992024Z",
            "url": "https://files.pythonhosted.org/packages/0c/95/325fdf35de169ce460aaa5ae85ad932554993b2bbe3512e5c028feacb086/oat_python-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41abef20ef082a82dbce4815f705c661999c769ad93ae46c5c4898411489d838",
                "md5": "52af84a45dbfec7cba08e25b7695833b",
                "sha256": "15f5faa41bcc67f1eef0f59bc1ddc9ef505208302e43de06fe9a430a7f77e4b8"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "52af84a45dbfec7cba08e25b7695833b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 518501,
            "upload_time": "2024-10-17T19:03:18",
            "upload_time_iso_8601": "2024-10-17T19:03:18.223694Z",
            "url": "https://files.pythonhosted.org/packages/41/ab/ef20ef082a82dbce4815f705c661999c769ad93ae46c5c4898411489d838/oat_python-0.1.1-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e108ff64a9c7a3d018403d11602fe697f9cf98262994cbc9d8169516e868c753",
                "md5": "3839251722007fcd5627ccf198d31468",
                "sha256": "d944185ddc7d31ac3912e7853d4cb30c888a565c75c30958cba80e7b88077a7f"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3839251722007fcd5627ccf198d31468",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 551008,
            "upload_time": "2024-10-17T19:03:08",
            "upload_time_iso_8601": "2024-10-17T19:03:08.956786Z",
            "url": "https://files.pythonhosted.org/packages/e1/08/ff64a9c7a3d018403d11602fe697f9cf98262994cbc9d8169516e868c753/oat_python-0.1.1-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b878ad8b9a32b83176218247a35056e584a636d34d502b8f54b89cd9e296fb83",
                "md5": "d805a8a80f82f3a53237a19a9ad44503",
                "sha256": "f228dcf4f82a39883583f64d45b07134ba7e352772ef1b8452c0ffbbfee85b53"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d805a8a80f82f3a53237a19a9ad44503",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 660744,
            "upload_time": "2024-10-17T19:01:42",
            "upload_time_iso_8601": "2024-10-17T19:01:42.689688Z",
            "url": "https://files.pythonhosted.org/packages/b8/78/ad8b9a32b83176218247a35056e584a636d34d502b8f54b89cd9e296fb83/oat_python-0.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e65e0f062f9c41bca4e846ad47bc68ccb2a7cf2c751be4dc1c9477aa47ed7e9b",
                "md5": "1a87d5cab6c0985a5eca559ea08a57ca",
                "sha256": "c328aa40c69e870a683a83974e8184a96a9ed7d968f8ceff52300c7f81bc613b"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1a87d5cab6c0985a5eca559ea08a57ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 727163,
            "upload_time": "2024-10-17T19:00:19",
            "upload_time_iso_8601": "2024-10-17T19:00:19.237648Z",
            "url": "https://files.pythonhosted.org/packages/e6/5e/0f062f9c41bca4e846ad47bc68ccb2a7cf2c751be4dc1c9477aa47ed7e9b/oat_python-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22c3fdc1f9c2233c9e8a9b833d3ebefc0f74fa403793d48769d2ba6b68ecaa83",
                "md5": "f5e74caa7eb9401056a75ca24e3ce627",
                "sha256": "c40160e6d276ad61633f20eb1e62afa89019cf7b554312ed0af89dc5412f846d"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f5e74caa7eb9401056a75ca24e3ce627",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 738627,
            "upload_time": "2024-10-17T19:00:36",
            "upload_time_iso_8601": "2024-10-17T19:00:36.128835Z",
            "url": "https://files.pythonhosted.org/packages/22/c3/fdc1f9c2233c9e8a9b833d3ebefc0f74fa403793d48769d2ba6b68ecaa83/oat_python-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9ca92ed787526457fd2fa407cd666fea79fea7f38d80257d1519b67bcb23e9b",
                "md5": "c78468f9bfba08dbc0312123fe8e64e0",
                "sha256": "b6226ab5f09e16ffde896977cb011ee378685b6d233000800fa96e8653903127"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c78468f9bfba08dbc0312123fe8e64e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 835363,
            "upload_time": "2024-10-17T19:00:51",
            "upload_time_iso_8601": "2024-10-17T19:00:51.265089Z",
            "url": "https://files.pythonhosted.org/packages/a9/ca/92ed787526457fd2fa407cd666fea79fea7f38d80257d1519b67bcb23e9b/oat_python-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "473a71d5ea8585dd5f9e3dbd1f68f7002e84b9eb13843ca50a380942a1ee6f99",
                "md5": "7db089bd4fa9622032b79bb045dc27bb",
                "sha256": "91e7bd4c646259f9f8350ed15a787ab9c5a65cfae5407870125c1836ee4e3a55"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7db089bd4fa9622032b79bb045dc27bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 940056,
            "upload_time": "2024-10-17T19:01:06",
            "upload_time_iso_8601": "2024-10-17T19:01:06.529091Z",
            "url": "https://files.pythonhosted.org/packages/47/3a/71d5ea8585dd5f9e3dbd1f68f7002e84b9eb13843ca50a380942a1ee6f99/oat_python-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdb1129074fcd793fb2dd1c54c532a77293d73bdb5685b2465a1bae06d699f60",
                "md5": "3c117d4aee47402c46c28851a0d3eb7f",
                "sha256": "a849f5ed1938266a93d749e153ca9c52bc148af7871f21151bbdff6705fe7fd0"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c117d4aee47402c46c28851a0d3eb7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 766942,
            "upload_time": "2024-10-17T19:01:33",
            "upload_time_iso_8601": "2024-10-17T19:01:33.537711Z",
            "url": "https://files.pythonhosted.org/packages/fd/b1/129074fcd793fb2dd1c54c532a77293d73bdb5685b2465a1bae06d699f60/oat_python-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41168a2ceefba5c71e18fa0a8c0212e37060e7a1e25446f8e4f400afe66e455b",
                "md5": "3f5aedae9bc86fb855e44fcc7a646831",
                "sha256": "6604bcbefb2d55f11fed7cb217c9d34a9789d5d2d3a4c78bbff73efc3502abed"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3f5aedae9bc86fb855e44fcc7a646831",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 823402,
            "upload_time": "2024-10-17T19:01:21",
            "upload_time_iso_8601": "2024-10-17T19:01:21.889340Z",
            "url": "https://files.pythonhosted.org/packages/41/16/8a2ceefba5c71e18fa0a8c0212e37060e7a1e25446f8e4f400afe66e455b/oat_python-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eac479583d7a3553ff31f4e82504410e59613c9e3f5f01829c536db01f1506ea",
                "md5": "fa7502b0c9b3395cb7649d49c56b55f0",
                "sha256": "0eda808bca37c350bed96535fd170a1ec621a69ebe62325b69714093c647d0ff"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fa7502b0c9b3395cb7649d49c56b55f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 879165,
            "upload_time": "2024-10-17T19:01:57",
            "upload_time_iso_8601": "2024-10-17T19:01:57.217424Z",
            "url": "https://files.pythonhosted.org/packages/ea/c4/79583d7a3553ff31f4e82504410e59613c9e3f5f01829c536db01f1506ea/oat_python-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2be2699772b32eee91198ff5dd10d36a0fe9ed4961d72d4b6811709fad89cd1a",
                "md5": "c5e6f7b0f946fe6f4798e3ac3fa4e76c",
                "sha256": "32b4ee27a37df6c198a8291b1fcb198661e9f6c3b5b57d8f306552471ef7bb59"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c5e6f7b0f946fe6f4798e3ac3fa4e76c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 957526,
            "upload_time": "2024-10-17T19:02:12",
            "upload_time_iso_8601": "2024-10-17T19:02:12.347649Z",
            "url": "https://files.pythonhosted.org/packages/2b/e2/699772b32eee91198ff5dd10d36a0fe9ed4961d72d4b6811709fad89cd1a/oat_python-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b802bd9b40da7b33e1b75fd9c9068dedb512499e9b4136ead13aa324c8c1f739",
                "md5": "299a5932aebd69751c44db5820f99459",
                "sha256": "871c034629bcebeee188ca363e37f5552953629b8637256207d37f07bed325d0"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "299a5932aebd69751c44db5820f99459",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 912692,
            "upload_time": "2024-10-17T19:02:33",
            "upload_time_iso_8601": "2024-10-17T19:02:33.855742Z",
            "url": "https://files.pythonhosted.org/packages/b8/02/bd9b40da7b33e1b75fd9c9068dedb512499e9b4136ead13aa324c8c1f739/oat_python-0.1.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "137ca0d6ef53e67fe28828f70de1de04f3706ccb23eb5e33f955f9ab21aa2b3b",
                "md5": "f2f4e614445a6f597e4649913ec9441b",
                "sha256": "eae87820bb0bdc6c16be4b0358411ae917eac1fb090bba5a8b6862e767c04a02"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f2f4e614445a6f597e4649913ec9441b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 885891,
            "upload_time": "2024-10-17T19:02:52",
            "upload_time_iso_8601": "2024-10-17T19:02:52.513980Z",
            "url": "https://files.pythonhosted.org/packages/13/7c/a0d6ef53e67fe28828f70de1de04f3706ccb23eb5e33f955f9ab21aa2b3b/oat_python-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "002eb496e1ab1e1ee25d7c3428fd78936f94fbc3e5bbe394bfded1800580f173",
                "md5": "a40670e1185a1c041af64f7215770d10",
                "sha256": "fcafea1785918c876462003955a20e3c9dd06530338e427753f82ee4b109c967"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a40670e1185a1c041af64f7215770d10",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 518994,
            "upload_time": "2024-10-17T19:03:20",
            "upload_time_iso_8601": "2024-10-17T19:03:20.107829Z",
            "url": "https://files.pythonhosted.org/packages/00/2e/b496e1ab1e1ee25d7c3428fd78936f94fbc3e5bbe394bfded1800580f173/oat_python-0.1.1-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd3e0d32cbd3dc279ff224b8a70c78afaf2ec51653eb34649bdacf3426135b69",
                "md5": "34300a7a8cb55b485569fae6eb7e8d9f",
                "sha256": "0f814d587a358e397b1950c5fca40777e5e83f55d1e3ccebc89c024c122f9b4b"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "34300a7a8cb55b485569fae6eb7e8d9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 552227,
            "upload_time": "2024-10-17T19:03:10",
            "upload_time_iso_8601": "2024-10-17T19:03:10.416739Z",
            "url": "https://files.pythonhosted.org/packages/bd/3e/0d32cbd3dc279ff224b8a70c78afaf2ec51653eb34649bdacf3426135b69/oat_python-0.1.1-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4766d931f0577c1f056c534960a305b5326b7b3ae23e2907bedd6afac3a19f9f",
                "md5": "411fdf859e1a23c617c7584f3cf2a65a",
                "sha256": "af5f2a7927dadd260a3db509819a517c922ca27975ee31d82e4a1efd5538fbcf"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "411fdf859e1a23c617c7584f3cf2a65a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 728371,
            "upload_time": "2024-10-17T19:00:21",
            "upload_time_iso_8601": "2024-10-17T19:00:21.282919Z",
            "url": "https://files.pythonhosted.org/packages/47/66/d931f0577c1f056c534960a305b5326b7b3ae23e2907bedd6afac3a19f9f/oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30e1e3a03ccfecab8830a4d3bf9d8b9367451f796a8c9223b547b3d9b835514e",
                "md5": "c73edbc4c8b4be3038e640d0a9aec2b8",
                "sha256": "d1657d0659d46ce6a8cd1500add74ff6b7cd6e60bd2a360148be2069079f87af"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c73edbc4c8b4be3038e640d0a9aec2b8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 739712,
            "upload_time": "2024-10-17T19:00:37",
            "upload_time_iso_8601": "2024-10-17T19:00:37.824381Z",
            "url": "https://files.pythonhosted.org/packages/30/e1/e3a03ccfecab8830a4d3bf9d8b9367451f796a8c9223b547b3d9b835514e/oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a7cc0e6b75ce4cac153def977a4373010dc633a0f4f7738678572a9dbdb722b",
                "md5": "a01a0aa0f201623359e8054fbfcbb6e4",
                "sha256": "f0c0030bb95fc350eb1362412002e9a099714310fe2e91c76d0a4c45023627f5"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a01a0aa0f201623359e8054fbfcbb6e4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 834898,
            "upload_time": "2024-10-17T19:00:53",
            "upload_time_iso_8601": "2024-10-17T19:00:53.161732Z",
            "url": "https://files.pythonhosted.org/packages/0a/7c/c0e6b75ce4cac153def977a4373010dc633a0f4f7738678572a9dbdb722b/oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc73ac1d92b67f867e96f9046457dfd888ea96a762b2fb84a6f8f537476cd032",
                "md5": "3a01bb5082987740d2a51503608da72a",
                "sha256": "f034a422ad5f9fb27a938f87d82ff9d71d9e964a94f12aba8e14b909fab9b501"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3a01bb5082987740d2a51503608da72a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 940345,
            "upload_time": "2024-10-17T19:01:07",
            "upload_time_iso_8601": "2024-10-17T19:01:07.864439Z",
            "url": "https://files.pythonhosted.org/packages/bc/73/ac1d92b67f867e96f9046457dfd888ea96a762b2fb84a6f8f537476cd032/oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cb4099f29299fbe8f5c17d4ea48f737d56326e79558ad041447f14e19a20663",
                "md5": "8b073ab1c905ef5945803c6176f7ef1a",
                "sha256": "4db4cd94072f194b724e7b16ba815f42087ec93cb0ea5a8381652c3710b67275"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b073ab1c905ef5945803c6176f7ef1a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 767528,
            "upload_time": "2024-10-17T19:01:34",
            "upload_time_iso_8601": "2024-10-17T19:01:34.996537Z",
            "url": "https://files.pythonhosted.org/packages/2c/b4/099f29299fbe8f5c17d4ea48f737d56326e79558ad041447f14e19a20663/oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec4da1218978131a6965a8a524b7c7cb01b3d3c48c63fd44cd1934d451083665",
                "md5": "ecd7c26fe0ad2c729790b4cdab612728",
                "sha256": "82b9ac1b6e8a6c7ec2a97ca87c1193657e3729d516b2e54659150140dbe90462"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ecd7c26fe0ad2c729790b4cdab612728",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 825940,
            "upload_time": "2024-10-17T19:01:23",
            "upload_time_iso_8601": "2024-10-17T19:01:23.293554Z",
            "url": "https://files.pythonhosted.org/packages/ec/4d/a1218978131a6965a8a524b7c7cb01b3d3c48c63fd44cd1934d451083665/oat_python-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff601142cc0259b4b76b4a632a94eb44d6f26bdba41b3595b6c89cdc22c7ec2b",
                "md5": "b3f41d3201fdc013e02546eb3e3b071a",
                "sha256": "e919b657af2b8b23afabbc867fda727ea4a5e7696bfacbbe19366e00bacc25e5"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b3f41d3201fdc013e02546eb3e3b071a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 881591,
            "upload_time": "2024-10-17T19:01:58",
            "upload_time_iso_8601": "2024-10-17T19:01:58.588288Z",
            "url": "https://files.pythonhosted.org/packages/ff/60/1142cc0259b4b76b4a632a94eb44d6f26bdba41b3595b6c89cdc22c7ec2b/oat_python-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d1e47041cc8048e9d842f1aa16088dc115a128133bbcb477dbe8a925e00e500",
                "md5": "566bace3c23075350aa04b54a055d4df",
                "sha256": "efbb0f1b88b00055de1e47f3232aab03919001d27e49bbf338c68f48f8652660"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "566bace3c23075350aa04b54a055d4df",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 957786,
            "upload_time": "2024-10-17T19:02:13",
            "upload_time_iso_8601": "2024-10-17T19:02:13.751696Z",
            "url": "https://files.pythonhosted.org/packages/3d/1e/47041cc8048e9d842f1aa16088dc115a128133bbcb477dbe8a925e00e500/oat_python-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ed51df097bcc96e7098911fd53fe2d3877cd35339aa628155ffc0c474a4e646",
                "md5": "7e91b6a0dd0766ce40fb6081a61b0922",
                "sha256": "2618fa0207978e34f418d7557e6b5dcebd4ca47a5ed9b9e03a8ca2f4fbace6f4"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7e91b6a0dd0766ce40fb6081a61b0922",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 914631,
            "upload_time": "2024-10-17T19:02:36",
            "upload_time_iso_8601": "2024-10-17T19:02:36.122162Z",
            "url": "https://files.pythonhosted.org/packages/7e/d5/1df097bcc96e7098911fd53fe2d3877cd35339aa628155ffc0c474a4e646/oat_python-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e5f1912810e1f61dd1359e7bb8fba9487ed1e20ef0e03349234281edd32114c",
                "md5": "8b6962b7b8b8c5b9277d6b6b227d3017",
                "sha256": "c022a8e0b4e2e63dedc7c8114f21d783ca054935cf8da15d082ab724f5f3bc4c"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b6962b7b8b8c5b9277d6b6b227d3017",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 886974,
            "upload_time": "2024-10-17T19:02:54",
            "upload_time_iso_8601": "2024-10-17T19:02:54.057230Z",
            "url": "https://files.pythonhosted.org/packages/3e/5f/1912810e1f61dd1359e7bb8fba9487ed1e20ef0e03349234281edd32114c/oat_python-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fab029310f6688fec3c28a11152f9e5479a1f00b6d2715f6d4675a30cc4196c7",
                "md5": "c61714f10b77f54ecb623e96c8892395",
                "sha256": "e16b602d848329b676cce642252fd4f3606fdb1a3b1b5f43f00c5a9b1f43e5ea"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c61714f10b77f54ecb623e96c8892395",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 731138,
            "upload_time": "2024-10-17T19:00:22",
            "upload_time_iso_8601": "2024-10-17T19:00:22.977585Z",
            "url": "https://files.pythonhosted.org/packages/fa/b0/29310f6688fec3c28a11152f9e5479a1f00b6d2715f6d4675a30cc4196c7/oat_python-0.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd568036c45da3b9aee198fe97234dec67db8bc07c3e73fcbc26c64097b7aa62",
                "md5": "5ae2762396c71b9cbf5a11e18ce9dfb9",
                "sha256": "1157b33d5abacd095c18158c612c4f18b4eb12b3a16a7133e6367d1853ba0f54"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5ae2762396c71b9cbf5a11e18ce9dfb9",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 739239,
            "upload_time": "2024-10-17T19:00:39",
            "upload_time_iso_8601": "2024-10-17T19:00:39.250319Z",
            "url": "https://files.pythonhosted.org/packages/cd/56/8036c45da3b9aee198fe97234dec67db8bc07c3e73fcbc26c64097b7aa62/oat_python-0.1.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a37c08975f6f455364071974e68019a169a8d2adb47eec6c7e099e3a84fd9ff4",
                "md5": "8d0fe80195b0b1cd561ffa5030cfa39a",
                "sha256": "3fcc39e496b31339cd4475d2c4c841bfe066ecac1dccf37dc1f0c609ffd8122b"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8d0fe80195b0b1cd561ffa5030cfa39a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 836203,
            "upload_time": "2024-10-17T19:00:54",
            "upload_time_iso_8601": "2024-10-17T19:00:54.626174Z",
            "url": "https://files.pythonhosted.org/packages/a3/7c/08975f6f455364071974e68019a169a8d2adb47eec6c7e099e3a84fd9ff4/oat_python-0.1.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd72e4696993217aa1417fc7d23fe81db3cb215cae92b5cb5183cca575a2c654",
                "md5": "00c4d2aa89b96994e07f77ef58fbbda3",
                "sha256": "afff54cd6496e8ac65d8a04448f8808cde19fc8f0055eba4d8dfb224491b5dbe"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "00c4d2aa89b96994e07f77ef58fbbda3",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 942762,
            "upload_time": "2024-10-17T19:01:09",
            "upload_time_iso_8601": "2024-10-17T19:01:09.186768Z",
            "url": "https://files.pythonhosted.org/packages/bd/72/e4696993217aa1417fc7d23fe81db3cb215cae92b5cb5183cca575a2c654/oat_python-0.1.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a933ad739f3097c6c6675332fdff26672d67c9a0a2a95d3038db381269f7564",
                "md5": "16db3118608b91781ef01fb085b2abb0",
                "sha256": "420a8e2ca9808bdc666e48b11145d65b6b4d87204e587137f150c08020e817b2"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "16db3118608b91781ef01fb085b2abb0",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 882990,
            "upload_time": "2024-10-17T19:02:00",
            "upload_time_iso_8601": "2024-10-17T19:02:00.090762Z",
            "url": "https://files.pythonhosted.org/packages/9a/93/3ad739f3097c6c6675332fdff26672d67c9a0a2a95d3038db381269f7564/oat_python-0.1.1-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f80ee8e59df6c542b71c428d3647f05604778790206776dda44b3a5635237986",
                "md5": "02b34de7cb42e1b13e9240da9a18c5a1",
                "sha256": "b7fda704798ee2de020f7c1b615f8722e2ece4b80ec9114681bb1dc52d4378b0"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "02b34de7cb42e1b13e9240da9a18c5a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 960482,
            "upload_time": "2024-10-17T19:02:15",
            "upload_time_iso_8601": "2024-10-17T19:02:15.152332Z",
            "url": "https://files.pythonhosted.org/packages/f8/0e/e8e59df6c542b71c428d3647f05604778790206776dda44b3a5635237986/oat_python-0.1.1-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "251202c0ee7df22414d3f05e91a21c4e642d598273554eb76cd7afb620b7684d",
                "md5": "f24f7ef72c6cbeca7d06656570c6cbf8",
                "sha256": "488818900289882acbcff7bcb2e01b1d2c6d44f33b5fd575d9db8baa3009b716"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp37-pypy37_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f24f7ef72c6cbeca7d06656570c6cbf8",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 915893,
            "upload_time": "2024-10-17T19:02:38",
            "upload_time_iso_8601": "2024-10-17T19:02:38.508846Z",
            "url": "https://files.pythonhosted.org/packages/25/12/02c0ee7df22414d3f05e91a21c4e642d598273554eb76cd7afb620b7684d/oat_python-0.1.1-pp37-pypy37_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8fa6dc64c8ab34cc5bfb75752ca24162ad76c6e4d6bebddc015a2dc36d4668e",
                "md5": "305385131bf0994464f4f80ff3ccf359",
                "sha256": "b97a96eb85537b43629094da5677c04f7a6b1d43413c06bb7eb99b8518568220"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "305385131bf0994464f4f80ff3ccf359",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 889644,
            "upload_time": "2024-10-17T19:02:56",
            "upload_time_iso_8601": "2024-10-17T19:02:56.140936Z",
            "url": "https://files.pythonhosted.org/packages/c8/fa/6dc64c8ab34cc5bfb75752ca24162ad76c6e4d6bebddc015a2dc36d4668e/oat_python-0.1.1-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c70a34b8083e919e0f3401644320917a05759fcc983a25d89abd9c9251bfc0fa",
                "md5": "6de8f87b5c43679a93aeadc5d8ce04a6",
                "sha256": "e7970948ebab19fbbd4ba88d9bf4ffcacea67fb09546b82b9f7ebf4b0f064e92"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6de8f87b5c43679a93aeadc5d8ce04a6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 728697,
            "upload_time": "2024-10-17T19:00:24",
            "upload_time_iso_8601": "2024-10-17T19:00:24.524927Z",
            "url": "https://files.pythonhosted.org/packages/c7/0a/34b8083e919e0f3401644320917a05759fcc983a25d89abd9c9251bfc0fa/oat_python-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "931b02e8019e55270e062b6ac312074e5ec170b1ca0ae14d220911b625663b39",
                "md5": "da784a8f50ee50195a58a841d8496477",
                "sha256": "c20fd7b15af3f54c973567762f756ac894aff2e33e8d936ff22c325c6acdd7b5"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "da784a8f50ee50195a58a841d8496477",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 736258,
            "upload_time": "2024-10-17T19:00:40",
            "upload_time_iso_8601": "2024-10-17T19:00:40.545607Z",
            "url": "https://files.pythonhosted.org/packages/93/1b/02e8019e55270e062b6ac312074e5ec170b1ca0ae14d220911b625663b39/oat_python-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c9113b2eb63674f23d6d78b4c9065a967c262e1b714c96882058dba6f3f4156",
                "md5": "c77ed747dbddd399f51bc88d0644d9a6",
                "sha256": "2dc34c76e10c1513ae1694ea96997ab1cc6bd5daa5c060f7e7e6dbb091d86baf"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c77ed747dbddd399f51bc88d0644d9a6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 835458,
            "upload_time": "2024-10-17T19:00:55",
            "upload_time_iso_8601": "2024-10-17T19:00:55.920885Z",
            "url": "https://files.pythonhosted.org/packages/4c/91/13b2eb63674f23d6d78b4c9065a967c262e1b714c96882058dba6f3f4156/oat_python-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f21c7fcc072fa7c32d6e0c3f464fab99f6ddf7d043df64a7bd3ce30cc4d1ae0",
                "md5": "2279f6b63f095ae0c04a169bba107b3b",
                "sha256": "9dec1b40fc6a6bc64e2932939b31f9da5fa54f2540a54c4a87a996d7c4797c49"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2279f6b63f095ae0c04a169bba107b3b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 939543,
            "upload_time": "2024-10-17T19:01:10",
            "upload_time_iso_8601": "2024-10-17T19:01:10.529453Z",
            "url": "https://files.pythonhosted.org/packages/7f/21/c7fcc072fa7c32d6e0c3f464fab99f6ddf7d043df64a7bd3ce30cc4d1ae0/oat_python-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8630f64fa4308d11f164187175cf8d15a1302c5644f947406336c1f7261cca5",
                "md5": "f14d69092d601e0822b4f061f4112494",
                "sha256": "7de3da5223fa2110a16f5f87168887130a3692183cd7a6823228e7b8434c631e"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f14d69092d601e0822b4f061f4112494",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 880085,
            "upload_time": "2024-10-17T19:02:01",
            "upload_time_iso_8601": "2024-10-17T19:02:01.698674Z",
            "url": "https://files.pythonhosted.org/packages/c8/63/0f64fa4308d11f164187175cf8d15a1302c5644f947406336c1f7261cca5/oat_python-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd615de700ae69672b8c60b5a3535fb17d595d9a8a16a025079678c40f7fdbf4",
                "md5": "3c465b736f93146c12ed6d767ffd6138",
                "sha256": "e1b7b1307644c0df2511df45b66cc4d4cc73931923064e11113ebe7ff0fd8af3"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3c465b736f93146c12ed6d767ffd6138",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 957593,
            "upload_time": "2024-10-17T19:02:16",
            "upload_time_iso_8601": "2024-10-17T19:02:16.610343Z",
            "url": "https://files.pythonhosted.org/packages/bd/61/5de700ae69672b8c60b5a3535fb17d595d9a8a16a025079678c40f7fdbf4/oat_python-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4a5fd04813ec33675e1e3eae421fbc10b5ceb3c772b0ccbaff8dfa7ce6c0df5",
                "md5": "be81ef4781011712ea6cf45643d2f130",
                "sha256": "08195eba985c9908073f19c5d53b9a0ee278fc29c2f2f4a542026f0e6dd87464"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "be81ef4781011712ea6cf45643d2f130",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 913778,
            "upload_time": "2024-10-17T19:02:40",
            "upload_time_iso_8601": "2024-10-17T19:02:40.193051Z",
            "url": "https://files.pythonhosted.org/packages/a4/a5/fd04813ec33675e1e3eae421fbc10b5ceb3c772b0ccbaff8dfa7ce6c0df5/oat_python-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0cccc37da5724d118fd79aeb2cffb7c9c6fc024d771d6a35847ce99a2e3ff74d",
                "md5": "34f34ad2dff96dd96105413e9efe90f5",
                "sha256": "b5bd03e5337842e684be824f2366a50f3646bf3844dfe2bda730bd70ec525adc"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34f34ad2dff96dd96105413e9efe90f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 887064,
            "upload_time": "2024-10-17T19:02:58",
            "upload_time_iso_8601": "2024-10-17T19:02:58.338651Z",
            "url": "https://files.pythonhosted.org/packages/0c/cc/c37da5724d118fd79aeb2cffb7c9c6fc024d771d6a35847ce99a2e3ff74d/oat_python-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2044d7ad5335ca10d1429af2bfddca81b35cd3483dc71c2e836e3969ed283e0a",
                "md5": "df7afe9b226b0167fd4fffcf7d9ef01d",
                "sha256": "cc86fd0afcf1ad03e276e953a06da51637051310e2179273afdb7dd298c9c4da"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df7afe9b226b0167fd4fffcf7d9ef01d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 727823,
            "upload_time": "2024-10-17T19:00:25",
            "upload_time_iso_8601": "2024-10-17T19:00:25.974709Z",
            "url": "https://files.pythonhosted.org/packages/20/44/d7ad5335ca10d1429af2bfddca81b35cd3483dc71c2e836e3969ed283e0a/oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c53fae59182de1b05441473a4427ad5734cb7a2df5e4393c4724d5f80ff5d06d",
                "md5": "0cad2c213873320069f699b8260dc5bd",
                "sha256": "eca5a47b839593b88106d5eff453165cffa9d23ffb64409ddfef79f136361217"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0cad2c213873320069f699b8260dc5bd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 739566,
            "upload_time": "2024-10-17T19:00:42",
            "upload_time_iso_8601": "2024-10-17T19:00:42.151078Z",
            "url": "https://files.pythonhosted.org/packages/c5/3f/ae59182de1b05441473a4427ad5734cb7a2df5e4393c4724d5f80ff5d06d/oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0043834205c6a51058a397261a354961720309617a50b525d697506666bb5225",
                "md5": "33afa04a70e9431d78536dacb5f6e307",
                "sha256": "cb4d5d6de491baaa1c4e4b324c1d27bcd792b60d19c2948015b05efdeaeb7835"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "33afa04a70e9431d78536dacb5f6e307",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 835867,
            "upload_time": "2024-10-17T19:00:57",
            "upload_time_iso_8601": "2024-10-17T19:00:57.208925Z",
            "url": "https://files.pythonhosted.org/packages/00/43/834205c6a51058a397261a354961720309617a50b525d697506666bb5225/oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14c98921981ad207fe9412a6444c2940ae77f341415561a49a23f6b62133d8bd",
                "md5": "89dc50297509ebcaea0ee259997257da",
                "sha256": "31570d15742d2b83a8da1982a1b1228891f236528334bc4e69fd73518a4fac62"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "89dc50297509ebcaea0ee259997257da",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 940066,
            "upload_time": "2024-10-17T19:01:12",
            "upload_time_iso_8601": "2024-10-17T19:01:12.524162Z",
            "url": "https://files.pythonhosted.org/packages/14/c9/8921981ad207fe9412a6444c2940ae77f341415561a49a23f6b62133d8bd/oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c303cfa47c44bf52de0284e178afabc879f7e1a1bc99e4a837f5a111ccff9a2d",
                "md5": "9983e975b1042c42dbf5014855102f72",
                "sha256": "31005195d5525b5b7cf62da5b385914d643258dc0814ddb336344c63d8a6a862"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9983e975b1042c42dbf5014855102f72",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 767723,
            "upload_time": "2024-10-17T19:01:36",
            "upload_time_iso_8601": "2024-10-17T19:01:36.291711Z",
            "url": "https://files.pythonhosted.org/packages/c3/03/cfa47c44bf52de0284e178afabc879f7e1a1bc99e4a837f5a111ccff9a2d/oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a638ab73c816697ba9f0e55d546b2c7620e31e9a886e2fd9196506aa2ab45d68",
                "md5": "9b050b2aa42709e0390a7633039f226a",
                "sha256": "8cd1c8e227e5f1d8d6e6475a799d1bb7b6214a442681d397ce36254303804378"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9b050b2aa42709e0390a7633039f226a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 826148,
            "upload_time": "2024-10-17T19:01:24",
            "upload_time_iso_8601": "2024-10-17T19:01:24.709580Z",
            "url": "https://files.pythonhosted.org/packages/a6/38/ab73c816697ba9f0e55d546b2c7620e31e9a886e2fd9196506aa2ab45d68/oat_python-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56510ac5771d5756c6b40748a786c11994718daa36e21c079b8d14993dace46b",
                "md5": "4d9ce45cad14229426dad0e2db44c1db",
                "sha256": "c14e695debce09f490045f5d5d80018b9b3b03d86b77a7bc225ca9450356ec26"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4d9ce45cad14229426dad0e2db44c1db",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 881269,
            "upload_time": "2024-10-17T19:02:03",
            "upload_time_iso_8601": "2024-10-17T19:02:03.123393Z",
            "url": "https://files.pythonhosted.org/packages/56/51/0ac5771d5756c6b40748a786c11994718daa36e21c079b8d14993dace46b/oat_python-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "964b23869636c1a84650d2d41c78b58e6b34f0cf4b9059ea894cb569acde6144",
                "md5": "c91ef97922b63466620900f6b494a0a1",
                "sha256": "2623b87a01b3fd90483529375ecfada1dccd04b28db328451e2b936eecb5e752"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c91ef97922b63466620900f6b494a0a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 957252,
            "upload_time": "2024-10-17T19:02:18",
            "upload_time_iso_8601": "2024-10-17T19:02:18.709980Z",
            "url": "https://files.pythonhosted.org/packages/96/4b/23869636c1a84650d2d41c78b58e6b34f0cf4b9059ea894cb569acde6144/oat_python-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d8c23cd9a589393ec0debe67f69da3eb0cb7361242fc3960f6665020a05f6b0",
                "md5": "bd3656e722b9bb4691d982260087b4e1",
                "sha256": "9ef468fc484d77a9c8b8d4f7614685037e1e5d8c3988e599f977f173e168a87a"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "bd3656e722b9bb4691d982260087b4e1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 914393,
            "upload_time": "2024-10-17T19:02:42",
            "upload_time_iso_8601": "2024-10-17T19:02:42.021443Z",
            "url": "https://files.pythonhosted.org/packages/8d/8c/23cd9a589393ec0debe67f69da3eb0cb7361242fc3960f6665020a05f6b0/oat_python-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ff38bf09fa71cfd193cfb83b5b38c173e76d1a7fd1cf7d087ad1f614113f1c5",
                "md5": "551b1c4e20fd90ce923b4720439c46d7",
                "sha256": "88b641d19af1027becdd63e4272dbc93421908ae37259ee1b9e111f059df8d4e"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "551b1c4e20fd90ce923b4720439c46d7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 886547,
            "upload_time": "2024-10-17T19:02:59",
            "upload_time_iso_8601": "2024-10-17T19:02:59.743335Z",
            "url": "https://files.pythonhosted.org/packages/4f/f3/8bf09fa71cfd193cfb83b5b38c173e76d1a7fd1cf7d087ad1f614113f1c5/oat_python-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0aa16e7a7484deec07bc1a0e53a132c0abe05a91b9eb910875814ced2e13220d",
                "md5": "e577c848c22dca43ad0c428034820a23",
                "sha256": "327c289ed9c07299b2d7f1a5527f778c13ae5e4b588fc18c8d5fda8b177c3959"
            },
            "downloads": -1,
            "filename": "oat_python-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e577c848c22dca43ad0c428034820a23",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 74469,
            "upload_time": "2024-10-17T19:03:01",
            "upload_time_iso_8601": "2024-10-17T19:03:01.082623Z",
            "url": "https://files.pythonhosted.org/packages/0a/a1/6e7a7484deec07bc1a0e53a132c0abe05a91b9eb910875814ced2e13220d/oat_python-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-17 19:03:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "OpenAppliedTopology",
    "github_project": "oat_python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "oat-python"
}
        
Elapsed time: 0.37661s