myne


Namemyne JSON
Version 0.3.0 PyPI version JSON
download
home_pageNone
SummaryParser for manga and light novel filenames.
upload_time2025-08-24 19:49:34
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords manga parser
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # myne

[![Tests](https://img.shields.io/github/actions/workflow/status/Ravencentric/myne/tests.yml?label=tests)](https://github.com/Ravencentric/myne/actions/workflows/tests.yml)
[![Build](https://img.shields.io/github/actions/workflow/status/Ravencentric/myne/release.yml?label=build)](https://github.com/Ravencentric/myne/actions/workflows/release.yml)
![PyPI - Types](https://img.shields.io/pypi/types/myne)
![License](https://img.shields.io/pypi/l/myne?color=success)

[![PyPI - Latest Version](https://img.shields.io/pypi/v/myne?color=blue)](https://pypi.org/project/myne)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/myne)
![PyPI - Implementation](https://img.shields.io/pypi/implementation/myne)

`myne` is a parser for manga and light novel filenames, providing the `Book` class for extracting and representing metadata such as title, volume, chapter, edition, and more.

## Usage

```python
from myne import Book

book = Book.parse("Ascendance of a Bookworm - v07 (2021) (Digital) (Kinoworm).cbz")

assert book.title == "Ascendance of a Bookworm"
assert book.volume == "7"
assert book.year == 2021
assert book.digital is True
assert book.group == "Kinoworm"
```

Checkout the complete documentation [here](https://ravencentric.cc/myne/).

## Installation

`myne` is available on [PyPI](https://pypi.org/project/myne/), so you can simply use pip to install it.

```console
pip install myne
```

## Building from source

Building from source requires the [Rust toolchain](https://rustup.rs/) and [Python 3.9+](https://www.python.org/downloads/).

- With [`uv`](https://docs.astral.sh/uv/):

  ```console
  git clone https://github.com/Ravencentric/myne
  cd myne
  uv build
  ```

- With [`pypa/build`](https://github.com/pypa/build):

  ```console
  git clone https://github.com/Ravencentric/myne
  cd myne
  python -m build
  ```

## License

Licensed under either of:

- Apache License, Version 2.0 ([LICENSE-APACHE](https://github.com/Ravencentric/myne/blob/main/LICENSE-APACHE) or <https://www.apache.org/licenses/LICENSE-2.0>)
- MIT license ([LICENSE-MIT](https://github.com/Ravencentric/myne/blob/main/LICENSE-MIT) or <https://opensource.org/licenses/MIT>)

at your option.

## Contributing

Contributions are welcome! Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "myne",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "manga, parser",
    "author": null,
    "author_email": "Ravencentric <me@ravencentric.cc>",
    "download_url": "https://files.pythonhosted.org/packages/bc/d0/3d81b1af092105e0befb10a11290f780d0a983de78f27e82ef51c8bde756/myne-0.3.0.tar.gz",
    "platform": null,
    "description": "# myne\n\n[![Tests](https://img.shields.io/github/actions/workflow/status/Ravencentric/myne/tests.yml?label=tests)](https://github.com/Ravencentric/myne/actions/workflows/tests.yml)\n[![Build](https://img.shields.io/github/actions/workflow/status/Ravencentric/myne/release.yml?label=build)](https://github.com/Ravencentric/myne/actions/workflows/release.yml)\n![PyPI - Types](https://img.shields.io/pypi/types/myne)\n![License](https://img.shields.io/pypi/l/myne?color=success)\n\n[![PyPI - Latest Version](https://img.shields.io/pypi/v/myne?color=blue)](https://pypi.org/project/myne)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/myne)\n![PyPI - Implementation](https://img.shields.io/pypi/implementation/myne)\n\n`myne` is a parser for manga and light novel filenames, providing the `Book` class for extracting and representing metadata such as title, volume, chapter, edition, and more.\n\n## Usage\n\n```python\nfrom myne import Book\n\nbook = Book.parse(\"Ascendance of a Bookworm - v07 (2021) (Digital) (Kinoworm).cbz\")\n\nassert book.title == \"Ascendance of a Bookworm\"\nassert book.volume == \"7\"\nassert book.year == 2021\nassert book.digital is True\nassert book.group == \"Kinoworm\"\n```\n\nCheckout the complete documentation [here](https://ravencentric.cc/myne/).\n\n## Installation\n\n`myne` is available on [PyPI](https://pypi.org/project/myne/), so you can simply use pip to install it.\n\n```console\npip install myne\n```\n\n## Building from source\n\nBuilding from source requires the [Rust toolchain](https://rustup.rs/) and [Python 3.9+](https://www.python.org/downloads/).\n\n- With [`uv`](https://docs.astral.sh/uv/):\n\n  ```console\n  git clone https://github.com/Ravencentric/myne\n  cd myne\n  uv build\n  ```\n\n- With [`pypa/build`](https://github.com/pypa/build):\n\n  ```console\n  git clone https://github.com/Ravencentric/myne\n  cd myne\n  python -m build\n  ```\n\n## License\n\nLicensed under either of:\n\n- Apache License, Version 2.0 ([LICENSE-APACHE](https://github.com/Ravencentric/myne/blob/main/LICENSE-APACHE) or <https://www.apache.org/licenses/LICENSE-2.0>)\n- MIT license ([LICENSE-MIT](https://github.com/Ravencentric/myne/blob/main/LICENSE-MIT) or <https://opensource.org/licenses/MIT>)\n\nat your option.\n\n## Contributing\n\nContributions are welcome! Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Parser for manga and light novel filenames.",
    "version": "0.3.0",
    "project_urls": {
        "Documentation": "https://ravencentric.cc/myne/",
        "Repository": "https://github.com/Ravencentric/myne"
    },
    "split_keywords": [
        "manga",
        " parser"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d93ba0f3acae572cf583956a17a7d239448ddf33173682a6174f00f5873f84ae",
                "md5": "856543ac0c7a5d0e85dd7aafeacedbbc",
                "sha256": "ebe89e211a2498bb6e3aeb89ac01baa6369c7915dd81f5cbaa6eb5d42bc30e1f"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "856543ac0c7a5d0e85dd7aafeacedbbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 939673,
            "upload_time": "2025-08-24T19:47:39",
            "upload_time_iso_8601": "2025-08-24T19:47:39.877091Z",
            "url": "https://files.pythonhosted.org/packages/d9/3b/a0f3acae572cf583956a17a7d239448ddf33173682a6174f00f5873f84ae/myne-0.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8cde2052f3bace9bdcedbeb2d368c78e4e7ddcb58baecd2d631ecde45a71efad",
                "md5": "a4e24b5cecea20e14a07e1c96ef35ca7",
                "sha256": "d9b69425c2f707b5d7e8ed90a3e474cb28c342d907dfd36ab350be967c798fac"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4e24b5cecea20e14a07e1c96ef35ca7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1014878,
            "upload_time": "2025-08-24T19:47:41",
            "upload_time_iso_8601": "2025-08-24T19:47:41.800455Z",
            "url": "https://files.pythonhosted.org/packages/8c/de/2052f3bace9bdcedbeb2d368c78e4e7ddcb58baecd2d631ecde45a71efad/myne-0.3.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65b5a1d39e4f0cd3c2b8da474b90c2dbf7147685cdfbbf5875f2f1372f04cc62",
                "md5": "ccccb973f7fd233f35048a7859020324",
                "sha256": "2c2037e92340b5311bef5fb2085e8fedb230f4ca54cdad68010cb6bdd19faa88"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ccccb973f7fd233f35048a7859020324",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1013951,
            "upload_time": "2025-08-24T19:47:43",
            "upload_time_iso_8601": "2025-08-24T19:47:43.109227Z",
            "url": "https://files.pythonhosted.org/packages/65/b5/a1d39e4f0cd3c2b8da474b90c2dbf7147685cdfbbf5875f2f1372f04cc62/myne-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9247b579fabd0f8495a6894846db24c9c382d644e7e77e30c84204945cd8bbf",
                "md5": "798a0e9e406d9cd2996ef3853e791e64",
                "sha256": "401b0e538e7b3c29835bae4f5dbfc73a13f2c29a2cadc1849638a7f1b9949786"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "798a0e9e406d9cd2996ef3853e791e64",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1076029,
            "upload_time": "2025-08-24T19:47:44",
            "upload_time_iso_8601": "2025-08-24T19:47:44.666412Z",
            "url": "https://files.pythonhosted.org/packages/c9/24/7b579fabd0f8495a6894846db24c9c382d644e7e77e30c84204945cd8bbf/myne-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "161c7c10bc127f8b3337924f94b3e6ce6def5bb096acc4986e35c01cda13bddb",
                "md5": "d9e0a9d832e29f81adeff6712747326c",
                "sha256": "acf0d74ff55c15d97272aeb896140bf013070acd150a55b7e80df28471480773"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d9e0a9d832e29f81adeff6712747326c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1076140,
            "upload_time": "2025-08-24T19:47:46",
            "upload_time_iso_8601": "2025-08-24T19:47:46.379079Z",
            "url": "https://files.pythonhosted.org/packages/16/1c/7c10bc127f8b3337924f94b3e6ce6def5bb096acc4986e35c01cda13bddb/myne-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01e1ae1f6a5195118ba9ef871eda6b151a82544e1f5589442ca4a9594a4ddc30",
                "md5": "7b05c0652a46e1bea1e5ffa2407a1f76",
                "sha256": "995cbca34add76e958c82653951b03c5a30f979d5482ec75ece0e2a3e09872c6"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b05c0652a46e1bea1e5ffa2407a1f76",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1152997,
            "upload_time": "2025-08-24T19:47:47",
            "upload_time_iso_8601": "2025-08-24T19:47:47.659516Z",
            "url": "https://files.pythonhosted.org/packages/01/e1/ae1f6a5195118ba9ef871eda6b151a82544e1f5589442ca4a9594a4ddc30/myne-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce5aa6a3922fecb7cfc85e634827798bf3be0ef18c889d7dc09147976787db16",
                "md5": "8d1b73e9e936ee6de9d4b84c0bd92f61",
                "sha256": "2eca511abe396d7702c3babd296cbb829335ff37b4109747406aa864b507eabd"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8d1b73e9e936ee6de9d4b84c0bd92f61",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 922315,
            "upload_time": "2025-08-24T19:47:49",
            "upload_time_iso_8601": "2025-08-24T19:47:49.224644Z",
            "url": "https://files.pythonhosted.org/packages/ce/5a/a6a3922fecb7cfc85e634827798bf3be0ef18c889d7dc09147976787db16/myne-0.3.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67537fec8ba9ccf41278f0b5b2dd99198cba65d71c3bde8e2790b2fe5844c94b",
                "md5": "9ad300198bebe2c8fbe3f5eb1a92c9e1",
                "sha256": "d43e2fb58a370d543633ff913e35b03b9a0a901dcb1d0c89fa6f57ec16093798"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "9ad300198bebe2c8fbe3f5eb1a92c9e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 845442,
            "upload_time": "2025-08-24T19:47:50",
            "upload_time_iso_8601": "2025-08-24T19:47:50.426206Z",
            "url": "https://files.pythonhosted.org/packages/67/53/7fec8ba9ccf41278f0b5b2dd99198cba65d71c3bde8e2790b2fe5844c94b/myne-0.3.0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ec839efcba444cf712811ff1703d6273bcdeadbcf240975bb9d42e167b39c33",
                "md5": "f1abf2b46ac6e0837e1601bc8ecb8211",
                "sha256": "b73d6350f68ea175c277bb3293560442945ae1cc7ca82e494268c0b7abd884ed"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f1abf2b46ac6e0837e1601bc8ecb8211",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 939325,
            "upload_time": "2025-08-24T19:47:51",
            "upload_time_iso_8601": "2025-08-24T19:47:51.947252Z",
            "url": "https://files.pythonhosted.org/packages/5e/c8/39efcba444cf712811ff1703d6273bcdeadbcf240975bb9d42e167b39c33/myne-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a42ffc80c5157f93b967ca8a27bd81879805ca19c181dc79cbc181ea213bbe1",
                "md5": "b2379d80c3f48375be7e095fb708107a",
                "sha256": "8be0c4e6c87552f362e0a0403358b18529f95ead84f87840e59b8afa01433cf9"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b2379d80c3f48375be7e095fb708107a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1014469,
            "upload_time": "2025-08-24T19:47:53",
            "upload_time_iso_8601": "2025-08-24T19:47:53.142898Z",
            "url": "https://files.pythonhosted.org/packages/7a/42/ffc80c5157f93b967ca8a27bd81879805ca19c181dc79cbc181ea213bbe1/myne-0.3.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abd599fc013d2146715fa310a2140521ea59361425e95609b0afc71316dddf21",
                "md5": "0cbe0089bac83c186953894eb9a7af96",
                "sha256": "d236bd12e26b37b84b40b4cc338d9001e004e5c5fc82832822dc4531ad385cb5"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0cbe0089bac83c186953894eb9a7af96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1013879,
            "upload_time": "2025-08-24T19:47:54",
            "upload_time_iso_8601": "2025-08-24T19:47:54.846946Z",
            "url": "https://files.pythonhosted.org/packages/ab/d5/99fc013d2146715fa310a2140521ea59361425e95609b0afc71316dddf21/myne-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f5f86ae1b82993a07458791d71a1965cea13bbd99af2e98e8fbc456c21cae82",
                "md5": "4b98c5dab12c2ce02bd35cd2ba305d7e",
                "sha256": "acc2155d99ad479bfccff4acb90122d6bd392b3132d7eb524bc267546931cc6d"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b98c5dab12c2ce02bd35cd2ba305d7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1075817,
            "upload_time": "2025-08-24T19:47:56",
            "upload_time_iso_8601": "2025-08-24T19:47:56.492870Z",
            "url": "https://files.pythonhosted.org/packages/7f/5f/86ae1b82993a07458791d71a1965cea13bbd99af2e98e8fbc456c21cae82/myne-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48a68951ef309e57e04461df3594b0b9c110adde72e612c45f4a6aead81148fb",
                "md5": "c3a1f5a9910ba4f0fe9d610df9263568",
                "sha256": "9a2ad65a439752c2a3641d6c30ec4096790d1eb1b2789bd2e4b8ea4039c53afb"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c3a1f5a9910ba4f0fe9d610df9263568",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1076089,
            "upload_time": "2025-08-24T19:47:58",
            "upload_time_iso_8601": "2025-08-24T19:47:58.089026Z",
            "url": "https://files.pythonhosted.org/packages/48/a6/8951ef309e57e04461df3594b0b9c110adde72e612c45f4a6aead81148fb/myne-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "955d52700ece2e9eb69077835731674fbee571c97cd36a87227d280c491d285c",
                "md5": "d09a192c18faeb89748b90c6bf3e6b8c",
                "sha256": "41ea7e0169d89917b05e5bbc43ec059662edf5adb491c0176e7bd086a6a46ce4"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d09a192c18faeb89748b90c6bf3e6b8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1152924,
            "upload_time": "2025-08-24T19:47:59",
            "upload_time_iso_8601": "2025-08-24T19:47:59.382455Z",
            "url": "https://files.pythonhosted.org/packages/95/5d/52700ece2e9eb69077835731674fbee571c97cd36a87227d280c491d285c/myne-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93e3ecdde6817d9e88db05eb0a8cc05b3f2897713f998270bd8354a0ce79d0b5",
                "md5": "42cbb10ff248093936da0b4746f0fec2",
                "sha256": "fafce64c7aa4cbaca8eb526b2d91c088349511946a6ba0ad0c2e5786f51eae08"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "42cbb10ff248093936da0b4746f0fec2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 922119,
            "upload_time": "2025-08-24T19:48:01",
            "upload_time_iso_8601": "2025-08-24T19:48:01.034903Z",
            "url": "https://files.pythonhosted.org/packages/93/e3/ecdde6817d9e88db05eb0a8cc05b3f2897713f998270bd8354a0ce79d0b5/myne-0.3.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b42abf9c6d3e9a29ee68bebdeb0186e38102c083592bf1863f7376ab270af0c7",
                "md5": "60cf49a5e898899d2659053a5874d348",
                "sha256": "fbf580b7979e8fb12af48d10b799917a18f9c534f1d8056a2cf326bc05c07a9c"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "60cf49a5e898899d2659053a5874d348",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 845396,
            "upload_time": "2025-08-24T19:48:02",
            "upload_time_iso_8601": "2025-08-24T19:48:02.260737Z",
            "url": "https://files.pythonhosted.org/packages/b4/2a/bf9c6d3e9a29ee68bebdeb0186e38102c083592bf1863f7376ab270af0c7/myne-0.3.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed7745f6073825ee225580ab6eb00503c20fecc6471d9ee2a9fc420cd712c3dd",
                "md5": "dac7e557a1ed1a90e44998bc22e725dc",
                "sha256": "50c10dfe760a1e2ed13472b9f70bb8e2bbfdb782e5a8c3bf0495a2da4493879f"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dac7e557a1ed1a90e44998bc22e725dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 937582,
            "upload_time": "2025-08-24T19:48:03",
            "upload_time_iso_8601": "2025-08-24T19:48:03.522336Z",
            "url": "https://files.pythonhosted.org/packages/ed/77/45f6073825ee225580ab6eb00503c20fecc6471d9ee2a9fc420cd712c3dd/myne-0.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04ec89d2c8edb0272ef5e60d5c253ae0621fd0e15370ac43ea6a9f9834056903",
                "md5": "629d5fedde372d9c545ffb5916ffa572",
                "sha256": "10784f9ee37b93a5c2bb16b5aaed113f98f8dc29d29094df0accae7f769a4f39"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "629d5fedde372d9c545ffb5916ffa572",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1012938,
            "upload_time": "2025-08-24T19:48:05",
            "upload_time_iso_8601": "2025-08-24T19:48:05.011017Z",
            "url": "https://files.pythonhosted.org/packages/04/ec/89d2c8edb0272ef5e60d5c253ae0621fd0e15370ac43ea6a9f9834056903/myne-0.3.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd02f8f39bf1eb19823256459145b97b946171822de795b3728ff72b4962f6bb",
                "md5": "22b76dd5bc82b503de1769ef6c947062",
                "sha256": "83bad7157c3b9467b8d8e7e3329962bc840701d715e2049a6200b5ee10cfb59a"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "22b76dd5bc82b503de1769ef6c947062",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1012192,
            "upload_time": "2025-08-24T19:48:06",
            "upload_time_iso_8601": "2025-08-24T19:48:06.777249Z",
            "url": "https://files.pythonhosted.org/packages/cd/02/f8f39bf1eb19823256459145b97b946171822de795b3728ff72b4962f6bb/myne-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08bf4391c6c79379ab29d06a721fbbf405c8b7414e392684555e854bdbfa1e5a",
                "md5": "357a1de9634a7fae5184ce91c9904982",
                "sha256": "16bd7c0fd2a06c717954aad243a9d606b9c41bc9149e02e87c95c13a11658f37"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "357a1de9634a7fae5184ce91c9904982",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1073451,
            "upload_time": "2025-08-24T19:48:08",
            "upload_time_iso_8601": "2025-08-24T19:48:08.252499Z",
            "url": "https://files.pythonhosted.org/packages/08/bf/4391c6c79379ab29d06a721fbbf405c8b7414e392684555e854bdbfa1e5a/myne-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba2477ca9eef2feb4fd1aed00aa3787ad4ae279d05c94a669188bb545c48ea48",
                "md5": "d5c1755916654e7fdca989240f6d2c90",
                "sha256": "49c8d6287317413d67f5e7295c7708bff3a60830806f648d51ba0e228864129f"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d5c1755916654e7fdca989240f6d2c90",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1074388,
            "upload_time": "2025-08-24T19:48:10",
            "upload_time_iso_8601": "2025-08-24T19:48:10.158466Z",
            "url": "https://files.pythonhosted.org/packages/ba/24/77ca9eef2feb4fd1aed00aa3787ad4ae279d05c94a669188bb545c48ea48/myne-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04ee4477b60cfa67bcb9ccd9cfd707635d3630544e281f11efcb242d07c1963f",
                "md5": "ec9c535a2a42c7d6c5fc70d0b69797bf",
                "sha256": "f70c288cd79c4145af3bbbd35c39d7e21a44bf2429bc9fa5b40798311e5593cf"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec9c535a2a42c7d6c5fc70d0b69797bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1150690,
            "upload_time": "2025-08-24T19:48:11",
            "upload_time_iso_8601": "2025-08-24T19:48:11.690898Z",
            "url": "https://files.pythonhosted.org/packages/04/ee/4477b60cfa67bcb9ccd9cfd707635d3630544e281f11efcb242d07c1963f/myne-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52a9b4a62d94c805787af33acc3c041876b3d8dab8862138b09e1d81e3cb8123",
                "md5": "619a47a3115778d42c55df8275e8947d",
                "sha256": "73c8ed1965b5a6a6235543f030e5cf5e95db688a0607186e980ded9878b00229"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "619a47a3115778d42c55df8275e8947d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 922862,
            "upload_time": "2025-08-24T19:48:13",
            "upload_time_iso_8601": "2025-08-24T19:48:13.322136Z",
            "url": "https://files.pythonhosted.org/packages/52/a9/b4a62d94c805787af33acc3c041876b3d8dab8862138b09e1d81e3cb8123/myne-0.3.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7c6c7bb0bdc094c5a09f599a6692bc16a8782de5f52f33c4a8f931cf52dcf3c",
                "md5": "c7b84f281471fddaed8efdfdeab568d8",
                "sha256": "de8260ad537e9db556de8c80b36965b12321b8df7fa5b949d4135c35846f29af"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "c7b84f281471fddaed8efdfdeab568d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 844495,
            "upload_time": "2025-08-24T19:48:14",
            "upload_time_iso_8601": "2025-08-24T19:48:14.682369Z",
            "url": "https://files.pythonhosted.org/packages/d7/c6/c7bb0bdc094c5a09f599a6692bc16a8782de5f52f33c4a8f931cf52dcf3c/myne-0.3.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4dcee937b423b82953d1e44c84d767d9ddcfc0ba4b8b9603a8ca82da704ae944",
                "md5": "4339f7633257d7b8214b7790c04b4177",
                "sha256": "ef04adda6433541aa0fe7d44bdf45165a6c46c1eeb98e6ae4fe3ff2bb0ac96f4"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4339f7633257d7b8214b7790c04b4177",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 937316,
            "upload_time": "2025-08-24T19:48:15",
            "upload_time_iso_8601": "2025-08-24T19:48:15.868839Z",
            "url": "https://files.pythonhosted.org/packages/4d/ce/e937b423b82953d1e44c84d767d9ddcfc0ba4b8b9603a8ca82da704ae944/myne-0.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd433f1848a1d93be5e96201adc40ff5b6d2ffb5f3778065726bf5e225328c5e",
                "md5": "cc374659fa0dcc29cdc6262db74b8994",
                "sha256": "1e084a2bd24902bd3d7ac39a8b45b49a98472c277f3d8be36b9af451b677231c"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc374659fa0dcc29cdc6262db74b8994",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1012482,
            "upload_time": "2025-08-24T19:48:17",
            "upload_time_iso_8601": "2025-08-24T19:48:17.106024Z",
            "url": "https://files.pythonhosted.org/packages/cd/43/3f1848a1d93be5e96201adc40ff5b6d2ffb5f3778065726bf5e225328c5e/myne-0.3.0-cp313-cp313-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5a425fecf67b1bd49633cbc4dbf6070192a4ef446685a0f92ce4fac4e293ddc",
                "md5": "db20ca87165338d61f30dcb01dd4e385",
                "sha256": "0b5b9ed1bf32a36f077c45101753dc9d4efe98a4572ddf1e57809536ee664185"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "db20ca87165338d61f30dcb01dd4e385",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1011601,
            "upload_time": "2025-08-24T19:48:18",
            "upload_time_iso_8601": "2025-08-24T19:48:18.380775Z",
            "url": "https://files.pythonhosted.org/packages/b5/a4/25fecf67b1bd49633cbc4dbf6070192a4ef446685a0f92ce4fac4e293ddc/myne-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce36b41ff40298b014d0dd1ff258b9aa3188e4198f400ad5e415abeb9928fb28",
                "md5": "2a043c465652a57f43b5583f59ab3890",
                "sha256": "72fe15af2be8b9875731b1f9d536fd9cfc0490a631f597080ff4c88cb28ec1f1"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a043c465652a57f43b5583f59ab3890",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1072889,
            "upload_time": "2025-08-24T19:48:19",
            "upload_time_iso_8601": "2025-08-24T19:48:19.694951Z",
            "url": "https://files.pythonhosted.org/packages/ce/36/b41ff40298b014d0dd1ff258b9aa3188e4198f400ad5e415abeb9928fb28/myne-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b4cd59b039201bad0954148789eba9c62543f4b05055e41acc792bad57087a5",
                "md5": "af8d2b17cb8e53671ef99290cf33869e",
                "sha256": "8e0a2b57285a4a052b30fbc7c4622353ee95467678d8c2bed92b4f14db6b8fc6"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "af8d2b17cb8e53671ef99290cf33869e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1073900,
            "upload_time": "2025-08-24T19:48:20",
            "upload_time_iso_8601": "2025-08-24T19:48:20.951561Z",
            "url": "https://files.pythonhosted.org/packages/2b/4c/d59b039201bad0954148789eba9c62543f4b05055e41acc792bad57087a5/myne-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3417f68bb0d655230a5932c14fd8b5de0ebb2bac6ba6133589d2d207bb5b9e78",
                "md5": "7de94d8d8ab39bdd432799e7ea46d117",
                "sha256": "a041cfd2154f7ec7e9bd07192184c95cd8aa8507b8ef0ed4dc81c2535fcfe8cc"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7de94d8d8ab39bdd432799e7ea46d117",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1149684,
            "upload_time": "2025-08-24T19:48:22",
            "upload_time_iso_8601": "2025-08-24T19:48:22.907518Z",
            "url": "https://files.pythonhosted.org/packages/34/17/f68bb0d655230a5932c14fd8b5de0ebb2bac6ba6133589d2d207bb5b9e78/myne-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94aa47c0fb0971f4864593f0b4aace6524c7a5f588650501f310aa4c9a22c889",
                "md5": "2ef0f27bb23e36b93cdfc905d4ab85a6",
                "sha256": "4726bc32fe74aea8adc5e13c7bda0fd5630cbea7901407bd518fcbdd18499c0c"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2ef0f27bb23e36b93cdfc905d4ab85a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 935882,
            "upload_time": "2025-08-24T19:48:26",
            "upload_time_iso_8601": "2025-08-24T19:48:26.671708Z",
            "url": "https://files.pythonhosted.org/packages/94/aa/47c0fb0971f4864593f0b4aace6524c7a5f588650501f310aa4c9a22c889/myne-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb27b8e7d6f7d5e1937bdb596c0f9cefddd2a13b278ed99c79325a08fdc05248",
                "md5": "158324e0ffaad82f05e909779bb1be50",
                "sha256": "091260f9e2e5ecc710bfec03a425686b9c3afdb0c47d814a480887be3a8c41f9"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313t-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "158324e0ffaad82f05e909779bb1be50",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1011144,
            "upload_time": "2025-08-24T19:48:28",
            "upload_time_iso_8601": "2025-08-24T19:48:28.334761Z",
            "url": "https://files.pythonhosted.org/packages/eb/27/b8e7d6f7d5e1937bdb596c0f9cefddd2a13b278ed99c79325a08fdc05248/myne-0.3.0-cp313-cp313t-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc871b62346435f71e9d10897693fc5a1568ff97dd9f71844aae0a7a8f006e41",
                "md5": "1a5a932248ae0689cdb5a7b6204d6b2e",
                "sha256": "76cf45542f0489c33eac98fcf26c29f8850fbeb7b35c2e08ca40afc578d851ec"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1a5a932248ae0689cdb5a7b6204d6b2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1010928,
            "upload_time": "2025-08-24T19:48:30",
            "upload_time_iso_8601": "2025-08-24T19:48:30.035583Z",
            "url": "https://files.pythonhosted.org/packages/dc/87/1b62346435f71e9d10897693fc5a1568ff97dd9f71844aae0a7a8f006e41/myne-0.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16e3867a56d3826f70acc24e25436b6c194fc33f79c6422080ab9137780c4ee6",
                "md5": "5b18599df11b95c2374dc9653e17b900",
                "sha256": "eb98fde7d257d2d09343153861bf95f2db816ce4b5a480bb72337f5086e1fc8b"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313t-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b18599df11b95c2374dc9653e17b900",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1072045,
            "upload_time": "2025-08-24T19:48:31",
            "upload_time_iso_8601": "2025-08-24T19:48:31.642930Z",
            "url": "https://files.pythonhosted.org/packages/16/e3/867a56d3826f70acc24e25436b6c194fc33f79c6422080ab9137780c4ee6/myne-0.3.0-cp313-cp313t-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "060b987f98a572cc85635a0356cfe8f6b2726bd93980b213e922656dc28ce5d6",
                "md5": "9e4858634252e929a6e476c4f9b21b81",
                "sha256": "59ad7988d2328c5a7fa139b8da118bf370ad5658e7c867753cc960388eadcd68"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9e4858634252e929a6e476c4f9b21b81",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1073327,
            "upload_time": "2025-08-24T19:48:32",
            "upload_time_iso_8601": "2025-08-24T19:48:32.823454Z",
            "url": "https://files.pythonhosted.org/packages/06/0b/987f98a572cc85635a0356cfe8f6b2726bd93980b213e922656dc28ce5d6/myne-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4b705d3311a8b2961267f676507d746ca691f00b9a8cc6e0439a436466a88b7",
                "md5": "b5ef8b5e015e581233ce9d83e18284b7",
                "sha256": "3a38e537a738c68094f3c1bcd5fd9b9e4699274c3d658e8c3129d1ce2a0ec2a9"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5ef8b5e015e581233ce9d83e18284b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1149012,
            "upload_time": "2025-08-24T19:48:34",
            "upload_time_iso_8601": "2025-08-24T19:48:34.028272Z",
            "url": "https://files.pythonhosted.org/packages/c4/b7/05d3311a8b2961267f676507d746ca691f00b9a8cc6e0439a436466a88b7/myne-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "804f70567ea2097fe26395ae27364b9791181ae83a5dfab36e16860d221b9959",
                "md5": "31fd5efb2f61a9e99685df7576d1882d",
                "sha256": "fb8578b8b0834ce93192126f1c2717235b811ddcc1848e3ade8aba06116bf72a"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "31fd5efb2f61a9e99685df7576d1882d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 922105,
            "upload_time": "2025-08-24T19:48:35",
            "upload_time_iso_8601": "2025-08-24T19:48:35.329734Z",
            "url": "https://files.pythonhosted.org/packages/80/4f/70567ea2097fe26395ae27364b9791181ae83a5dfab36e16860d221b9959/myne-0.3.0-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cf33edbc5be9839ac44f72839bca3a5dd8af7c227554ea0f08970f0d36aa0cd",
                "md5": "2eb2a7effc6cbd6f1b99da78c30d0d66",
                "sha256": "38ac89d543a6302ebe8dbf14633b33c8d0e79d677dd9b7e6ec255405172817eb"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "2eb2a7effc6cbd6f1b99da78c30d0d66",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 842957,
            "upload_time": "2025-08-24T19:48:36",
            "upload_time_iso_8601": "2025-08-24T19:48:36.528234Z",
            "url": "https://files.pythonhosted.org/packages/5c/f3/3edbc5be9839ac44f72839bca3a5dd8af7c227554ea0f08970f0d36aa0cd/myne-0.3.0-cp313-cp313t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12d7e907791734b02e7da7d791e1f924b0b33e5bca60e923313bcfa72cc89679",
                "md5": "5802c602aeabfb1621a73ad40248e7b4",
                "sha256": "5679e7505f8c422428302d98737a28842cdcf39ffcd194afd3521755fd050741"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5802c602aeabfb1621a73ad40248e7b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 922372,
            "upload_time": "2025-08-24T19:48:24",
            "upload_time_iso_8601": "2025-08-24T19:48:24.233177Z",
            "url": "https://files.pythonhosted.org/packages/12/d7/e907791734b02e7da7d791e1f924b0b33e5bca60e923313bcfa72cc89679/myne-0.3.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5d066926d184fb01cbf61f82e20b43537ad6c331b8f20d7c96fc9bbe16b693f",
                "md5": "ecba198f6ef4aa3b5f2356d8f970b4ff",
                "sha256": "7bc7a502d54cfb78ca6083b3be3888317a4af95ecefb29cee777cb48f37c563f"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "ecba198f6ef4aa3b5f2356d8f970b4ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 844464,
            "upload_time": "2025-08-24T19:48:25",
            "upload_time_iso_8601": "2025-08-24T19:48:25.449415Z",
            "url": "https://files.pythonhosted.org/packages/a5/d0/66926d184fb01cbf61f82e20b43537ad6c331b8f20d7c96fc9bbe16b693f/myne-0.3.0-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e92be59eb4a60670a682340113b60d449561f159be398992af5e86985d249c4",
                "md5": "65fe1f360cc5480a10c1641a933e1383",
                "sha256": "5d7c3f661d94d75875ff3efb92e769bceceffb6aa80b8b31bca1a5a8d4a83f0f"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "65fe1f360cc5480a10c1641a933e1383",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 937057,
            "upload_time": "2025-08-24T19:48:37",
            "upload_time_iso_8601": "2025-08-24T19:48:37.714561Z",
            "url": "https://files.pythonhosted.org/packages/6e/92/be59eb4a60670a682340113b60d449561f159be398992af5e86985d249c4/myne-0.3.0-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf98bc2193d2cfd074b66bfb7fd99a8a139d55ab84acd14065b6fc4daf246b71",
                "md5": "11f6a60a4add2b9866bb9035709ba193",
                "sha256": "e6f7ac1beab5dffadfa6f4b1e59b1d8937b5733c51bc716d5c9932ffa0dd96f4"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11f6a60a4add2b9866bb9035709ba193",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1012462,
            "upload_time": "2025-08-24T19:48:39",
            "upload_time_iso_8601": "2025-08-24T19:48:39.307915Z",
            "url": "https://files.pythonhosted.org/packages/cf/98/bc2193d2cfd074b66bfb7fd99a8a139d55ab84acd14065b6fc4daf246b71/myne-0.3.0-cp314-cp314-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6674fb7f568b07c025b3e4e91a19adb22a92abf7111cf229744ad33dbfe7ba66",
                "md5": "98c1601e16da54448759f19e60715145",
                "sha256": "356c3ac9552cd859686b2731c14ed1b7c18ab5596ed5ddc0367054bbe5f0c6b3"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "98c1601e16da54448759f19e60715145",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1011533,
            "upload_time": "2025-08-24T19:48:40",
            "upload_time_iso_8601": "2025-08-24T19:48:40.505856Z",
            "url": "https://files.pythonhosted.org/packages/66/74/fb7f568b07c025b3e4e91a19adb22a92abf7111cf229744ad33dbfe7ba66/myne-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ef0a9b8a4e960dcab9800757fc87b2b7f2e43a8fdc359aef06188743af381c5",
                "md5": "c40f76d3686188879d0411a7f5456319",
                "sha256": "1ec5fdedac5d6225718643a07c1d9bb3964ff02489dca9cf88ab0629f55bc2fd"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c40f76d3686188879d0411a7f5456319",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1072854,
            "upload_time": "2025-08-24T19:48:41",
            "upload_time_iso_8601": "2025-08-24T19:48:41.752303Z",
            "url": "https://files.pythonhosted.org/packages/5e/f0/a9b8a4e960dcab9800757fc87b2b7f2e43a8fdc359aef06188743af381c5/myne-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c55971eb150493e75eae581836ba380f8b4eb40bbd2023cc9297399b10082573",
                "md5": "a69d146865e0067fdd2ac9c954261261",
                "sha256": "99f59ffc87cb3724854f421f62d0d6bd4bc7efd67c9026f963ce397ddda17bfd"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a69d146865e0067fdd2ac9c954261261",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1073752,
            "upload_time": "2025-08-24T19:48:43",
            "upload_time_iso_8601": "2025-08-24T19:48:43.048969Z",
            "url": "https://files.pythonhosted.org/packages/c5/59/71eb150493e75eae581836ba380f8b4eb40bbd2023cc9297399b10082573/myne-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d5dee706dbe89f423330a0bb0bd818e121b540c80b47dfa561768697cc2abf1",
                "md5": "bfd21a0123d3dab9bda84fe565e80513",
                "sha256": "1e04567c098f1c2c9bf2630e59d22656e50f3f23100f8201098dfd2e5f4913cd"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bfd21a0123d3dab9bda84fe565e80513",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1149780,
            "upload_time": "2025-08-24T19:48:44",
            "upload_time_iso_8601": "2025-08-24T19:48:44.465850Z",
            "url": "https://files.pythonhosted.org/packages/4d/5d/ee706dbe89f423330a0bb0bd818e121b540c80b47dfa561768697cc2abf1/myne-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de0597112769eb3fd24f37895b4c878233b0517079b66b67b303fe9ddd957da5",
                "md5": "9d82f93dae1df97334fd20aa0cb91ada",
                "sha256": "5a33fc3aaae33b8ab927e773b523ca641ce4ffdb2b3c889ef0a905972fcbd991"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9d82f93dae1df97334fd20aa0cb91ada",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 935813,
            "upload_time": "2025-08-24T19:48:48",
            "upload_time_iso_8601": "2025-08-24T19:48:48.296331Z",
            "url": "https://files.pythonhosted.org/packages/de/05/97112769eb3fd24f37895b4c878233b0517079b66b67b303fe9ddd957da5/myne-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b06e14939c7d9ca6880217c1edadeff9ed28cb69e7941058cfc1f5d5150c18e",
                "md5": "a8c80ad963185b63fd4d89524b777a82",
                "sha256": "cc93ec136309408e77d04e003960401e996f62af12d09b90013f1278d35ca8f3"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314t-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8c80ad963185b63fd4d89524b777a82",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1011181,
            "upload_time": "2025-08-24T19:48:49",
            "upload_time_iso_8601": "2025-08-24T19:48:49.922563Z",
            "url": "https://files.pythonhosted.org/packages/3b/06/e14939c7d9ca6880217c1edadeff9ed28cb69e7941058cfc1f5d5150c18e/myne-0.3.0-cp314-cp314t-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c401d7c0f0656aadc365964e00d171518a6148afca2930b1e5029dce17aa5d7",
                "md5": "3632c46290660f4677009179fe8f5327",
                "sha256": "0cb67f4fb537b528c59bac1164848bf32a3f268e5aec67ce81bdbf69dfe28920"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3632c46290660f4677009179fe8f5327",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1010804,
            "upload_time": "2025-08-24T19:48:51",
            "upload_time_iso_8601": "2025-08-24T19:48:51.348327Z",
            "url": "https://files.pythonhosted.org/packages/1c/40/1d7c0f0656aadc365964e00d171518a6148afca2930b1e5029dce17aa5d7/myne-0.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b43e7a96ca87beba035883fb79914eadd27d064611aa7c7ec383c8eb5945926a",
                "md5": "47491fead8aafd6e4349718ac4bc88fe",
                "sha256": "ed68be3964be2f9651fa4f42bb88a645271060d1025731e2423bf8f97187dcd2"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47491fead8aafd6e4349718ac4bc88fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1071966,
            "upload_time": "2025-08-24T19:48:53",
            "upload_time_iso_8601": "2025-08-24T19:48:53.943883Z",
            "url": "https://files.pythonhosted.org/packages/b4/3e/7a96ca87beba035883fb79914eadd27d064611aa7c7ec383c8eb5945926a/myne-0.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ac4f93b5c0a93000f7335ed4c22ae0eca10db94f2643be5748ffd9e528b9125",
                "md5": "913101be22b118462c5dc8f79dc38a7f",
                "sha256": "f4da55c53368051ac179f971f922333992625f5e1b51cd496b83428eb25a5bde"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "913101be22b118462c5dc8f79dc38a7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1073267,
            "upload_time": "2025-08-24T19:48:55",
            "upload_time_iso_8601": "2025-08-24T19:48:55.246304Z",
            "url": "https://files.pythonhosted.org/packages/0a/c4/f93b5c0a93000f7335ed4c22ae0eca10db94f2643be5748ffd9e528b9125/myne-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2fb12e1566ad0b231f12fbbb887efdc3875a83508c43c9ae5bc644ab0001f63",
                "md5": "f172e420d2e838c2ceb60a9d48089aa6",
                "sha256": "7215b44e579ae3ef785f1b06f32f43309759b6ee552923f266fb2358447487b6"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f172e420d2e838c2ceb60a9d48089aa6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1149000,
            "upload_time": "2025-08-24T19:48:56",
            "upload_time_iso_8601": "2025-08-24T19:48:56.517016Z",
            "url": "https://files.pythonhosted.org/packages/e2/fb/12e1566ad0b231f12fbbb887efdc3875a83508c43c9ae5bc644ab0001f63/myne-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bf7ac080bb60649c8af30f0823008340122d68ea9a210ae387466d3f7bb0bba",
                "md5": "23c075c2edfd39c5283d981cd85976da",
                "sha256": "a97dcd0615f0b9204912798a1799d7b507f894f20f1b9d3e4e5bd519daa7c2f9"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "23c075c2edfd39c5283d981cd85976da",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 922190,
            "upload_time": "2025-08-24T19:48:57",
            "upload_time_iso_8601": "2025-08-24T19:48:57.814115Z",
            "url": "https://files.pythonhosted.org/packages/7b/f7/ac080bb60649c8af30f0823008340122d68ea9a210ae387466d3f7bb0bba/myne-0.3.0-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "61a1aa18539ba138fdcac927c4ca97429ad50813a88c59c55a9d776bea23aa78",
                "md5": "dbbf4b5e07eeb64dbfc59c4ed120b229",
                "sha256": "ca5dca3c0cfc5ec140fab462fe8d352c81c0db4fdc1e99e0223ea48527a056fa"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "dbbf4b5e07eeb64dbfc59c4ed120b229",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 843523,
            "upload_time": "2025-08-24T19:48:59",
            "upload_time_iso_8601": "2025-08-24T19:48:59.149384Z",
            "url": "https://files.pythonhosted.org/packages/61/a1/aa18539ba138fdcac927c4ca97429ad50813a88c59c55a9d776bea23aa78/myne-0.3.0-cp314-cp314t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "845b421d0951434097c9961f45da924763bcb133d6f7c691636bf978cc5e9e51",
                "md5": "71bb592058697bc8be4996d19925268e",
                "sha256": "b52949442d46470919eb1c4eeebd9d5f19e264a794ec5fd399ad76ed8e33c492"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "71bb592058697bc8be4996d19925268e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 922689,
            "upload_time": "2025-08-24T19:48:45",
            "upload_time_iso_8601": "2025-08-24T19:48:45.716267Z",
            "url": "https://files.pythonhosted.org/packages/84/5b/421d0951434097c9961f45da924763bcb133d6f7c691636bf978cc5e9e51/myne-0.3.0-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b015b17284863c61bef090e03e42b3ebbb638f6ff43ae8d1aa18cc1df13e88f",
                "md5": "79c7fd218947d04e6d01a846ba6c4193",
                "sha256": "b23302b3a6893e7b49e402f4e8fe49841b03c4013857df0464fbe39bc34bc360"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp314-cp314-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "79c7fd218947d04e6d01a846ba6c4193",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 844764,
            "upload_time": "2025-08-24T19:48:46",
            "upload_time_iso_8601": "2025-08-24T19:48:46.982937Z",
            "url": "https://files.pythonhosted.org/packages/4b/01/5b17284863c61bef090e03e42b3ebbb638f6ff43ae8d1aa18cc1df13e88f/myne-0.3.0-cp314-cp314-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1e010fdea1c2d842858f1a3837bbce4220919b30862f7c2710b73979ecbfe43",
                "md5": "dd11dcfb072d1b6bc489af6724bdf352",
                "sha256": "99fe478c5679e1c7340f55e22a4dfc7d1e328f50e1519a89c09e9ee83a44ebc9"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd11dcfb072d1b6bc489af6724bdf352",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 942857,
            "upload_time": "2025-08-24T19:49:00",
            "upload_time_iso_8601": "2025-08-24T19:49:00.459692Z",
            "url": "https://files.pythonhosted.org/packages/a1/e0/10fdea1c2d842858f1a3837bbce4220919b30862f7c2710b73979ecbfe43/myne-0.3.0-cp39-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e7ca46c8cc0a9f403e7b64bf38179fd5c64f56736e9db4c6333464c22b26fae",
                "md5": "d37fc0dbfad5219aea1c35f11261831a",
                "sha256": "81307415b721e013fcaa26567861b34b55952891390be05db06695599080c10c"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-abi3-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d37fc0dbfad5219aea1c35f11261831a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1017623,
            "upload_time": "2025-08-24T19:49:02",
            "upload_time_iso_8601": "2025-08-24T19:49:02.212583Z",
            "url": "https://files.pythonhosted.org/packages/1e/7c/a46c8cc0a9f403e7b64bf38179fd5c64f56736e9db4c6333464c22b26fae/myne-0.3.0-cp39-abi3-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "672b05abb6a2d4eadebc7f45c05508d127f2b7c2b325f16b181f90253f1a097e",
                "md5": "390153392cb77a006c7bdb3ec08ad22e",
                "sha256": "8c6430b3099c06e4f7b0e0aaaf8062ce8bb57fb28d5ddb37a861c4736be66b20"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-abi3-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "390153392cb77a006c7bdb3ec08ad22e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1016638,
            "upload_time": "2025-08-24T19:49:03",
            "upload_time_iso_8601": "2025-08-24T19:49:03.413368Z",
            "url": "https://files.pythonhosted.org/packages/67/2b/05abb6a2d4eadebc7f45c05508d127f2b7c2b325f16b181f90253f1a097e/myne-0.3.0-cp39-abi3-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a22c64ba6002ed88df572ba7f0540b45d1c5e5d5c0fa0b0a9c38f3c478d237bb",
                "md5": "975d69e163ce8fa97f4c747d7add9029",
                "sha256": "9bc656c9deb331256f79f21224a16795b2b410645a2b34ac966ca01b5c945393"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-abi3-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "975d69e163ce8fa97f4c747d7add9029",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1080335,
            "upload_time": "2025-08-24T19:49:05",
            "upload_time_iso_8601": "2025-08-24T19:49:05.035961Z",
            "url": "https://files.pythonhosted.org/packages/a2/2c/64ba6002ed88df572ba7f0540b45d1c5e5d5c0fa0b0a9c38f3c478d237bb/myne-0.3.0-cp39-abi3-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1fb8f307db39389544fa8d61349d35df8f2024b3cd70189b028dc8140b3fed5",
                "md5": "039c19ee02e4d4f154709d2d3ac7bf9a",
                "sha256": "9c88b27ece321216603a9a383144237a3dfba9a8c39f2d76ed0727e6c5ccd817"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "039c19ee02e4d4f154709d2d3ac7bf9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1079048,
            "upload_time": "2025-08-24T19:49:06",
            "upload_time_iso_8601": "2025-08-24T19:49:06.347268Z",
            "url": "https://files.pythonhosted.org/packages/d1/fb/8f307db39389544fa8d61349d35df8f2024b3cd70189b028dc8140b3fed5/myne-0.3.0-cp39-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2dfc0a083929bcadfa234c6b7ca9746682940a6329c2ac9a9a947dc889e15c1",
                "md5": "6255cfba22346d390cd1449bc179f508",
                "sha256": "ff2554ca402019953fc0949e5e2160d3c1f41b1d5a8efd2638bd977b034ff4df"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6255cfba22346d390cd1449bc179f508",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1157753,
            "upload_time": "2025-08-24T19:49:07",
            "upload_time_iso_8601": "2025-08-24T19:49:07.907840Z",
            "url": "https://files.pythonhosted.org/packages/a2/df/c0a083929bcadfa234c6b7ca9746682940a6329c2ac9a9a947dc889e15c1/myne-0.3.0-cp39-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c0674f0ecd2ff489c2b34d6b4f80ccf246177eb5fb5e6cd336f84231ebc8938",
                "md5": "a5c996deb86d6b2aa1fef47cad7f3a93",
                "sha256": "b2578b3bf4a4c1784c0cc134fde42646eb033460eda2ab0359d24b8510ec7b7a"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a5c996deb86d6b2aa1fef47cad7f3a93",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 925937,
            "upload_time": "2025-08-24T19:49:09",
            "upload_time_iso_8601": "2025-08-24T19:49:09.184904Z",
            "url": "https://files.pythonhosted.org/packages/5c/06/74f0ecd2ff489c2b34d6b4f80ccf246177eb5fb5e6cd336f84231ebc8938/myne-0.3.0-cp39-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a98d195c3de40bbf04f5de49b2c3e72f05264f06c7eee9be7817ff1d135b854",
                "md5": "6572ab1556c7a6ece6d7e8a214b665ff",
                "sha256": "5816d933c532b18c0ed29b26a3f37c129fdf8639d39e2780998565f87fb87a8b"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-abi3-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "6572ab1556c7a6ece6d7e8a214b665ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 848678,
            "upload_time": "2025-08-24T19:49:10",
            "upload_time_iso_8601": "2025-08-24T19:49:10.350741Z",
            "url": "https://files.pythonhosted.org/packages/5a/98/d195c3de40bbf04f5de49b2c3e72f05264f06c7eee9be7817ff1d135b854/myne-0.3.0-cp39-abi3-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c673a70ca6c636097b1cb1aef92d19c843c10d1e4328bcd643d6a8a14ae6b48d",
                "md5": "f97dae3f973df65e248a37154b463ad5",
                "sha256": "30c47ab37059d77274042b6076fdf7fdb8707d5acdf97f2ec70df257d8e68ef0"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f97dae3f973df65e248a37154b463ad5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 940431,
            "upload_time": "2025-08-24T19:49:11",
            "upload_time_iso_8601": "2025-08-24T19:49:11.629017Z",
            "url": "https://files.pythonhosted.org/packages/c6/73/a70ca6c636097b1cb1aef92d19c843c10d1e4328bcd643d6a8a14ae6b48d/myne-0.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73f99fad09a73b78e852a7e1bc2b7ad213e7624897e4e676fd0db1cac5e59f2f",
                "md5": "fd5730c7e1f6b2556f6fad2f0529db09",
                "sha256": "02cfe5560bc10f1e70e6cb1473eea04fd53b92dc3dd70dbf958449ccfde87aa9"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd5730c7e1f6b2556f6fad2f0529db09",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1015427,
            "upload_time": "2025-08-24T19:49:13",
            "upload_time_iso_8601": "2025-08-24T19:49:13.242910Z",
            "url": "https://files.pythonhosted.org/packages/73/f9/9fad09a73b78e852a7e1bc2b7ad213e7624897e4e676fd0db1cac5e59f2f/myne-0.3.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a367a7df90ab698516be01c14e77813473ec7fe4744f4c57dcb7634e6addb68c",
                "md5": "5966272117e72adc1251b7b11b2d4138",
                "sha256": "1dd36742e479b7070c9a91a09d7b0454a32b582a623cf5d9bffa2dbb62e2ba0d"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5966272117e72adc1251b7b11b2d4138",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1014136,
            "upload_time": "2025-08-24T19:49:14",
            "upload_time_iso_8601": "2025-08-24T19:49:14.491511Z",
            "url": "https://files.pythonhosted.org/packages/a3/67/a7df90ab698516be01c14e77813473ec7fe4744f4c57dcb7634e6addb68c/myne-0.3.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e946302798efcecbe319814bfd7910f463fc5a18359fb6d62bc0629025b73260",
                "md5": "062d239fd57e7affbc9b9e9894da4ee0",
                "sha256": "fd0db84534244da0ba3f1a8ffd170ab0e3ba334dfd5357b962827d99557555b3"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "062d239fd57e7affbc9b9e9894da4ee0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1076461,
            "upload_time": "2025-08-24T19:49:15",
            "upload_time_iso_8601": "2025-08-24T19:49:15.697113Z",
            "url": "https://files.pythonhosted.org/packages/e9/46/302798efcecbe319814bfd7910f463fc5a18359fb6d62bc0629025b73260/myne-0.3.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "817e50008901de645d944718f520d4781feefc7398cdf678eb8fcb2607b09877",
                "md5": "bf3fc4e68c8f90795b2882e9e10986f6",
                "sha256": "6637641aaa523abad4af7e7fd8f4d04c5a6e829a8abf44480fac79377912bb1e"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bf3fc4e68c8f90795b2882e9e10986f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1076797,
            "upload_time": "2025-08-24T19:49:17",
            "upload_time_iso_8601": "2025-08-24T19:49:17.063584Z",
            "url": "https://files.pythonhosted.org/packages/81/7e/50008901de645d944718f520d4781feefc7398cdf678eb8fcb2607b09877/myne-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5c2bc4f70a14cd17a6319cb789efe2865030b403e11fe047d1faad801aaff54",
                "md5": "697b992b7554e8b7e03d51c0a5084727",
                "sha256": "eb3be59d625c5207687b9ab840b659bba7e149d626d517a0e1435f3adafdf5eb"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "697b992b7554e8b7e03d51c0a5084727",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1153541,
            "upload_time": "2025-08-24T19:49:18",
            "upload_time_iso_8601": "2025-08-24T19:49:18.331211Z",
            "url": "https://files.pythonhosted.org/packages/c5/c2/bc4f70a14cd17a6319cb789efe2865030b403e11fe047d1faad801aaff54/myne-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3b49e8f0d1115353d8f08547fa29eb6d60ba1454d69f8ef702dd91bab865e09",
                "md5": "0e0201a0c2fd7bf5a61e9fdb2d773c81",
                "sha256": "9977802c6991e8b4ae1c4c52e5836e70d4de48b18ee47e133a0bfc576acab6b5"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0e0201a0c2fd7bf5a61e9fdb2d773c81",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 922768,
            "upload_time": "2025-08-24T19:49:19",
            "upload_time_iso_8601": "2025-08-24T19:49:19.519705Z",
            "url": "https://files.pythonhosted.org/packages/f3/b4/9e8f0d1115353d8f08547fa29eb6d60ba1454d69f8ef702dd91bab865e09/myne-0.3.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f23b4286f99a402c4ca08eb7139d14d35e6948a08509da0e9fa6d64fe7eede73",
                "md5": "32bccde3c51c7b940804c0dc1618b99e",
                "sha256": "0bef95255de4a04d77636e2648479c19e0d62d828935828bdb12bc19cbdda3d2"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "32bccde3c51c7b940804c0dc1618b99e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 846050,
            "upload_time": "2025-08-24T19:49:20",
            "upload_time_iso_8601": "2025-08-24T19:49:20.756366Z",
            "url": "https://files.pythonhosted.org/packages/f2/3b/4286f99a402c4ca08eb7139d14d35e6948a08509da0e9fa6d64fe7eede73/myne-0.3.0-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "353dff5c3f3286eb302ec2fac1475661eccd572d722b5afe24833865f72109db",
                "md5": "482a92d77507a837d90ba9089e9d9340",
                "sha256": "89403c3b01b3e50ae6f41c8ff93491ce9565fc77cd00fdab90952de7b2170724"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "482a92d77507a837d90ba9089e9d9340",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 940346,
            "upload_time": "2025-08-24T19:49:21",
            "upload_time_iso_8601": "2025-08-24T19:49:21.994385Z",
            "url": "https://files.pythonhosted.org/packages/35/3d/ff5c3f3286eb302ec2fac1475661eccd572d722b5afe24833865f72109db/myne-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c49870d8108e6197fcb1aff4cc147448dbf117169fa0b71b4bcc566e8b3a334",
                "md5": "30dba8929fba655a39f58b758f91aacb",
                "sha256": "438fd9986849b425c69fbf1514aa5bb5a5cd925ab4ddec11205798111615d4b5"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-pp310-pypy310_pp73-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30dba8929fba655a39f58b758f91aacb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1015642,
            "upload_time": "2025-08-24T19:49:23",
            "upload_time_iso_8601": "2025-08-24T19:49:23.270079Z",
            "url": "https://files.pythonhosted.org/packages/1c/49/870d8108e6197fcb1aff4cc147448dbf117169fa0b71b4bcc566e8b3a334/myne-0.3.0-pp310-pypy310_pp73-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "822e3093608c9c44c19ad2c42f47fa3524b2c66c3d4c197c009ec3a34c2fc807",
                "md5": "e7617ec429d9fc49cb7bcd1e95bd819d",
                "sha256": "bb89e7b0bffc0142d68fed9dd26a803baa3adda2caff875e4a4fb3bc90e25249"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e7617ec429d9fc49cb7bcd1e95bd819d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1014795,
            "upload_time": "2025-08-24T19:49:24",
            "upload_time_iso_8601": "2025-08-24T19:49:24.514424Z",
            "url": "https://files.pythonhosted.org/packages/82/2e/3093608c9c44c19ad2c42f47fa3524b2c66c3d4c197c009ec3a34c2fc807/myne-0.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88ddf7461d3bf302389978acb1933dfa71a83d336845bd8081e5a29136d0c6b4",
                "md5": "548f7f1a0968adb6028d5d382f4d7f52",
                "sha256": "9eb7921f4717a44332941c8311b68d7ecd4d40eadd97784b176f8b45ba563424"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "548f7f1a0968adb6028d5d382f4d7f52",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1077103,
            "upload_time": "2025-08-24T19:49:25",
            "upload_time_iso_8601": "2025-08-24T19:49:25.781372Z",
            "url": "https://files.pythonhosted.org/packages/88/dd/f7461d3bf302389978acb1933dfa71a83d336845bd8081e5a29136d0c6b4/myne-0.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3d0da82d4c10cc742df9bff721581f3eef3a38a3306035c24ecf184535b3461",
                "md5": "260fb0a1dde5316c6541bf2f733202fb",
                "sha256": "b4b0cf9746095f708ff612cf8a1b02a5e41e2087966a4a60086b91af0975b5b5"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "260fb0a1dde5316c6541bf2f733202fb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 922700,
            "upload_time": "2025-08-24T19:49:27",
            "upload_time_iso_8601": "2025-08-24T19:49:27.002935Z",
            "url": "https://files.pythonhosted.org/packages/a3/d0/da82d4c10cc742df9bff721581f3eef3a38a3306035c24ecf184535b3461/myne-0.3.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6361ea968a4f96e82d8f001d8de55b6643cf8a4ab1a6673db2a524ba7a7b4ba4",
                "md5": "288f74cfd8fdcf84cc10c0be483d78e7",
                "sha256": "f3d6399e3530ad7ab8e6199f81ec1fcd2208b3c9376e6f688db2a6aa7eb1b6f8"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "288f74cfd8fdcf84cc10c0be483d78e7",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 940107,
            "upload_time": "2025-08-24T19:49:28",
            "upload_time_iso_8601": "2025-08-24T19:49:28.382063Z",
            "url": "https://files.pythonhosted.org/packages/63/61/ea968a4f96e82d8f001d8de55b6643cf8a4ab1a6673db2a524ba7a7b4ba4/myne-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9dbe8ca20baee94014bbd5aa6e492eab2ed5c351b350913b5c7ef43b13bce083",
                "md5": "5d8e6d8bddb5eb2636f532f366e4e1b2",
                "sha256": "2775668da343b69baa3d09c95e186cac1936de760020e92aabb8acd1ced8343a"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d8e6d8bddb5eb2636f532f366e4e1b2",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 1015341,
            "upload_time": "2025-08-24T19:49:29",
            "upload_time_iso_8601": "2025-08-24T19:49:29.636732Z",
            "url": "https://files.pythonhosted.org/packages/9d/be/8ca20baee94014bbd5aa6e492eab2ed5c351b350913b5c7ef43b13bce083/myne-0.3.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d239a019213a84576128a62290b230c3d9d3159bdaa8df9915112c5d149f626a",
                "md5": "0f4b47f98ceb641ed966745ce79b651e",
                "sha256": "4ff6079719fdbb1902a3a5698c3fea219e3f721488bad54596a075ea0e874534"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0f4b47f98ceb641ed966745ce79b651e",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 1014702,
            "upload_time": "2025-08-24T19:49:30",
            "upload_time_iso_8601": "2025-08-24T19:49:30.902314Z",
            "url": "https://files.pythonhosted.org/packages/d2/39/a019213a84576128a62290b230c3d9d3159bdaa8df9915112c5d149f626a/myne-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "735586dea39761290129a87a138e3276a07c38d7b033f8e33703c86c41f45fd8",
                "md5": "73676700571ca78ff00f14e5d0c1261e",
                "sha256": "59604e1d25f4ee98c6a95a7348b5b41e22a3e9203d443065708f838e352a0e57"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73676700571ca78ff00f14e5d0c1261e",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 1076927,
            "upload_time": "2025-08-24T19:49:32",
            "upload_time_iso_8601": "2025-08-24T19:49:32.502044Z",
            "url": "https://files.pythonhosted.org/packages/73/55/86dea39761290129a87a138e3276a07c38d7b033f8e33703c86c41f45fd8/myne-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9101e7b257b94fae676c8f735e59d655bbe7b9275cf4bd57d7dfb294deacdcd",
                "md5": "52b82e5b8eae86b8f96c910ad188be6d",
                "sha256": "bed31fdbc43111932c8de8ab49c85e4728a89f5bd1712c44be5bde146d84e125"
            },
            "downloads": -1,
            "filename": "myne-0.3.0-pp311-pypy311_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "52b82e5b8eae86b8f96c910ad188be6d",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 923055,
            "upload_time": "2025-08-24T19:49:33",
            "upload_time_iso_8601": "2025-08-24T19:49:33.761033Z",
            "url": "https://files.pythonhosted.org/packages/e9/10/1e7b257b94fae676c8f735e59d655bbe7b9275cf4bd57d7dfb294deacdcd/myne-0.3.0-pp311-pypy311_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcd03d81b1af092105e0befb10a11290f780d0a983de78f27e82ef51c8bde756",
                "md5": "646e2c0176e7201f5cc419077652d3e6",
                "sha256": "383eb368ae9b0cfd04d086495e4431252f9f5aa94c7003531b5af8fa92e52505"
            },
            "downloads": -1,
            "filename": "myne-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "646e2c0176e7201f5cc419077652d3e6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 81358,
            "upload_time": "2025-08-24T19:49:34",
            "upload_time_iso_8601": "2025-08-24T19:49:34.985061Z",
            "url": "https://files.pythonhosted.org/packages/bc/d0/3d81b1af092105e0befb10a11290f780d0a983de78f27e82ef51c8bde756/myne-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-24 19:49:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Ravencentric",
    "github_project": "myne",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "myne"
}
        
Elapsed time: 1.27922s