pyromark


Namepyromark JSON
Version 0.9.6 PyPI version JSON
download
home_pageNone
SummaryBlazingly fast Markdown parser
upload_time2025-10-20 13:09:59
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords converter html
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pyromark

[![CI](https://github.com/monosans/pyromark/actions/workflows/ci.yml/badge.svg)](https://github.com/monosans/pyromark/actions/workflows/ci.yml)
[![Downloads](https://static.pepy.tech/badge/pyromark)](https://pepy.tech/project/pyromark)

pyromark (stands for Python Rust Optimized Markdown) is a blazingly fast CommonMark-compliant Markdown parser for Python.

Uses [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) Rust crate under the hood.

## Installation

```bash
pip install -U pyromark
```

## Documentation

<https://pyromark.readthedocs.io>

## Basic examples

See documentation for more comprehensive examples.

### Convert Markdown to HTML

```python
import pyromark

html = pyromark.html("# Hello world")
assert html == "<h1>Hello world</h1>\n"
```

### Iterating over Markdown elements

```python
import pyromark

for event in pyromark.events("# Hello world"):
    # All event types are fully type annotated
    # so you will get static type checking
    # and Tab completions in your IDE!
    match event:
        case {"Start": {"Heading": {"level": heading_level}}}:
            print(f"Heading with {heading_level} level started")
        case {"Text": text}:
            print(f"Got {text!r} text")
        case {"End": {"Heading": heading_level}}:
            print(f"Heading with {heading_level} level ended")
        case other_event:
            print(f"Got {other_event!r}")
```

## Performance

160x faster than [markdown2](https://pypi.org/project/markdown2/),
130x faster than [Markdown](https://pypi.org/project/Markdown/),
119x faster than [mistletoe](https://pypi.org/project/markdown-it-py/),
103x faster than [markdown-it-py](https://pypi.org/project/markdown-it-py/),
75x faster than [mistune](https://pypi.org/project/mistune/).

If you use threading, the difference with other libraries will be even more enormous, since pyromark releases the [GIL](https://docs.python.org/3/glossary.html#term-global-interpreter-lock).

See [benchmark](https://pyromark.readthedocs.io/en/latest/performance/).

## License

[MIT](https://github.com/monosans/pyromark/blob/main/LICENSE)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyromark",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "converter, html",
    "author": null,
    "author_email": "monosans <hsyqixco@protonmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/4b/d7/87c7bfe22015b4864b41846f115c2a1eb2a8036007c7de15ba2e048d3eea/pyromark-0.9.6.tar.gz",
    "platform": null,
    "description": "# pyromark\n\n[![CI](https://github.com/monosans/pyromark/actions/workflows/ci.yml/badge.svg)](https://github.com/monosans/pyromark/actions/workflows/ci.yml)\n[![Downloads](https://static.pepy.tech/badge/pyromark)](https://pepy.tech/project/pyromark)\n\npyromark (stands for Python Rust Optimized Markdown) is a blazingly fast CommonMark-compliant Markdown parser for Python.\n\nUses [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) Rust crate under the hood.\n\n## Installation\n\n```bash\npip install -U pyromark\n```\n\n## Documentation\n\n<https://pyromark.readthedocs.io>\n\n## Basic examples\n\nSee documentation for more comprehensive examples.\n\n### Convert Markdown to HTML\n\n```python\nimport pyromark\n\nhtml = pyromark.html(\"# Hello world\")\nassert html == \"<h1>Hello world</h1>\\n\"\n```\n\n### Iterating over Markdown elements\n\n```python\nimport pyromark\n\nfor event in pyromark.events(\"# Hello world\"):\n    # All event types are fully type annotated\n    # so you will get static type checking\n    # and Tab completions in your IDE!\n    match event:\n        case {\"Start\": {\"Heading\": {\"level\": heading_level}}}:\n            print(f\"Heading with {heading_level} level started\")\n        case {\"Text\": text}:\n            print(f\"Got {text!r} text\")\n        case {\"End\": {\"Heading\": heading_level}}:\n            print(f\"Heading with {heading_level} level ended\")\n        case other_event:\n            print(f\"Got {other_event!r}\")\n```\n\n## Performance\n\n160x faster than [markdown2](https://pypi.org/project/markdown2/),\n130x faster than [Markdown](https://pypi.org/project/Markdown/),\n119x faster than [mistletoe](https://pypi.org/project/markdown-it-py/),\n103x faster than [markdown-it-py](https://pypi.org/project/markdown-it-py/),\n75x faster than [mistune](https://pypi.org/project/mistune/).\n\nIf you use threading, the difference with other libraries will be even more enormous, since pyromark releases the [GIL](https://docs.python.org/3/glossary.html#term-global-interpreter-lock).\n\nSee [benchmark](https://pyromark.readthedocs.io/en/latest/performance/).\n\n## License\n\n[MIT](https://github.com/monosans/pyromark/blob/main/LICENSE)\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Blazingly fast Markdown parser",
    "version": "0.9.6",
    "project_urls": {
        "documentation": "https://pyromark.readthedocs.io",
        "repository": "https://github.com/monosans/pyromark"
    },
    "split_keywords": [
        "converter",
        " html"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b83edb692a75b070960665f17cbe9f5c0ac206d420577d602f5bbfdf061a665",
                "md5": "9e07a1711ce13d922c22b57d081618bc",
                "sha256": "3d4a386c0e843d1d9a598f53073249c14b249b3347ad824584a538da859ff6be"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e07a1711ce13d922c22b57d081618bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 343823,
            "upload_time": "2025-10-20T13:10:00",
            "upload_time_iso_8601": "2025-10-20T13:10:00.215615Z",
            "url": "https://files.pythonhosted.org/packages/4b/83/edb692a75b070960665f17cbe9f5c0ac206d420577d602f5bbfdf061a665/pyromark-0.9.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d829529ae7d22a68fe17cd36bcd497c48d8abbc001c3c686a2e3a54e6afef56d",
                "md5": "cebc3f4097e12619f9437d9c739304d0",
                "sha256": "2c87772ab8237c4488e80a288b00e29cc824f4d0b994cc3ad3abb7699f7ec700"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cebc3f4097e12619f9437d9c739304d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 322028,
            "upload_time": "2025-10-20T13:06:01",
            "upload_time_iso_8601": "2025-10-20T13:06:01.681802Z",
            "url": "https://files.pythonhosted.org/packages/d8/29/529ae7d22a68fe17cd36bcd497c48d8abbc001c3c686a2e3a54e6afef56d/pyromark-0.9.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fff2ea9085869f0cdb16d447bf26cf87b003cae386eb297853d35ae49fde1819",
                "md5": "e8f76ec150dac9dafa6a0d38e8bcae1c",
                "sha256": "4dbaca7b95f313aee1fd8913ccdc58aba0ec41a9eedc65ba31d7d3b266bf0d38"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e8f76ec150dac9dafa6a0d38e8bcae1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 355588,
            "upload_time": "2025-10-20T13:06:22",
            "upload_time_iso_8601": "2025-10-20T13:06:22.006193Z",
            "url": "https://files.pythonhosted.org/packages/ff/f2/ea9085869f0cdb16d447bf26cf87b003cae386eb297853d35ae49fde1819/pyromark-0.9.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89bd543e3642fd045c6b71f5a5b3b76c61e181f1d2a98d31149f30e40e98eba5",
                "md5": "1ccf2bf13bd672c42baf610072e89d3f",
                "sha256": "b55a189fd611013a564ca76a6b6bfd509706305683509bb8cbf4a00964079360"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1ccf2bf13bd672c42baf610072e89d3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 360449,
            "upload_time": "2025-10-20T13:06:55",
            "upload_time_iso_8601": "2025-10-20T13:06:55.779534Z",
            "url": "https://files.pythonhosted.org/packages/89/bd/543e3642fd045c6b71f5a5b3b76c61e181f1d2a98d31149f30e40e98eba5/pyromark-0.9.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2f004de3af627234d615fdb20ffb4caae90287c05f840260db33b95cdfb6240",
                "md5": "29a1808aaeb7dd3c3019e71525cccce6",
                "sha256": "494cbabdc1c93ea67beb815d575123385ed04657d3680970c1c9c7c8351efe61"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "29a1808aaeb7dd3c3019e71525cccce6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 384515,
            "upload_time": "2025-10-20T13:07:43",
            "upload_time_iso_8601": "2025-10-20T13:07:43.924916Z",
            "url": "https://files.pythonhosted.org/packages/a2/f0/04de3af627234d615fdb20ffb4caae90287c05f840260db33b95cdfb6240/pyromark-0.9.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87d1d8b8a6eb483f6d9eb8c155e5ff3d0c687f3f7f5a2e980a11cb33c75220f7",
                "md5": "b816181fdd5bff84f7d093d9d913e6fd",
                "sha256": "c41b49bb2f13f17a77aed0726419e7f5c9af9e2588a9ddaef380eaf7653373e9"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b816181fdd5bff84f7d093d9d913e6fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 407926,
            "upload_time": "2025-10-20T13:08:32",
            "upload_time_iso_8601": "2025-10-20T13:08:32.475269Z",
            "url": "https://files.pythonhosted.org/packages/87/d1/d8b8a6eb483f6d9eb8c155e5ff3d0c687f3f7f5a2e980a11cb33c75220f7/pyromark-0.9.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad61e0a33e41500274afaf7b68aa2e8d7f3a9e7d148081b83ae3f6d59fbaf3d7",
                "md5": "3b34944dd5de28afe186a60cd7e5a648",
                "sha256": "d165726123ced5e9d23254521ac7c7bc51f261b96afeb8dae906332a8307248c"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "3b34944dd5de28afe186a60cd7e5a648",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 416078,
            "upload_time": "2025-10-20T13:08:20",
            "upload_time_iso_8601": "2025-10-20T13:08:20.024945Z",
            "url": "https://files.pythonhosted.org/packages/ad/61/e0a33e41500274afaf7b68aa2e8d7f3a9e7d148081b83ae3f6d59fbaf3d7/pyromark-0.9.6-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d185169128694e06f4d0e5c5674711728d4693bfb00bad96d4459169e7635db1",
                "md5": "bed3df94652107bdf8d9653c83b5ad69",
                "sha256": "3f0c41e73b359453f9c1b1d554dcae5f5d1e549d91862b0a696f5d261088062a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bed3df94652107bdf8d9653c83b5ad69",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 457662,
            "upload_time": "2025-10-20T13:09:30",
            "upload_time_iso_8601": "2025-10-20T13:09:30.449694Z",
            "url": "https://files.pythonhosted.org/packages/d1/85/169128694e06f4d0e5c5674711728d4693bfb00bad96d4459169e7635db1/pyromark-0.9.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f1b0bc68e1bf786ba0189df65a6f965a49323d9136dfda9aaaa486f1ec80415",
                "md5": "bbc3c9e0978169c942e41bb134cb20f8",
                "sha256": "46e88b54649b9c63102ef755b37312b3b1e19e020177036b5b1e077edb20f6b6"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bbc3c9e0978169c942e41bb134cb20f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 368418,
            "upload_time": "2025-10-20T13:10:27",
            "upload_time_iso_8601": "2025-10-20T13:10:27.049689Z",
            "url": "https://files.pythonhosted.org/packages/9f/1b/0bc68e1bf786ba0189df65a6f965a49323d9136dfda9aaaa486f1ec80415/pyromark-0.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9879de148ebe3babbc90ca920c35b100bf604993bd713d4eece0d65b4585870",
                "md5": "ba37704b3ceded6f5bb99804e2ee8392",
                "sha256": "d75ba7a84290e69b2817ef18e4c635966b7d31bbf0983d3abdcde9f560117eed"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ba37704b3ceded6f5bb99804e2ee8392",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 356410,
            "upload_time": "2025-10-20T13:06:33",
            "upload_time_iso_8601": "2025-10-20T13:06:33.661400Z",
            "url": "https://files.pythonhosted.org/packages/c9/87/9de148ebe3babbc90ca920c35b100bf604993bd713d4eece0d65b4585870/pyromark-0.9.6-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0085a528f772eae7411d3be07b3d9ad87f3a0cfad01256176778abeaf3115285",
                "md5": "51a83beccbba1db9f470a725548e210e",
                "sha256": "73121789f69f97ce77eed35f7ce4ec9cd9b04f1b656096aa228f6765b89d20d3"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "51a83beccbba1db9f470a725548e210e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 360367,
            "upload_time": "2025-10-20T13:07:09",
            "upload_time_iso_8601": "2025-10-20T13:07:09.047612Z",
            "url": "https://files.pythonhosted.org/packages/00/85/a528f772eae7411d3be07b3d9ad87f3a0cfad01256176778abeaf3115285/pyromark-0.9.6-cp310-cp310-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be0734a073e12e21d516e7634a25611724405acbc0c7d8c2c8c89ca3e47d9ea0",
                "md5": "f33c220b9c249e5dbbc63245e0ee4dc0",
                "sha256": "a4f741aba524030301050ec15ae88f598666b3f92e365d840625286367484e91"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_28_i686.whl",
            "has_sig": false,
            "md5_digest": "f33c220b9c249e5dbbc63245e0ee4dc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 384863,
            "upload_time": "2025-10-20T13:07:55",
            "upload_time_iso_8601": "2025-10-20T13:07:55.954565Z",
            "url": "https://files.pythonhosted.org/packages/be/07/34a073e12e21d516e7634a25611724405acbc0c7d8c2c8c89ca3e47d9ea0/pyromark-0.9.6-cp310-cp310-manylinux_2_28_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06e81e989f1e7c94f337e4ea4a98f62e33ce3dad3f52f7541d4e861def6ee9b6",
                "md5": "f731dbf784dd9370be3753006394cd12",
                "sha256": "f745a407e8da396e51a5243593bf26ab35757881a2725cd52e0bcc135d7992a1"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f731dbf784dd9370be3753006394cd12",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 407986,
            "upload_time": "2025-10-20T13:08:48",
            "upload_time_iso_8601": "2025-10-20T13:08:48.779703Z",
            "url": "https://files.pythonhosted.org/packages/06/e8/1e989f1e7c94f337e4ea4a98f62e33ce3dad3f52f7541d4e861def6ee9b6/pyromark-0.9.6-cp310-cp310-manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d63cc6efead8bf4eb88e0401fee3245b1b40d01c97b8b0dde4b9b54d4be9b41c",
                "md5": "eee5e88d0e6a57e85e96ec36ae88f856",
                "sha256": "2d049dbef77aadc51c266b7f18dd10c967b633768db6ba31464e400442aeab3b"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "eee5e88d0e6a57e85e96ec36ae88f856",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 456973,
            "upload_time": "2025-10-20T13:09:45",
            "upload_time_iso_8601": "2025-10-20T13:09:45.099532Z",
            "url": "https://files.pythonhosted.org/packages/d6/3c/c6efead8bf4eb88e0401fee3245b1b40d01c97b8b0dde4b9b54d4be9b41c/pyromark-0.9.6-cp310-cp310-manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "107a320d61c48e74394ae555c288748ba6727710e689d6c2f9ffe8ae38255ba3",
                "md5": "c4cb6229b7b543b6892e6ef97f5801fe",
                "sha256": "4ce84eea5b06691e75aab00b3d101f4008d24564245135d518446ee54f233309"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c4cb6229b7b543b6892e6ef97f5801fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 368771,
            "upload_time": "2025-10-20T13:10:41",
            "upload_time_iso_8601": "2025-10-20T13:10:41.626780Z",
            "url": "https://files.pythonhosted.org/packages/10/7a/320d61c48e74394ae555c288748ba6727710e689d6c2f9ffe8ae38255ba3/pyromark-0.9.6-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0a9e3b39e412d085bcff6c021744ff7d4e90ceb42c30ec7fd466e67924d6bd1",
                "md5": "7dfc99278aabc8c5a3476df6c2e949c9",
                "sha256": "68b0bd95f5a1ee92777e714e4771aa75eef8711ea269c0cde8438d6161472bc8"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-manylinux_2_31_riscv64.whl",
            "has_sig": false,
            "md5_digest": "7dfc99278aabc8c5a3476df6c2e949c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 373423,
            "upload_time": "2025-10-20T13:09:16",
            "upload_time_iso_8601": "2025-10-20T13:09:16.643628Z",
            "url": "https://files.pythonhosted.org/packages/c0/a9/e3b39e412d085bcff6c021744ff7d4e90ceb42c30ec7fd466e67924d6bd1/pyromark-0.9.6-cp310-cp310-manylinux_2_31_riscv64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c24089621611c73e52eb33777e558b949955b5e9b5999bcddb5dac8a4cd81dfe",
                "md5": "7dbb0d74d2cc149fd1e59c0690a4c2a1",
                "sha256": "fda73e1e45ccad1b7426c10144ed7b29877d12c89a1c55b3f7f217fbc68ed473"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7dbb0d74d2cc149fd1e59c0690a4c2a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 537518,
            "upload_time": "2025-10-20T13:06:44",
            "upload_time_iso_8601": "2025-10-20T13:06:44.569444Z",
            "url": "https://files.pythonhosted.org/packages/c2/40/89621611c73e52eb33777e558b949955b5e9b5999bcddb5dac8a4cd81dfe/pyromark-0.9.6-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c985ee5e99cf5c2b1c5c7ae09e8e1522c572c16d1f6cf171de6599c48e2c223d",
                "md5": "9dd43b21ce3c6b8bea4ef6d042799bb7",
                "sha256": "d946397e6fe9a798735a5b51406a15ce9d957061c22aaa2a5c9d62665ac3d9ce"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9dd43b21ce3c6b8bea4ef6d042799bb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 626024,
            "upload_time": "2025-10-20T13:07:20",
            "upload_time_iso_8601": "2025-10-20T13:07:20.233462Z",
            "url": "https://files.pythonhosted.org/packages/c9/85/ee5e99cf5c2b1c5c7ae09e8e1522c572c16d1f6cf171de6599c48e2c223d/pyromark-0.9.6-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5aafa74536492f9a345f0d887676dd9abb5b18ce962cfd71a94a4a94c247a2a",
                "md5": "19d172186efe5652abf3c202176e477e",
                "sha256": "e5e0140e4d943ef64640bc0041d365dbb77fc1bc48e92d69d26e14f7f2300b70"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "19d172186efe5652abf3c202176e477e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 561060,
            "upload_time": "2025-10-20T13:08:08",
            "upload_time_iso_8601": "2025-10-20T13:08:08.384425Z",
            "url": "https://files.pythonhosted.org/packages/e5/aa/fa74536492f9a345f0d887676dd9abb5b18ce962cfd71a94a4a94c247a2a/pyromark-0.9.6-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b7bc45c47e8982352633a813ffc4f055e689f16f3e5b1cee442870eec1fe9d9",
                "md5": "3e365106dd26af4dbbc1e93658ba797a",
                "sha256": "559d1a491b69d2bcf9ed1aa48944e38b3cb2370d20d5a05fa4f364d765b262e5"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3e365106dd26af4dbbc1e93658ba797a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 571494,
            "upload_time": "2025-10-20T13:09:01",
            "upload_time_iso_8601": "2025-10-20T13:09:01.524258Z",
            "url": "https://files.pythonhosted.org/packages/6b/7b/c45c47e8982352633a813ffc4f055e689f16f3e5b1cee442870eec1fe9d9/pyromark-0.9.6-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29057e2704d350b762bbb931d86b024eace8973e158a81e39fe1ca230da97e8f",
                "md5": "fe80738f6cf54101e72517946b781805",
                "sha256": "69d91d9f309f7c8c1663a730c4ca80def61c5767863372c44e3af5d28b80dfb0"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe80738f6cf54101e72517946b781805",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 549274,
            "upload_time": "2025-10-20T13:10:58",
            "upload_time_iso_8601": "2025-10-20T13:10:58.798832Z",
            "url": "https://files.pythonhosted.org/packages/29/05/7e2704d350b762bbb931d86b024eace8973e158a81e39fe1ca230da97e8f/pyromark-0.9.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "413f7d0918def3136d479d00f5fcc1d5d4407f3e17573cc101997458fbbb09ca",
                "md5": "200ada8c0f71ee89083610de3bda8037",
                "sha256": "414e157c52ae862a01279e974f0c0b9d359ced2a967ee87f03f1c8f4b8fb49da"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "200ada8c0f71ee89083610de3bda8037",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 258645,
            "upload_time": "2025-10-20T13:07:33",
            "upload_time_iso_8601": "2025-10-20T13:07:33.720104Z",
            "url": "https://files.pythonhosted.org/packages/41/3f/7d0918def3136d479d00f5fcc1d5d4407f3e17573cc101997458fbbb09ca/pyromark-0.9.6-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "298e6caaaf4f60260d595abee79894068aa5faca37fe6c3f362a4f45f78b68b4",
                "md5": "370064da83024e277c4d32e3916a1315",
                "sha256": "616b352c09a73b2f2802c7b34f26c3d4f3c8e368bf1707c86fb8ec2009ec82da"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "370064da83024e277c4d32e3916a1315",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 270824,
            "upload_time": "2025-10-20T13:10:15",
            "upload_time_iso_8601": "2025-10-20T13:10:15.234870Z",
            "url": "https://files.pythonhosted.org/packages/29/8e/6caaaf4f60260d595abee79894068aa5faca37fe6c3f362a4f45f78b68b4/pyromark-0.9.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20d59aae192e8d5f6db8d1243afc8594d45a5ab3b9daf35b2f2f3c40ece31c55",
                "md5": "cf5736fc42deadc696e44e222fb94b69",
                "sha256": "b64f4a6efd8cafdd37d326b53817f2c932d9381f6b4b410d564007179da9f17b"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf5736fc42deadc696e44e222fb94b69",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 343857,
            "upload_time": "2025-10-20T13:10:01",
            "upload_time_iso_8601": "2025-10-20T13:10:01.845294Z",
            "url": "https://files.pythonhosted.org/packages/20/d5/9aae192e8d5f6db8d1243afc8594d45a5ab3b9daf35b2f2f3c40ece31c55/pyromark-0.9.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36847a7c2f82a2aa7b5a4502726d1e9f988d674d3c49694e4584b7bd0a110fea",
                "md5": "fbbf4133edfb8e6a075c6244353ad4b6",
                "sha256": "82f497f6479b82fe93c7e76df4858ecc8b4c9137b84e8a88da6ac0e40482a550"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fbbf4133edfb8e6a075c6244353ad4b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 322075,
            "upload_time": "2025-10-20T13:06:03",
            "upload_time_iso_8601": "2025-10-20T13:06:03.408080Z",
            "url": "https://files.pythonhosted.org/packages/36/84/7a7c2f82a2aa7b5a4502726d1e9f988d674d3c49694e4584b7bd0a110fea/pyromark-0.9.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "980822d81efc288ca7d983b61b396191d534819834857e80b208f1271c587f07",
                "md5": "1aeb9b286016e1db58af86543391bfcf",
                "sha256": "f3d97f0cdb2d347ff3a4b72d9ce8be104fe2ae9e752092982f443b87b727d9b3"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1aeb9b286016e1db58af86543391bfcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 355580,
            "upload_time": "2025-10-20T13:06:23",
            "upload_time_iso_8601": "2025-10-20T13:06:23.099739Z",
            "url": "https://files.pythonhosted.org/packages/98/08/22d81efc288ca7d983b61b396191d534819834857e80b208f1271c587f07/pyromark-0.9.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5db4e1baa33a78bce85e99249da88015f4b4dfa204309b31c6b53c73e703216",
                "md5": "ccca45917c3ab63494d15ecd62635927",
                "sha256": "ff459ad1c6ea1fcde89c0d01833a9fbaeb189dbed71ec3ea7cf4e3ffd3b75509"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ccca45917c3ab63494d15ecd62635927",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 360077,
            "upload_time": "2025-10-20T13:06:56",
            "upload_time_iso_8601": "2025-10-20T13:06:56.896672Z",
            "url": "https://files.pythonhosted.org/packages/f5/db/4e1baa33a78bce85e99249da88015f4b4dfa204309b31c6b53c73e703216/pyromark-0.9.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84702e2a495d09cf1b765000dd886de7295d5a8798341db095df612b012a134b",
                "md5": "3455a25ce13aa75a95ac537ee462e12b",
                "sha256": "dccb3525ce11f13bdf8bae33aaa788655555bb423c361c387f58bb46ec653aac"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3455a25ce13aa75a95ac537ee462e12b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 384555,
            "upload_time": "2025-10-20T13:07:45",
            "upload_time_iso_8601": "2025-10-20T13:07:45.304352Z",
            "url": "https://files.pythonhosted.org/packages/84/70/2e2a495d09cf1b765000dd886de7295d5a8798341db095df612b012a134b/pyromark-0.9.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86501403f1245fe94c5613a3432346fc3ed8f6460304fde9274588774641d457",
                "md5": "0e8eaf1995755c2bfa01eda3326bb14a",
                "sha256": "3429d76ff58c8bdf132e0cdb9533cea4c2898247190fd3f7d427d69a34abcc11"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0e8eaf1995755c2bfa01eda3326bb14a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 407959,
            "upload_time": "2025-10-20T13:08:35",
            "upload_time_iso_8601": "2025-10-20T13:08:35.046233Z",
            "url": "https://files.pythonhosted.org/packages/86/50/1403f1245fe94c5613a3432346fc3ed8f6460304fde9274588774641d457/pyromark-0.9.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f4a3b711c5a566a6e72b56f23663b99ef05d5565096e5f7586be5f1d5606424",
                "md5": "f580983830748b0a2cfb0830bb47d951",
                "sha256": "7a7e7e082c58f475d5324abe02d98d78a948dfb97be98e1d49e474f58004f739"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "f580983830748b0a2cfb0830bb47d951",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 415934,
            "upload_time": "2025-10-20T13:08:21",
            "upload_time_iso_8601": "2025-10-20T13:08:21.343128Z",
            "url": "https://files.pythonhosted.org/packages/2f/4a/3b711c5a566a6e72b56f23663b99ef05d5565096e5f7586be5f1d5606424/pyromark-0.9.6-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a6b7496df75374ffd016fd06bc1817b697c8e9b7b710e5cf38b7b786cc57e1f",
                "md5": "dd4456db5cfe03378ff0530f1a4b2b2d",
                "sha256": "0d18902f99ccc206065df6f16c42b5067d519efbe5de43fb5aeb0a0fb835143e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "dd4456db5cfe03378ff0530f1a4b2b2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 457554,
            "upload_time": "2025-10-20T13:09:32",
            "upload_time_iso_8601": "2025-10-20T13:09:32.132577Z",
            "url": "https://files.pythonhosted.org/packages/9a/6b/7496df75374ffd016fd06bc1817b697c8e9b7b710e5cf38b7b786cc57e1f/pyromark-0.9.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7982cf51dae3a5eb9c30c50c738dea9d8ee790025d0a8668ae5a3ae226a040d3",
                "md5": "84f72cc8d50e59621797c18ce5a85eaf",
                "sha256": "7dc735382fb31922d50a1dade7d71abdd2e2fc831813017611dffa002fcf1c38"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84f72cc8d50e59621797c18ce5a85eaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 368390,
            "upload_time": "2025-10-20T13:10:28",
            "upload_time_iso_8601": "2025-10-20T13:10:28.542291Z",
            "url": "https://files.pythonhosted.org/packages/79/82/cf51dae3a5eb9c30c50c738dea9d8ee790025d0a8668ae5a3ae226a040d3/pyromark-0.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2a98a676c81fbe66ab7bb5f1a6a9b32bbbd9f6472c490e8e61c2dc2a597034f",
                "md5": "d9bb456e62b991cf8996556495737a2c",
                "sha256": "d10cc4db1570e20c7ef2e167548d260779296b92605cb7641b9e3bd8e007621c"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d9bb456e62b991cf8996556495737a2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 356323,
            "upload_time": "2025-10-20T13:06:34",
            "upload_time_iso_8601": "2025-10-20T13:06:34.798985Z",
            "url": "https://files.pythonhosted.org/packages/d2/a9/8a676c81fbe66ab7bb5f1a6a9b32bbbd9f6472c490e8e61c2dc2a597034f/pyromark-0.9.6-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6322a9e45dccb253d507c2f7f6a09de059e832a0e15b537d600e0d97d40146a",
                "md5": "ab4d634ef7cbd85ba1bf8f4c030f2821",
                "sha256": "31ecba75888a9a80ecf86e814595e80a154cb32a4c3a24ae16ec6463e9dca40b"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ab4d634ef7cbd85ba1bf8f4c030f2821",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 360073,
            "upload_time": "2025-10-20T13:07:10",
            "upload_time_iso_8601": "2025-10-20T13:07:10.642357Z",
            "url": "https://files.pythonhosted.org/packages/a6/32/2a9e45dccb253d507c2f7f6a09de059e832a0e15b537d600e0d97d40146a/pyromark-0.9.6-cp311-cp311-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c2eccadbc5eb0bf101ed4d0b6ef200a6fe59fe10e5364180a5e0c6f5e6462c56",
                "md5": "f280fec8a99f5c78c421e1034d4d4246",
                "sha256": "deb4cb9a02c47f5e64686229f07a20a2b67249a47ab1763b376a81c2771c64f4"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_28_i686.whl",
            "has_sig": false,
            "md5_digest": "f280fec8a99f5c78c421e1034d4d4246",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 384931,
            "upload_time": "2025-10-20T13:07:57",
            "upload_time_iso_8601": "2025-10-20T13:07:57.144226Z",
            "url": "https://files.pythonhosted.org/packages/c2/ec/cadbc5eb0bf101ed4d0b6ef200a6fe59fe10e5364180a5e0c6f5e6462c56/pyromark-0.9.6-cp311-cp311-manylinux_2_28_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23ec05a9b54fa0c21013cda2ae5c31e7f906afcf761a66d65fbcc3e6a5942512",
                "md5": "03da69b519e4e2d3735bc5ca0233dbb7",
                "sha256": "ede927b53e68b365b07660779409b3847c281d27b866e92f91b394f49524bc7d"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "03da69b519e4e2d3735bc5ca0233dbb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 408057,
            "upload_time": "2025-10-20T13:08:50",
            "upload_time_iso_8601": "2025-10-20T13:08:50.085916Z",
            "url": "https://files.pythonhosted.org/packages/23/ec/05a9b54fa0c21013cda2ae5c31e7f906afcf761a66d65fbcc3e6a5942512/pyromark-0.9.6-cp311-cp311-manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7185e40a9b2a392e0a4bad6d1679e3b078c26047b0b06843b1300bf81bfa1e2d",
                "md5": "81f3ae091a70d48f7a7d5053ad353396",
                "sha256": "3ad361f5d801fad221bf25ab916748b1277cf243d009334914bb7be5c76815ec"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "81f3ae091a70d48f7a7d5053ad353396",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 456831,
            "upload_time": "2025-10-20T13:09:46",
            "upload_time_iso_8601": "2025-10-20T13:09:46.566653Z",
            "url": "https://files.pythonhosted.org/packages/71/85/e40a9b2a392e0a4bad6d1679e3b078c26047b0b06843b1300bf81bfa1e2d/pyromark-0.9.6-cp311-cp311-manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "497cc23d802a0b03803ae2a15d8a4e8cdb0f2fad691b0aea653f6dc7b5b8b2fd",
                "md5": "16aa87a5762fada348bbd77a396143d3",
                "sha256": "3449b5703e632aa2a5bf2f520100d073421b52d86f2bc71aadadf24c15327dbe"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "16aa87a5762fada348bbd77a396143d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 368687,
            "upload_time": "2025-10-20T13:10:43",
            "upload_time_iso_8601": "2025-10-20T13:10:43.045513Z",
            "url": "https://files.pythonhosted.org/packages/49/7c/c23d802a0b03803ae2a15d8a4e8cdb0f2fad691b0aea653f6dc7b5b8b2fd/pyromark-0.9.6-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "285ea2021a1c41bc7ea4156a6d112f087536360569ee6d7ad9a2b1a82250400c",
                "md5": "78b18cd67655ab95c6e5f5e1c994b6e7",
                "sha256": "ea718e6eb14ba9de26358e41b86a839ffe8dfdbd34cd43587f02135b6e905c39"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-manylinux_2_31_riscv64.whl",
            "has_sig": false,
            "md5_digest": "78b18cd67655ab95c6e5f5e1c994b6e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 373353,
            "upload_time": "2025-10-20T13:09:18",
            "upload_time_iso_8601": "2025-10-20T13:09:18.262399Z",
            "url": "https://files.pythonhosted.org/packages/28/5e/a2021a1c41bc7ea4156a6d112f087536360569ee6d7ad9a2b1a82250400c/pyromark-0.9.6-cp311-cp311-manylinux_2_31_riscv64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f4d06e1041b9887b251ab1319dd818478921a2c6cd5ea559249e83b48fb5376",
                "md5": "5aefe8b30d5e9e5be54803858bc269fe",
                "sha256": "fe0886feb8b962580ed91a105872d0965a6a6a43fb1a3d968d056bcb59ca2dad"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5aefe8b30d5e9e5be54803858bc269fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 537530,
            "upload_time": "2025-10-20T13:06:45",
            "upload_time_iso_8601": "2025-10-20T13:06:45.783490Z",
            "url": "https://files.pythonhosted.org/packages/4f/4d/06e1041b9887b251ab1319dd818478921a2c6cd5ea559249e83b48fb5376/pyromark-0.9.6-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e729b09b368fbbb6f9cf3fd6afef405e06fc24c6a1dedd52f6cce49161910c3b",
                "md5": "0c23cbc5e1040c3c8b711b8c23ebf254",
                "sha256": "344d4393e7737e2f70a9f16a49fe40f04ddbe6911b3a58dffe422d1d4ed500c1"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0c23cbc5e1040c3c8b711b8c23ebf254",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 625612,
            "upload_time": "2025-10-20T13:07:21",
            "upload_time_iso_8601": "2025-10-20T13:07:21.858983Z",
            "url": "https://files.pythonhosted.org/packages/e7/29/b09b368fbbb6f9cf3fd6afef405e06fc24c6a1dedd52f6cce49161910c3b/pyromark-0.9.6-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "310c07c6256ce03cbb9446d717c6e4996cff8eae0e0df796e7a3ff1d1c994cb8",
                "md5": "20c65e80d086ba2b99289341ca7282c3",
                "sha256": "33286c90ae0ff0a2c8529a42e337936c945d3edc212b377bef9d22b1d943e149"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "20c65e80d086ba2b99289341ca7282c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 561296,
            "upload_time": "2025-10-20T13:08:09",
            "upload_time_iso_8601": "2025-10-20T13:08:09.680353Z",
            "url": "https://files.pythonhosted.org/packages/31/0c/07c6256ce03cbb9446d717c6e4996cff8eae0e0df796e7a3ff1d1c994cb8/pyromark-0.9.6-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "425b73fc98c973285cbe75e3b0a1fee77236ffbde5452c00d8116140b2b2301a",
                "md5": "bd24703ed7a2f114de22944ae288d813",
                "sha256": "fcb0d1cde3a9310035fb579be3a00f74a35adba17f8e7b093dd9b89034c29972"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bd24703ed7a2f114de22944ae288d813",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 571540,
            "upload_time": "2025-10-20T13:09:03",
            "upload_time_iso_8601": "2025-10-20T13:09:03.280028Z",
            "url": "https://files.pythonhosted.org/packages/42/5b/73fc98c973285cbe75e3b0a1fee77236ffbde5452c00d8116140b2b2301a/pyromark-0.9.6-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08d0823e9ce85112dcaa7241d2a05b6f3965fda4be5e77d492f5848cc6c8a15a",
                "md5": "a90b9e804eb2c750d40205928e7b08e8",
                "sha256": "f9b5f9b7464d8183a9ae131e6d06e868e9f9b2bd3cd24274fd586a4e2c9e4ddd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a90b9e804eb2c750d40205928e7b08e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 549264,
            "upload_time": "2025-10-20T13:11:00",
            "upload_time_iso_8601": "2025-10-20T13:11:00.702675Z",
            "url": "https://files.pythonhosted.org/packages/08/d0/823e9ce85112dcaa7241d2a05b6f3965fda4be5e77d492f5848cc6c8a15a/pyromark-0.9.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5a4853d66887da61a1d5768789d383b802cc4d61fe941c2ebe3a951a2ce1280",
                "md5": "36b6805de05db6d2d5e011284072b245",
                "sha256": "217e8794982c029f834944e53e5c9059dd0e5a2cadfe2a9a32c1fa2230438010"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "36b6805de05db6d2d5e011284072b245",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 258257,
            "upload_time": "2025-10-20T13:07:35",
            "upload_time_iso_8601": "2025-10-20T13:07:35.229366Z",
            "url": "https://files.pythonhosted.org/packages/c5/a4/853d66887da61a1d5768789d383b802cc4d61fe941c2ebe3a951a2ce1280/pyromark-0.9.6-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ef76b6f7fb0d30956f872ff4a362f1b0ca14bb82b0472abbd7bd48a6ad0dedf",
                "md5": "51b58d8cb4c9b540292f7f82f2a1f33a",
                "sha256": "70a3a71134cc7604fb96c72cdad86b85982295417e40a31dd229d7b84921dfa2"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "51b58d8cb4c9b540292f7f82f2a1f33a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 270851,
            "upload_time": "2025-10-20T13:10:17",
            "upload_time_iso_8601": "2025-10-20T13:10:17.254725Z",
            "url": "https://files.pythonhosted.org/packages/6e/f7/6b6f7fb0d30956f872ff4a362f1b0ca14bb82b0472abbd7bd48a6ad0dedf/pyromark-0.9.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ea5ef9038836677c5ad9eefb74d52feeca54e193e9675b7f21c6ad8ed6dd68a",
                "md5": "cdab24e5907a464cdfcf6511d1b6ecce",
                "sha256": "2baa6bf04bb9fdf3b331b6453f63338abe38860af74c91672b4bcaf4aa458d8c"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "cdab24e5907a464cdfcf6511d1b6ecce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 255672,
            "upload_time": "2025-10-20T13:06:14",
            "upload_time_iso_8601": "2025-10-20T13:06:14.612445Z",
            "url": "https://files.pythonhosted.org/packages/3e/a5/ef9038836677c5ad9eefb74d52feeca54e193e9675b7f21c6ad8ed6dd68a/pyromark-0.9.6-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4fb69ebd9b1b3daca5d54cab290e0a6d5dc63ddac14763d49dfece5d7218bbeb",
                "md5": "ebd351bbab89f37a9f4c26455af88f02",
                "sha256": "80acc719579b18bc777307a27c70e2c03dcd728d1b392315b43634d860a6be06"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebd351bbab89f37a9f4c26455af88f02",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 343622,
            "upload_time": "2025-10-20T13:10:03",
            "upload_time_iso_8601": "2025-10-20T13:10:03.622379Z",
            "url": "https://files.pythonhosted.org/packages/4f/b6/9ebd9b1b3daca5d54cab290e0a6d5dc63ddac14763d49dfece5d7218bbeb/pyromark-0.9.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90a716f0c494455a04af9c135bb069bef3b9ebf692ca95d642aeee87a3104bbd",
                "md5": "b54159e8bd4aacb6f89566a64bb8ddb4",
                "sha256": "6462070ee35782af6017f3a275dd265115605e5a6200f2d9a02f7b65d70afe9c"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b54159e8bd4aacb6f89566a64bb8ddb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 321805,
            "upload_time": "2025-10-20T13:06:04",
            "upload_time_iso_8601": "2025-10-20T13:06:04.840134Z",
            "url": "https://files.pythonhosted.org/packages/90/a7/16f0c494455a04af9c135bb069bef3b9ebf692ca95d642aeee87a3104bbd/pyromark-0.9.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "131040ac57ae34da30c6d2c100ed2924ab627fc49c0abef23882e273b10fa0ff",
                "md5": "cfd9abd6d6a2fe230075396ecdca9a44",
                "sha256": "ac80d84d0539d51715c2764b081440b1acb853c91718ed2c55e696b01a520223"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cfd9abd6d6a2fe230075396ecdca9a44",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 354077,
            "upload_time": "2025-10-20T13:06:24",
            "upload_time_iso_8601": "2025-10-20T13:06:24.706433Z",
            "url": "https://files.pythonhosted.org/packages/13/10/40ac57ae34da30c6d2c100ed2924ab627fc49c0abef23882e273b10fa0ff/pyromark-0.9.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f42fd8b1de5bdeb4f474ef0db7c9b3167743981c58da7a9afabd2df48f541ec",
                "md5": "7c10b3640e5449d7a011400af2e19674",
                "sha256": "3f75521ac775c264a3dd077a92712e766977c809845d82fe7e510db5beae6c02"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7c10b3640e5449d7a011400af2e19674",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 359012,
            "upload_time": "2025-10-20T13:06:58",
            "upload_time_iso_8601": "2025-10-20T13:06:58.026362Z",
            "url": "https://files.pythonhosted.org/packages/4f/42/fd8b1de5bdeb4f474ef0db7c9b3167743981c58da7a9afabd2df48f541ec/pyromark-0.9.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7887b00d911a74f71faf51e1ec102b69506cad4e69f715910d6a9d7f8fd7df3",
                "md5": "44bb7f4d0cf3a20e3de75ac93f28ce72",
                "sha256": "87c8acca1606bd985a29c04f7192acb838179f76d94057af09d1c98fca237976"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "44bb7f4d0cf3a20e3de75ac93f28ce72",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 383554,
            "upload_time": "2025-10-20T13:07:46",
            "upload_time_iso_8601": "2025-10-20T13:07:46.478170Z",
            "url": "https://files.pythonhosted.org/packages/b7/88/7b00d911a74f71faf51e1ec102b69506cad4e69f715910d6a9d7f8fd7df3/pyromark-0.9.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6921b78dd947de6a7e9182d1cedba366d903cecff7e2d3840ccaf6480d20b9a7",
                "md5": "76a05f075e01ab878a682de41e345927",
                "sha256": "0e8c26fadf9e3f61b83d51afbad01c9b71fcf0472b77132862a286894b18a921"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "76a05f075e01ab878a682de41e345927",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 405965,
            "upload_time": "2025-10-20T13:08:36",
            "upload_time_iso_8601": "2025-10-20T13:08:36.683172Z",
            "url": "https://files.pythonhosted.org/packages/69/21/b78dd947de6a7e9182d1cedba366d903cecff7e2d3840ccaf6480d20b9a7/pyromark-0.9.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc04c7e2e6b6b11c9259e557606449b5f33c99f8afb13031ccca06b878810ded",
                "md5": "bc2bfb6e473e4639641211d88d8d06c3",
                "sha256": "5c55680d3d8da73420e66b732b9ac5f8294b0ba50d823cf7694e9831c2e62c71"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "bc2bfb6e473e4639641211d88d8d06c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 415396,
            "upload_time": "2025-10-20T13:08:22",
            "upload_time_iso_8601": "2025-10-20T13:08:22.894770Z",
            "url": "https://files.pythonhosted.org/packages/dc/04/c7e2e6b6b11c9259e557606449b5f33c99f8afb13031ccca06b878810ded/pyromark-0.9.6-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcf1a12f5c1ecae2b78604081d3cfb1526cb9b1375d30a63bcf5b7978b48f1f4",
                "md5": "b5c292846e6019cd4d1c6b9e59db42f1",
                "sha256": "f691455dad5b78d08782df7b5fc7006e44d8902b7b570bbaabd3ec03b26a5976"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b5c292846e6019cd4d1c6b9e59db42f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 452604,
            "upload_time": "2025-10-20T13:09:33",
            "upload_time_iso_8601": "2025-10-20T13:09:33.932150Z",
            "url": "https://files.pythonhosted.org/packages/bc/f1/a12f5c1ecae2b78604081d3cfb1526cb9b1375d30a63bcf5b7978b48f1f4/pyromark-0.9.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b55ce6e197c052fe2d0f96e8d0bf2f42da5087b9a4a8f673e0e5ac88fc803159",
                "md5": "18e2f915e0ee02f5718d9d074e4ea69c",
                "sha256": "a5f5ec3a48c6987ecbd002ebca519ce6182319004638b6c6c678d1f1617b4d21"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18e2f915e0ee02f5718d9d074e4ea69c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 367558,
            "upload_time": "2025-10-20T13:10:29",
            "upload_time_iso_8601": "2025-10-20T13:10:29.985164Z",
            "url": "https://files.pythonhosted.org/packages/b5/5c/e6e197c052fe2d0f96e8d0bf2f42da5087b9a4a8f673e0e5ac88fc803159/pyromark-0.9.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6c55ad5955b367da5ed0b0f1b72b750ba85ffbc58b6d16dd564b0a380273950",
                "md5": "6d9915eb96922f30f86d32841e28d7c8",
                "sha256": "9d593321885c1032d7a8b97faac1c657db542fc987c03e477d5440898fa3f48e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d9915eb96922f30f86d32841e28d7c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 354892,
            "upload_time": "2025-10-20T13:06:35",
            "upload_time_iso_8601": "2025-10-20T13:06:35.915130Z",
            "url": "https://files.pythonhosted.org/packages/b6/c5/5ad5955b367da5ed0b0f1b72b750ba85ffbc58b6d16dd564b0a380273950/pyromark-0.9.6-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f61ce230fc31a574fdbc2d9b25787e74a133f65d28bcfa91e731e75e1bb44613",
                "md5": "54cb4146027949f283c55cae657d8ffe",
                "sha256": "0eb338c719d006432cf59391d47cdd1f6607e94c798d28a37b5ac6dbe28530f9"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "54cb4146027949f283c55cae657d8ffe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 358935,
            "upload_time": "2025-10-20T13:07:11",
            "upload_time_iso_8601": "2025-10-20T13:07:11.954606Z",
            "url": "https://files.pythonhosted.org/packages/f6/1c/e230fc31a574fdbc2d9b25787e74a133f65d28bcfa91e731e75e1bb44613/pyromark-0.9.6-cp312-cp312-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f95e6db716855aefb9e0924e2c1d241b84a1fbb7a3ca06e7bc63ee46db99498",
                "md5": "21341b5df873f9319222298f66dbdd50",
                "sha256": "e36d955f2c502637e602b39b75f45825dd996ce959ef424a3a64319fa43214e6"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_28_i686.whl",
            "has_sig": false,
            "md5_digest": "21341b5df873f9319222298f66dbdd50",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 383872,
            "upload_time": "2025-10-20T13:07:58",
            "upload_time_iso_8601": "2025-10-20T13:07:58.399455Z",
            "url": "https://files.pythonhosted.org/packages/9f/95/e6db716855aefb9e0924e2c1d241b84a1fbb7a3ca06e7bc63ee46db99498/pyromark-0.9.6-cp312-cp312-manylinux_2_28_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "deb62b7ff078fcb3475d46ea0ece22d59388044260f77c72c200c8505b88c2cd",
                "md5": "402a8d46c3f13c18d3dd00a597016f46",
                "sha256": "1639896d910ac0d9421fbbd2134844ce6d55af7e5504f1d67b11cd21462c11cf"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "402a8d46c3f13c18d3dd00a597016f46",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 406054,
            "upload_time": "2025-10-20T13:08:51",
            "upload_time_iso_8601": "2025-10-20T13:08:51.650999Z",
            "url": "https://files.pythonhosted.org/packages/de/b6/2b7ff078fcb3475d46ea0ece22d59388044260f77c72c200c8505b88c2cd/pyromark-0.9.6-cp312-cp312-manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f206af30ff7876648b447c7b6a2dd88cbfaf1df0193db858265d69893192cb16",
                "md5": "b7fa9e9d02c5b1647e66818a774d0edf",
                "sha256": "ecf5d130430e882520ffeb8a83ffae9bd52bad44358177bbf3104776f04cc040"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "b7fa9e9d02c5b1647e66818a774d0edf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 453359,
            "upload_time": "2025-10-20T13:09:48",
            "upload_time_iso_8601": "2025-10-20T13:09:48.102896Z",
            "url": "https://files.pythonhosted.org/packages/f2/06/af30ff7876648b447c7b6a2dd88cbfaf1df0193db858265d69893192cb16/pyromark-0.9.6-cp312-cp312-manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "178be731f7c7bfb2bc974ef33097f50bf4db2b6ae6a170a02e2deda74b8e4ef9",
                "md5": "e7edf8afe069318ecb80bce982a061c4",
                "sha256": "04f0a8887907a1b0427d6837ad8a564a0e665647468900a71c251b76c58db1ce"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e7edf8afe069318ecb80bce982a061c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 367835,
            "upload_time": "2025-10-20T13:10:44",
            "upload_time_iso_8601": "2025-10-20T13:10:44.893623Z",
            "url": "https://files.pythonhosted.org/packages/17/8b/e731f7c7bfb2bc974ef33097f50bf4db2b6ae6a170a02e2deda74b8e4ef9/pyromark-0.9.6-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69f46bf20446b3210fe3ea1efe2e835e8a5772865f02111fa6f9fdb334277b0f",
                "md5": "b2962ca4d8bf9afe7bac098597654951",
                "sha256": "199998ebf36b02bbe81f94ac8bd9cefa3e903f5e1a19fe0bda17f49b5c3cf9a4"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-manylinux_2_31_riscv64.whl",
            "has_sig": false,
            "md5_digest": "b2962ca4d8bf9afe7bac098597654951",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 372223,
            "upload_time": "2025-10-20T13:09:19",
            "upload_time_iso_8601": "2025-10-20T13:09:19.591594Z",
            "url": "https://files.pythonhosted.org/packages/69/f4/6bf20446b3210fe3ea1efe2e835e8a5772865f02111fa6f9fdb334277b0f/pyromark-0.9.6-cp312-cp312-manylinux_2_31_riscv64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "857631fc4909e4b77aa2f15adbdbd452a463a768fe9653248deddb46f8795484",
                "md5": "48cf2292ec573dd351d0494f803877f0",
                "sha256": "36b1ff582fb1d9fc748ff07e020d6152c6c9a8d6a6d0a4cb255f6a6e550854e3"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48cf2292ec573dd351d0494f803877f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 536000,
            "upload_time": "2025-10-20T13:06:46",
            "upload_time_iso_8601": "2025-10-20T13:06:46.877715Z",
            "url": "https://files.pythonhosted.org/packages/85/76/31fc4909e4b77aa2f15adbdbd452a463a768fe9653248deddb46f8795484/pyromark-0.9.6-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f26daf05b12300e921428bc8fa5c17ca428024ef69580b6d3a259bc2f56c113",
                "md5": "de1a2797183ae2413fea3f64ed6dfc21",
                "sha256": "c1a64ee87761af6f5fb194fdfa03f24fab94ee8ff9711b6ac7f8c0c8db44ec1c"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "de1a2797183ae2413fea3f64ed6dfc21",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 624415,
            "upload_time": "2025-10-20T13:07:23",
            "upload_time_iso_8601": "2025-10-20T13:07:23.067865Z",
            "url": "https://files.pythonhosted.org/packages/6f/26/daf05b12300e921428bc8fa5c17ca428024ef69580b6d3a259bc2f56c113/pyromark-0.9.6-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3046bf5c99b96e252e9feaea61973e9c54d938afe839dd0f932c1b20495f459d",
                "md5": "e32945b8abce2292e7b0b447c2d6163d",
                "sha256": "39e5f2a0845db5802ab9e502f162d7c7383392727f3e15f32b5dd3da4355fbbd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e32945b8abce2292e7b0b447c2d6163d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 560409,
            "upload_time": "2025-10-20T13:08:10",
            "upload_time_iso_8601": "2025-10-20T13:08:10.951251Z",
            "url": "https://files.pythonhosted.org/packages/30/46/bf5c99b96e252e9feaea61973e9c54d938afe839dd0f932c1b20495f459d/pyromark-0.9.6-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16bf5cd99e266cc6789e23b86c702a50d3aed387918f7889beadde704e9a9921",
                "md5": "6da736fd19f1edcc0b8dea501dc97aa5",
                "sha256": "704d617359f0f195b764158582e6c8de9515ce7a3a3e3a192b18e6295b1d64f8"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6da736fd19f1edcc0b8dea501dc97aa5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 569769,
            "upload_time": "2025-10-20T13:09:05",
            "upload_time_iso_8601": "2025-10-20T13:09:05.125879Z",
            "url": "https://files.pythonhosted.org/packages/16/bf/5cd99e266cc6789e23b86c702a50d3aed387918f7889beadde704e9a9921/pyromark-0.9.6-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce50468e1b52cedef7c33080c584868388bcc7079397ded7ac7fed885cf2bb95",
                "md5": "6a5a69efcdce711be7f66f4059d346a5",
                "sha256": "8c8dde534e3861e1938a6b23476b1e96c5d1c0638d3ce68d3bf45d6bba1329e1"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a5a69efcdce711be7f66f4059d346a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 548365,
            "upload_time": "2025-10-20T13:11:02",
            "upload_time_iso_8601": "2025-10-20T13:11:02.575597Z",
            "url": "https://files.pythonhosted.org/packages/ce/50/468e1b52cedef7c33080c584868388bcc7079397ded7ac7fed885cf2bb95/pyromark-0.9.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0c322a25cf0c5f07eab11ef688f1afb3490fc7b42afd074c1b93c91c77bfa7a",
                "md5": "b94da44a3289ca101eb781c9bf0df46f",
                "sha256": "d4fc256065a62781b827f95362be90bb30a2666857c9fe30939978b323cfda7a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "b94da44a3289ca101eb781c9bf0df46f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 257456,
            "upload_time": "2025-10-20T13:07:36",
            "upload_time_iso_8601": "2025-10-20T13:07:36.379967Z",
            "url": "https://files.pythonhosted.org/packages/d0/c3/22a25cf0c5f07eab11ef688f1afb3490fc7b42afd074c1b93c91c77bfa7a/pyromark-0.9.6-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b34ca2d272d8b721682588abe2fb26849f71df5defbf25f82a0ee1bf43e04b87",
                "md5": "89c568b101e03e348bcee9bd26888245",
                "sha256": "a5ba647058748ee2f84d3575446df9fa5f7317142e8b6d191d6e02ebc9ead1c7"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "89c568b101e03e348bcee9bd26888245",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 271365,
            "upload_time": "2025-10-20T13:10:19",
            "upload_time_iso_8601": "2025-10-20T13:10:19.219475Z",
            "url": "https://files.pythonhosted.org/packages/b3/4c/a2d272d8b721682588abe2fb26849f71df5defbf25f82a0ee1bf43e04b87/pyromark-0.9.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e84d40ac9e8cbf37c78ae6b0a5302ad429057efc85e9b5aec9a1e3e8af97537",
                "md5": "6f33c24b560e16769e21e3505365b0b1",
                "sha256": "608c42c23069f76b390182504d7255ac75e3f8314644c7de3416466307adefa7"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "6f33c24b560e16769e21e3505365b0b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 255774,
            "upload_time": "2025-10-20T13:06:15",
            "upload_time_iso_8601": "2025-10-20T13:06:15.711729Z",
            "url": "https://files.pythonhosted.org/packages/7e/84/d40ac9e8cbf37c78ae6b0a5302ad429057efc85e9b5aec9a1e3e8af97537/pyromark-0.9.6-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c61e70f7724d89d59d48619820bddedfa48f4107e4d6d859ba8a38f55c5f2fe",
                "md5": "3ffa3f6099161e01a42c6f2a8cfb3337",
                "sha256": "bc5b81d494be5053516048172afd6aa7504035e828c34e9b0f8704ad5ffd36ec"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ffa3f6099161e01a42c6f2a8cfb3337",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 343446,
            "upload_time": "2025-10-20T13:10:05",
            "upload_time_iso_8601": "2025-10-20T13:10:05.512607Z",
            "url": "https://files.pythonhosted.org/packages/1c/61/e70f7724d89d59d48619820bddedfa48f4107e4d6d859ba8a38f55c5f2fe/pyromark-0.9.6-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ccf48f5b6732c7365cdb59dd72b9fabe6d27ead763f67361b644b2dc9681e16",
                "md5": "54fb6e2aac9088621f92a9d0671fed15",
                "sha256": "ecac6ffdfac6b698c8e6b39a4fe39eba20c050b7e556aeada5501115dc46e529"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "54fb6e2aac9088621f92a9d0671fed15",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 321551,
            "upload_time": "2025-10-20T13:06:06",
            "upload_time_iso_8601": "2025-10-20T13:06:06.109067Z",
            "url": "https://files.pythonhosted.org/packages/0c/cf/48f5b6732c7365cdb59dd72b9fabe6d27ead763f67361b644b2dc9681e16/pyromark-0.9.6-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41d0188ea31e0a834f2290c29e909f0b6e5c880452bab6c76a0e31e0a1b55d55",
                "md5": "998ccbc3bb4de68d6cf48b44737cc4e6",
                "sha256": "b6947f45b20165c793080556ea02a098a6110230733867fecf5df77daf804de9"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "998ccbc3bb4de68d6cf48b44737cc4e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 353877,
            "upload_time": "2025-10-20T13:06:26",
            "upload_time_iso_8601": "2025-10-20T13:06:26.072239Z",
            "url": "https://files.pythonhosted.org/packages/41/d0/188ea31e0a834f2290c29e909f0b6e5c880452bab6c76a0e31e0a1b55d55/pyromark-0.9.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e867cbd4c3d859aa092cc37fe7ebe3cf70821b3d3b1440946cc2382abc26090",
                "md5": "acf973bd24475184a0cb376b87058742",
                "sha256": "65cbcd1473b816d398bf8a1bf4207991a848912e3137a06f96f2199fc75693cd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "acf973bd24475184a0cb376b87058742",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 358643,
            "upload_time": "2025-10-20T13:06:59",
            "upload_time_iso_8601": "2025-10-20T13:06:59.137940Z",
            "url": "https://files.pythonhosted.org/packages/6e/86/7cbd4c3d859aa092cc37fe7ebe3cf70821b3d3b1440946cc2382abc26090/pyromark-0.9.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "838ec7453af622588b33d8f430c3c3cdbe6c772e8970242940bcd87aaa2507b6",
                "md5": "8cd1435a4f43efc3ac53c2e0ef7a357f",
                "sha256": "0ed8cb3011fbc9d7f0c2365e4baabba47243d2c8cf902574377a6ea81e14732a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8cd1435a4f43efc3ac53c2e0ef7a357f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 383397,
            "upload_time": "2025-10-20T13:07:47",
            "upload_time_iso_8601": "2025-10-20T13:07:47.943449Z",
            "url": "https://files.pythonhosted.org/packages/83/8e/c7453af622588b33d8f430c3c3cdbe6c772e8970242940bcd87aaa2507b6/pyromark-0.9.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edeb15cec04d1af13ef8a2d1a4d66c69791bd15b84127a8aa998d16d5d23dff7",
                "md5": "145b49f431dc84df81eaeb22184fbc51",
                "sha256": "e5aa9d0f820194ba8982967b807fad2f52504fd0e4cac337cca62b80356ce478"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "145b49f431dc84df81eaeb22184fbc51",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 405513,
            "upload_time": "2025-10-20T13:08:38",
            "upload_time_iso_8601": "2025-10-20T13:08:38.112442Z",
            "url": "https://files.pythonhosted.org/packages/ed/eb/15cec04d1af13ef8a2d1a4d66c69791bd15b84127a8aa998d16d5d23dff7/pyromark-0.9.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7613622455a11677c5d2f92756d64cbfb4416c96e428a64aa975539d98f8a6a4",
                "md5": "88a7d37471dc22b20fb9c66e2c02427b",
                "sha256": "9d665fb51a2545617cfacf9e4b673e7df5615aa05e673853af9bd189a443ddc0"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "88a7d37471dc22b20fb9c66e2c02427b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 415138,
            "upload_time": "2025-10-20T13:08:24",
            "upload_time_iso_8601": "2025-10-20T13:08:24.328469Z",
            "url": "https://files.pythonhosted.org/packages/76/13/622455a11677c5d2f92756d64cbfb4416c96e428a64aa975539d98f8a6a4/pyromark-0.9.6-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "880dd233be4dbdb8852b34b4665a4a845660c063bb5f9fdc0e22963217b3611f",
                "md5": "def7a021c98c4c58e4ada771e2802987",
                "sha256": "398dcab6c19707d5362303bc1d7a36e2173471d85b95d28680537c1727df65c9"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "def7a021c98c4c58e4ada771e2802987",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 452712,
            "upload_time": "2025-10-20T13:09:35",
            "upload_time_iso_8601": "2025-10-20T13:09:35.422029Z",
            "url": "https://files.pythonhosted.org/packages/88/0d/d233be4dbdb8852b34b4665a4a845660c063bb5f9fdc0e22963217b3611f/pyromark-0.9.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45c6311fa99cfd68bb5b82dcc4efc72718d2f53bef00fd11c9bfdd07c24fa4a6",
                "md5": "2774fb2e70db6c3f823849bf3ecc1728",
                "sha256": "719f1db68b6e4db226937c5167846c4dce307de7fb973a71103d046c9aa0abee"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2774fb2e70db6c3f823849bf3ecc1728",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 367066,
            "upload_time": "2025-10-20T13:10:31",
            "upload_time_iso_8601": "2025-10-20T13:10:31.470641Z",
            "url": "https://files.pythonhosted.org/packages/45/c6/311fa99cfd68bb5b82dcc4efc72718d2f53bef00fd11c9bfdd07c24fa4a6/pyromark-0.9.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0f07d2ca9d420d50eb114552d85c91759c58ddd140332c0147481b0e0205ee7",
                "md5": "391c64c5742bf41b0e0d1caae55e17af",
                "sha256": "7743c2d29af2107397708f9b408c9197525e868de73fb66a9cb129949d820716"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "391c64c5742bf41b0e0d1caae55e17af",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 354705,
            "upload_time": "2025-10-20T13:06:37",
            "upload_time_iso_8601": "2025-10-20T13:06:37.170055Z",
            "url": "https://files.pythonhosted.org/packages/b0/f0/7d2ca9d420d50eb114552d85c91759c58ddd140332c0147481b0e0205ee7/pyromark-0.9.6-cp313-cp313-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f30495a63670f8df8babc3240361f30d3920202de61b2ddd3def3857deba1197",
                "md5": "d3d8e3e37cd1bef80416bbb267a98a13",
                "sha256": "ab1884cd85d64b7e92ee79489beb670125ed5f0bb06479d93eaecdfe34ac2328"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d3d8e3e37cd1bef80416bbb267a98a13",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 358680,
            "upload_time": "2025-10-20T13:07:13",
            "upload_time_iso_8601": "2025-10-20T13:07:13.149097Z",
            "url": "https://files.pythonhosted.org/packages/f3/04/95a63670f8df8babc3240361f30d3920202de61b2ddd3def3857deba1197/pyromark-0.9.6-cp313-cp313-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b0b97f871c622a02f6e80163e96100ce52f1605a050d291cf48a1255de48c20",
                "md5": "a626e8c3b5edac1126e2b80404b6c396",
                "sha256": "6f3792cba28cd6f11aa7cf97f525c5b197b5632cfeb5d80806aa1068ed8255b9"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_28_i686.whl",
            "has_sig": false,
            "md5_digest": "a626e8c3b5edac1126e2b80404b6c396",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 383747,
            "upload_time": "2025-10-20T13:07:59",
            "upload_time_iso_8601": "2025-10-20T13:07:59.583468Z",
            "url": "https://files.pythonhosted.org/packages/5b/0b/97f871c622a02f6e80163e96100ce52f1605a050d291cf48a1255de48c20/pyromark-0.9.6-cp313-cp313-manylinux_2_28_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b99cfdc1104d01867fc95756993451a8f9e2c228328fb211dfdcafdb2918fe9",
                "md5": "5e85dbfaf0c39c1639fd8a402c3760ee",
                "sha256": "11c5f5915255f440b009a0cc0ce25ff6924f5f5f4f48d4ff8e11aed1c7a2a0dd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5e85dbfaf0c39c1639fd8a402c3760ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 405622,
            "upload_time": "2025-10-20T13:08:53",
            "upload_time_iso_8601": "2025-10-20T13:08:53.097751Z",
            "url": "https://files.pythonhosted.org/packages/2b/99/cfdc1104d01867fc95756993451a8f9e2c228328fb211dfdcafdb2918fe9/pyromark-0.9.6-cp313-cp313-manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "827698fcdef20258693e3181417bb9c031230f32835c653bcfe000d51d0ca4a8",
                "md5": "5703666931c233d302862e70f64108bb",
                "sha256": "97333d1642f4316ccc18f960add15e4b3fe6bed074673c53e9a5f8c92bc6ce11"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "5703666931c233d302862e70f64108bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 453341,
            "upload_time": "2025-10-20T13:09:49",
            "upload_time_iso_8601": "2025-10-20T13:09:49.953081Z",
            "url": "https://files.pythonhosted.org/packages/82/76/98fcdef20258693e3181417bb9c031230f32835c653bcfe000d51d0ca4a8/pyromark-0.9.6-cp313-cp313-manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "267803ea173b381b1879a8a275c958309029b52776379078cc2bb6babd7ee9c3",
                "md5": "1258941974d450d5c7fa8c1b47211624",
                "sha256": "f9999c4dcac665ab029e20aab7081471239b9119055cd1e36f7d9c2407023679"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1258941974d450d5c7fa8c1b47211624",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 367371,
            "upload_time": "2025-10-20T13:10:47",
            "upload_time_iso_8601": "2025-10-20T13:10:47.731953Z",
            "url": "https://files.pythonhosted.org/packages/26/78/03ea173b381b1879a8a275c958309029b52776379078cc2bb6babd7ee9c3/pyromark-0.9.6-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54e7193bf3b4ec8459cb5af700c48fcadf4bb51506cac26e4dc143c43a00fbb4",
                "md5": "23f8d9b8a71777764bbdd367490ce2bb",
                "sha256": "507b6558702e10512ef561d43c31ef9ad9ef1171c2a25fb25e667e4fd8402e31"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-manylinux_2_31_riscv64.whl",
            "has_sig": false,
            "md5_digest": "23f8d9b8a71777764bbdd367490ce2bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 371865,
            "upload_time": "2025-10-20T13:09:21",
            "upload_time_iso_8601": "2025-10-20T13:09:21.351160Z",
            "url": "https://files.pythonhosted.org/packages/54/e7/193bf3b4ec8459cb5af700c48fcadf4bb51506cac26e4dc143c43a00fbb4/pyromark-0.9.6-cp313-cp313-manylinux_2_31_riscv64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abe3fe0db393a33165416bb2079d3cdbc5393ceec4595d88cf44c95b8b27d6e8",
                "md5": "d01fd8261783111dfc5a101862d24475",
                "sha256": "21c6df9719b9d7598a0e9a64332afb9524217708ebb84c916c8a4c13880d8da5"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d01fd8261783111dfc5a101862d24475",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 535732,
            "upload_time": "2025-10-20T13:06:48",
            "upload_time_iso_8601": "2025-10-20T13:06:48.068451Z",
            "url": "https://files.pythonhosted.org/packages/ab/e3/fe0db393a33165416bb2079d3cdbc5393ceec4595d88cf44c95b8b27d6e8/pyromark-0.9.6-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97ba314854eab791190b8ffafd5720c2d8f6a17c330a572e6ea7b38b6215e03f",
                "md5": "42ca72d4c5b19dcb031b5059ba482789",
                "sha256": "f2e2a3913a6207c719e51e884cf34938037468baf53f7e80a074547bdaf5dc3b"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "42ca72d4c5b19dcb031b5059ba482789",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 624017,
            "upload_time": "2025-10-20T13:07:24",
            "upload_time_iso_8601": "2025-10-20T13:07:24.432828Z",
            "url": "https://files.pythonhosted.org/packages/97/ba/314854eab791190b8ffafd5720c2d8f6a17c330a572e6ea7b38b6215e03f/pyromark-0.9.6-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0037dd1e9cf9ebced197713163ffd63c7dd7ee0c2cb8f94d1b80588ba1dc940",
                "md5": "1c5dc662e0d122a10cc556a452ffe090",
                "sha256": "8c4143833ec266a9d0dcb53deb9e733205b82c9bebfa9c3863c77c8d2738b8a4"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1c5dc662e0d122a10cc556a452ffe090",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 560276,
            "upload_time": "2025-10-20T13:08:12",
            "upload_time_iso_8601": "2025-10-20T13:08:12.242824Z",
            "url": "https://files.pythonhosted.org/packages/b0/03/7dd1e9cf9ebced197713163ffd63c7dd7ee0c2cb8f94d1b80588ba1dc940/pyromark-0.9.6-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edfe4fb02b6c0378849e2e29f564f67aee2a945755d947cd03a22de15a2c44fb",
                "md5": "cd9d34aa6c1f86ba6a28a0f6f09b957f",
                "sha256": "0e486d8ffbc9f688bf3a96b1c8c0c109902e10cccf7a5b04cbf74dea00df2e0d"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "cd9d34aa6c1f86ba6a28a0f6f09b957f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 569388,
            "upload_time": "2025-10-20T13:09:06",
            "upload_time_iso_8601": "2025-10-20T13:09:06.657113Z",
            "url": "https://files.pythonhosted.org/packages/ed/fe/4fb02b6c0378849e2e29f564f67aee2a945755d947cd03a22de15a2c44fb/pyromark-0.9.6-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45090e0856ecf42779d68a237f2208e630c3b581154170af15df3af4dde5aff9",
                "md5": "6726026f4ccb3e0fcd23ec08cb2f713e",
                "sha256": "46609936eda0508ca4f25221279a74337e07000a1f0e36674e7207f7a91e62c8"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6726026f4ccb3e0fcd23ec08cb2f713e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 547990,
            "upload_time": "2025-10-20T13:11:04",
            "upload_time_iso_8601": "2025-10-20T13:11:04.233427Z",
            "url": "https://files.pythonhosted.org/packages/45/09/0e0856ecf42779d68a237f2208e630c3b581154170af15df3af4dde5aff9/pyromark-0.9.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4bc86f3f37bbd7f937085325673f815f0d7803af7f2a6990fee1020dc04cffc",
                "md5": "77a7634977dab7c8fec4675730cd5c78",
                "sha256": "57b2bb6840819fe2ac9ff636ec8a7d0e063f7c93334da7174cafb3584bc36766"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77a7634977dab7c8fec4675730cd5c78",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 342362,
            "upload_time": "2025-10-20T13:10:07",
            "upload_time_iso_8601": "2025-10-20T13:10:07.007920Z",
            "url": "https://files.pythonhosted.org/packages/b4/bc/86f3f37bbd7f937085325673f815f0d7803af7f2a6990fee1020dc04cffc/pyromark-0.9.6-cp313-cp313t-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e5bae862dbef13ce7d8b4955de3b56e523d83dd4dad9cb61ce7de7a36a4005d",
                "md5": "28acccf9a509ef0bbfdafd068d9609ce",
                "sha256": "f559cdb33adf4a2dadf67a8432a660a1f694bbe66728fcb43f1a7ed6533eef94"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "28acccf9a509ef0bbfdafd068d9609ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 320358,
            "upload_time": "2025-10-20T13:06:08",
            "upload_time_iso_8601": "2025-10-20T13:06:08.120907Z",
            "url": "https://files.pythonhosted.org/packages/8e/5b/ae862dbef13ce7d8b4955de3b56e523d83dd4dad9cb61ce7de7a36a4005d/pyromark-0.9.6-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3c7201079f2f3711ddc1b01936ce515d506742eb07c59fa76b5d5999e0fff42",
                "md5": "b014fd8fe7d0ca40906e93a8b931a98c",
                "sha256": "6d616d63cdf64d28af90b578eee3ee799be7e2917c90f3c33df0d96f1f26dc29"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b014fd8fe7d0ca40906e93a8b931a98c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 352652,
            "upload_time": "2025-10-20T13:06:27",
            "upload_time_iso_8601": "2025-10-20T13:06:27.348923Z",
            "url": "https://files.pythonhosted.org/packages/e3/c7/201079f2f3711ddc1b01936ce515d506742eb07c59fa76b5d5999e0fff42/pyromark-0.9.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9156a21e9fd51bb840e75957b8b0cb5af0b743c08586071e781733015e6bce8e",
                "md5": "67520f8ab754abe36a7c6fec96f6857e",
                "sha256": "ea37a09b32faeee931525db9e774b8ca431123db46de96984228354bb616b313"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "67520f8ab754abe36a7c6fec96f6857e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 357342,
            "upload_time": "2025-10-20T13:07:02",
            "upload_time_iso_8601": "2025-10-20T13:07:02.872206Z",
            "url": "https://files.pythonhosted.org/packages/91/56/a21e9fd51bb840e75957b8b0cb5af0b743c08586071e781733015e6bce8e/pyromark-0.9.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fae0204c35f1221f38876357eb13bd000a99b9c1cd2c53c2bbb3aeae91bbaa6e",
                "md5": "8ff587b82016c46add94f42274b7041a",
                "sha256": "0924508ddab0eac0a5ccae2eefcf17840a9934bf7109722eb0425bab0870b657"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8ff587b82016c46add94f42274b7041a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 382113,
            "upload_time": "2025-10-20T13:07:49",
            "upload_time_iso_8601": "2025-10-20T13:07:49.224744Z",
            "url": "https://files.pythonhosted.org/packages/fa/e0/204c35f1221f38876357eb13bd000a99b9c1cd2c53c2bbb3aeae91bbaa6e/pyromark-0.9.6-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8051225d6abb9a71403d53a8b4b33d03fc21512df4fcc29081a610ef1467cb5",
                "md5": "68f2a2373b4940d017da2ba1f638f2d6",
                "sha256": "2d9730b3d321f5a7d86c2c42888f7daf1ce49b75bf61fbb964365a2c800203fc"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "68f2a2373b4940d017da2ba1f638f2d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 404490,
            "upload_time": "2025-10-20T13:08:39",
            "upload_time_iso_8601": "2025-10-20T13:08:39.335071Z",
            "url": "https://files.pythonhosted.org/packages/f8/05/1225d6abb9a71403d53a8b4b33d03fc21512df4fcc29081a610ef1467cb5/pyromark-0.9.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9271307ac06b82ef944d8e7884d7ec2a7f19429ce705b839545a3c7bbb00ddd",
                "md5": "0ca429f6210201494b299e5ee77d266f",
                "sha256": "af852c3d7c19dda7cc109e27d449675fc523cf7b0a3f3eca4ecd8adbbfda8b68"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "0ca429f6210201494b299e5ee77d266f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 413357,
            "upload_time": "2025-10-20T13:08:25",
            "upload_time_iso_8601": "2025-10-20T13:08:25.576173Z",
            "url": "https://files.pythonhosted.org/packages/a9/27/1307ac06b82ef944d8e7884d7ec2a7f19429ce705b839545a3c7bbb00ddd/pyromark-0.9.6-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c3160ea79db1e574ea30e22208810735ec85fc6eebf137336c3f9e1949e3123",
                "md5": "8eb10afbe0e09d14866352b92d071048",
                "sha256": "58d810531e976543133392015972dec9d53f715ffafac2c659290fd191395e2b"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8eb10afbe0e09d14866352b92d071048",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 452007,
            "upload_time": "2025-10-20T13:09:36",
            "upload_time_iso_8601": "2025-10-20T13:09:36.822106Z",
            "url": "https://files.pythonhosted.org/packages/5c/31/60ea79db1e574ea30e22208810735ec85fc6eebf137336c3f9e1949e3123/pyromark-0.9.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d22b0509eaaef5dab4bbb47a0ff82a7113e8224c6778e813ec354c36be59261a",
                "md5": "a28ef9122386ab526f7adf23ab4f59d3",
                "sha256": "41dd0be7b89bec9cf7c0117117097999baa94ffb92050360ecebea5d8e0916ac"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a28ef9122386ab526f7adf23ab4f59d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 366007,
            "upload_time": "2025-10-20T13:10:33",
            "upload_time_iso_8601": "2025-10-20T13:10:33.171363Z",
            "url": "https://files.pythonhosted.org/packages/d2/2b/0509eaaef5dab4bbb47a0ff82a7113e8224c6778e813ec354c36be59261a/pyromark-0.9.6-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b451b80f28f1f09944494bd1d4eec1967f77c8e27b201de82b6b244fb746ccf",
                "md5": "52fbf51d13bc6af40dd2f0e19ed3e85a",
                "sha256": "271b9048e1827ae33ff33e8012c231c37cf670fdb8ce8b1e846818545545da3f"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "52fbf51d13bc6af40dd2f0e19ed3e85a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 353513,
            "upload_time": "2025-10-20T13:06:38",
            "upload_time_iso_8601": "2025-10-20T13:06:38.253639Z",
            "url": "https://files.pythonhosted.org/packages/5b/45/1b80f28f1f09944494bd1d4eec1967f77c8e27b201de82b6b244fb746ccf/pyromark-0.9.6-cp313-cp313t-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "261d6bd08ae74596d578a698756a600a6b821932a734a164afaab371e12e37ce",
                "md5": "356d0083ebed9cb011aecb2b2fc49ba7",
                "sha256": "8ad598c4a48f3fae349fb5ff71722f031fa6688e8a65dd344e94e1dccb0d7c29"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "356d0083ebed9cb011aecb2b2fc49ba7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 357311,
            "upload_time": "2025-10-20T13:07:14",
            "upload_time_iso_8601": "2025-10-20T13:07:14.460486Z",
            "url": "https://files.pythonhosted.org/packages/26/1d/6bd08ae74596d578a698756a600a6b821932a734a164afaab371e12e37ce/pyromark-0.9.6-cp313-cp313t-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c8b3a715671a8c078db7060e6d8d109798dcfc7834415ec878521663e529ab9",
                "md5": "549248b236981c8341485f52d888f823",
                "sha256": "b332fc9babb09fb6ac21c68491e39ea48cbf5180e5ded859e7a41d81196b7a54"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_28_i686.whl",
            "has_sig": false,
            "md5_digest": "549248b236981c8341485f52d888f823",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 382464,
            "upload_time": "2025-10-20T13:08:00",
            "upload_time_iso_8601": "2025-10-20T13:08:00.869560Z",
            "url": "https://files.pythonhosted.org/packages/4c/8b/3a715671a8c078db7060e6d8d109798dcfc7834415ec878521663e529ab9/pyromark-0.9.6-cp313-cp313t-manylinux_2_28_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d177d2c8f96d4b4482714d897198d89110c1a8a16beed971e8597b4f9c36798b",
                "md5": "7403bcbbd48acfe18bc373512023312c",
                "sha256": "4e095000eb9c86d28cd8a5fede8819d13ec77a7f34015a62b4332db0899d680e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7403bcbbd48acfe18bc373512023312c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 404592,
            "upload_time": "2025-10-20T13:08:54",
            "upload_time_iso_8601": "2025-10-20T13:08:54.468541Z",
            "url": "https://files.pythonhosted.org/packages/d1/77/d2c8f96d4b4482714d897198d89110c1a8a16beed971e8597b4f9c36798b/pyromark-0.9.6-cp313-cp313t-manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13f90831a964eccdb26c8cc0b49b9c62198ca1811071586d028fd2c88d7b7bba",
                "md5": "ead4446f04818864a8f134a77b37a940",
                "sha256": "b316520607198a1b322851067990c67f5bdabf333f1974c8c0e8937d8077e724"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "ead4446f04818864a8f134a77b37a940",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 451134,
            "upload_time": "2025-10-20T13:09:51",
            "upload_time_iso_8601": "2025-10-20T13:09:51.650487Z",
            "url": "https://files.pythonhosted.org/packages/13/f9/0831a964eccdb26c8cc0b49b9c62198ca1811071586d028fd2c88d7b7bba/pyromark-0.9.6-cp313-cp313t-manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a53f75cdaa0f91b1e11709c644ee81d56f25c27b2906ed4e4a80abfceeda74d",
                "md5": "9a3716927772141dbccbeac0ab99a0ae",
                "sha256": "3376a711b6b7018199c3d7ce8210c6aae42a3c25808cf4aebdc4f757c7662037"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a3716927772141dbccbeac0ab99a0ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 366276,
            "upload_time": "2025-10-20T13:10:49",
            "upload_time_iso_8601": "2025-10-20T13:10:49.519064Z",
            "url": "https://files.pythonhosted.org/packages/9a/53/f75cdaa0f91b1e11709c644ee81d56f25c27b2906ed4e4a80abfceeda74d/pyromark-0.9.6-cp313-cp313t-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2dc5b0de225fa65c018bd4d7436eaac42580e6ac3d6e695ad6362cba56bf7f13",
                "md5": "d08839482937165b1d8a373790162f92",
                "sha256": "1657661245c82dab31dc427e44802fbd0c246c33a4406995a83bf8fc60a38650"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-manylinux_2_31_riscv64.whl",
            "has_sig": false,
            "md5_digest": "d08839482937165b1d8a373790162f92",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 370201,
            "upload_time": "2025-10-20T13:09:22",
            "upload_time_iso_8601": "2025-10-20T13:09:22.789261Z",
            "url": "https://files.pythonhosted.org/packages/2d/c5/b0de225fa65c018bd4d7436eaac42580e6ac3d6e695ad6362cba56bf7f13/pyromark-0.9.6-cp313-cp313t-manylinux_2_31_riscv64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86d0f281f3564eabaac5edc0aa79a936b919b6d4c59fb2bcfb2b0e180291c54f",
                "md5": "f297fe9a93cd9609ae63d6d9523a8584",
                "sha256": "891dcdfdce6032a13493a0e5f339bff57dfd3b804882c346264892894660b339"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f297fe9a93cd9609ae63d6d9523a8584",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 534544,
            "upload_time": "2025-10-20T13:06:49",
            "upload_time_iso_8601": "2025-10-20T13:06:49.600187Z",
            "url": "https://files.pythonhosted.org/packages/86/d0/f281f3564eabaac5edc0aa79a936b919b6d4c59fb2bcfb2b0e180291c54f/pyromark-0.9.6-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adc1c6d49cac65bdc29a2f254f5814e974e7df659a62232961911684cc7d6b8a",
                "md5": "51e544f3a8d5892d160db496570a7faf",
                "sha256": "78b924f64e4676a29964b0ab2018fa0d78810ad3e0fd2b5aaa91d101537f35ac"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "51e544f3a8d5892d160db496570a7faf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 622847,
            "upload_time": "2025-10-20T13:07:26",
            "upload_time_iso_8601": "2025-10-20T13:07:26.039895Z",
            "url": "https://files.pythonhosted.org/packages/ad/c1/c6d49cac65bdc29a2f254f5814e974e7df659a62232961911684cc7d6b8a/pyromark-0.9.6-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a515b65e3995ace336bc52587c2ff6239227308f2c07371a82d06e437745e161",
                "md5": "52627e70c77f5e1baf30d93d4e42238c",
                "sha256": "c698027e386e40ffe7695e41c63d5ab1195859780b0c40497f7ed6ddb763e062"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "52627e70c77f5e1baf30d93d4e42238c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 559095,
            "upload_time": "2025-10-20T13:08:13",
            "upload_time_iso_8601": "2025-10-20T13:08:13.479904Z",
            "url": "https://files.pythonhosted.org/packages/a5/15/b65e3995ace336bc52587c2ff6239227308f2c07371a82d06e437745e161/pyromark-0.9.6-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36eb8aa5572f17508b48f30c1d7b5308d90128026cb67b0b9ffe0114024781b8",
                "md5": "4b692c98c20e09fea447b19da5f65ad7",
                "sha256": "8601dde867e31d9d75f790e1af5955900f1b476910474e814c954ec0a411abe5"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4b692c98c20e09fea447b19da5f65ad7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 568348,
            "upload_time": "2025-10-20T13:09:08",
            "upload_time_iso_8601": "2025-10-20T13:09:08.436439Z",
            "url": "https://files.pythonhosted.org/packages/36/eb/8aa5572f17508b48f30c1d7b5308d90128026cb67b0b9ffe0114024781b8/pyromark-0.9.6-cp313-cp313t-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75d7d4c6738a450693ad5ea941a570b7fd7b6a0ae439b3aa21a999a34f7b65e2",
                "md5": "575fe112a84b8e163d10030c0fdfe443",
                "sha256": "fb84ea577b59d376388504d8466ab7fba5188b40cea55fdaaa8095447ed8dc80"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "575fe112a84b8e163d10030c0fdfe443",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 546863,
            "upload_time": "2025-10-20T13:11:06",
            "upload_time_iso_8601": "2025-10-20T13:11:06.371953Z",
            "url": "https://files.pythonhosted.org/packages/75/d7/d4c6738a450693ad5ea941a570b7fd7b6a0ae439b3aa21a999a34f7b65e2/pyromark-0.9.6-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b50346662bc2ed9a6e4095444b3c9b565f4550d037dc3aa80b181024e478c6ee",
                "md5": "028d04456a4cbd5e70e3c69918f89afa",
                "sha256": "8cda6afac3604b772e56ad134a94c26ac68d916dfa5931cd0e0d04751d2f9791"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-win32.whl",
            "has_sig": false,
            "md5_digest": "028d04456a4cbd5e70e3c69918f89afa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 256448,
            "upload_time": "2025-10-20T13:07:39",
            "upload_time_iso_8601": "2025-10-20T13:07:39.479956Z",
            "url": "https://files.pythonhosted.org/packages/b5/03/46662bc2ed9a6e4095444b3c9b565f4550d037dc3aa80b181024e478c6ee/pyromark-0.9.6-cp313-cp313t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9d57f8a6bf7faecc6b6874700a4cec7c638af132ac3539b755bb9befffea602",
                "md5": "7c5d30b8c06a4df8e3f40eda1543291c",
                "sha256": "e2cd3767ec3e5ea73aa5dec1752c759e9020563f212ad9bc9629c89913a8438d"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7c5d30b8c06a4df8e3f40eda1543291c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 269676,
            "upload_time": "2025-10-20T13:10:22",
            "upload_time_iso_8601": "2025-10-20T13:10:22.084923Z",
            "url": "https://files.pythonhosted.org/packages/f9/d5/7f8a6bf7faecc6b6874700a4cec7c638af132ac3539b755bb9befffea602/pyromark-0.9.6-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3588675010e5644820eed0689b648f6647f94b800c70b40829ead9fdd252a45",
                "md5": "a0033f21d6fd04a67cdb01e1354a86b5",
                "sha256": "0df065385a3ad63956e8bcd6192e56abec08228cebf063882f5f3eb6ec73f332"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "a0033f21d6fd04a67cdb01e1354a86b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 253706,
            "upload_time": "2025-10-20T13:06:19",
            "upload_time_iso_8601": "2025-10-20T13:06:19.155813Z",
            "url": "https://files.pythonhosted.org/packages/a3/58/8675010e5644820eed0689b648f6647f94b800c70b40829ead9fdd252a45/pyromark-0.9.6-cp313-cp313t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bf780b10b6a7afb374369d44a8673ee0ba51b620a10c9b98ce9b786dabc2a6f",
                "md5": "8c977e4b1791029a3160c9097e0d4435",
                "sha256": "d4af21c597b4291f9b8306072d618b4cdf91af93f4c8f31d1dbcadc586fea79d"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "8c977e4b1791029a3160c9097e0d4435",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 257190,
            "upload_time": "2025-10-20T13:07:37",
            "upload_time_iso_8601": "2025-10-20T13:07:37.896344Z",
            "url": "https://files.pythonhosted.org/packages/7b/f7/80b10b6a7afb374369d44a8673ee0ba51b620a10c9b98ce9b786dabc2a6f/pyromark-0.9.6-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9a68ae1bdc4c2e96d5c4e56ae5a9abe4f3b6c6288badf7cb30ff4efab4a5690",
                "md5": "0eb093f1f49d099daa48ea75b585ea1e",
                "sha256": "24706869e77d23f4d72479fbfecbc7cf02cad6e9a1bb63ecc8c90dde81ee4310"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0eb093f1f49d099daa48ea75b585ea1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 270542,
            "upload_time": "2025-10-20T13:10:20",
            "upload_time_iso_8601": "2025-10-20T13:10:20.646620Z",
            "url": "https://files.pythonhosted.org/packages/c9/a6/8ae1bdc4c2e96d5c4e56ae5a9abe4f3b6c6288badf7cb30ff4efab4a5690/pyromark-0.9.6-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1b68fd2d1408a539998dfbf32fd17976ff6b4edc97ee02ab31fdd7c5bd8f800",
                "md5": "1bbbf21fea01b070053182a0e69926aa",
                "sha256": "765f87e78c9c478359e0c556d613e9ad3bef7dc5903539770e102a8eab825f0d"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "1bbbf21fea01b070053182a0e69926aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 254919,
            "upload_time": "2025-10-20T13:06:16",
            "upload_time_iso_8601": "2025-10-20T13:06:16.839951Z",
            "url": "https://files.pythonhosted.org/packages/d1/b6/8fd2d1408a539998dfbf32fd17976ff6b4edc97ee02ab31fdd7c5bd8f800/pyromark-0.9.6-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b17ad404db46f80307efcfb2a3c3411d3df6b66e4cc31c40f2f2f1bc609d159",
                "md5": "f95c2f9862ce1549cc547ef910f0a245",
                "sha256": "15e75dfff5f82092653ceaf2527470a3746500ff8a2870dc32abc6c2875ad186"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f95c2f9862ce1549cc547ef910f0a245",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 343605,
            "upload_time": "2025-10-20T13:10:08",
            "upload_time_iso_8601": "2025-10-20T13:10:08.685303Z",
            "url": "https://files.pythonhosted.org/packages/2b/17/ad404db46f80307efcfb2a3c3411d3df6b66e4cc31c40f2f2f1bc609d159/pyromark-0.9.6-cp314-cp314-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b7c0e4671a85f5539fc2d600a49a80d135aea0728e9ff1cdb65d40cf04ec00d",
                "md5": "90c0eeb65e1d4eb956dd40f5a5386cc3",
                "sha256": "b50bc19b13afc52f434ba515866df2a1abb4fcc41346503816fb62fd37f19ee0"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "90c0eeb65e1d4eb956dd40f5a5386cc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 321591,
            "upload_time": "2025-10-20T13:06:09",
            "upload_time_iso_8601": "2025-10-20T13:06:09.282606Z",
            "url": "https://files.pythonhosted.org/packages/1b/7c/0e4671a85f5539fc2d600a49a80d135aea0728e9ff1cdb65d40cf04ec00d/pyromark-0.9.6-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86ec8dd89cc84b5a0898e92ed1d2219c50b44db71667ffb2db1fac374abbf41b",
                "md5": "05688a14e64875ddb6aadfb5d481d984",
                "sha256": "83b9666ba7a4cb04d0ee50e2ceb3ca785717a66432bfc2d6b506c1128ab73354"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "05688a14e64875ddb6aadfb5d481d984",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 353750,
            "upload_time": "2025-10-20T13:06:28",
            "upload_time_iso_8601": "2025-10-20T13:06:28.745742Z",
            "url": "https://files.pythonhosted.org/packages/86/ec/8dd89cc84b5a0898e92ed1d2219c50b44db71667ffb2db1fac374abbf41b/pyromark-0.9.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd5b1c29c873d22a0272600e7c1d05fbebe729e3ef05ebfcb2281975b4a3979d",
                "md5": "fb59e8bde402b5fcc8b320cf165a8819",
                "sha256": "048bd9a200029785a36d61c8298e5f5e1bd8e158984738c93c041c9950a01ccf"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fb59e8bde402b5fcc8b320cf165a8819",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 358610,
            "upload_time": "2025-10-20T13:07:04",
            "upload_time_iso_8601": "2025-10-20T13:07:04.329391Z",
            "url": "https://files.pythonhosted.org/packages/bd/5b/1c29c873d22a0272600e7c1d05fbebe729e3ef05ebfcb2281975b4a3979d/pyromark-0.9.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07e318975b6d263e540557361de25f4f0b69429aa675ec295034254affe21743",
                "md5": "167a166067978c09bcec720aac8f8f67",
                "sha256": "e034fee77bc32f112cd7d6b87f9cb3ad98bb8acf085b01cc8f7d166500fb5c62"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "167a166067978c09bcec720aac8f8f67",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 383391,
            "upload_time": "2025-10-20T13:07:51",
            "upload_time_iso_8601": "2025-10-20T13:07:51.148784Z",
            "url": "https://files.pythonhosted.org/packages/07/e3/18975b6d263e540557361de25f4f0b69429aa675ec295034254affe21743/pyromark-0.9.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17dbdd720741918d5e563f73ca65a9d502deb635e7d6a602efbd724311b7d3ba",
                "md5": "ddec46a8fe3b3a5a7a367a63d64d541a",
                "sha256": "8410cca8c32910f06fdf5ccfbaf21059566d53471005f4a66a9ea6af081e716a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ddec46a8fe3b3a5a7a367a63d64d541a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 405410,
            "upload_time": "2025-10-20T13:08:40",
            "upload_time_iso_8601": "2025-10-20T13:08:40.744021Z",
            "url": "https://files.pythonhosted.org/packages/17/db/dd720741918d5e563f73ca65a9d502deb635e7d6a602efbd724311b7d3ba/pyromark-0.9.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e76fff7a3b2ab961cf9fc7a7442fc0db00801a56908b72af142513fa587342b8",
                "md5": "cd68c55a1a809c9571c1b10e6fd36463",
                "sha256": "d95afb4e30a5795282c15a55760bfd111aa079870db28609118048bd7e7646ac"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "cd68c55a1a809c9571c1b10e6fd36463",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 414923,
            "upload_time": "2025-10-20T13:08:27",
            "upload_time_iso_8601": "2025-10-20T13:08:27.226598Z",
            "url": "https://files.pythonhosted.org/packages/e7/6f/ff7a3b2ab961cf9fc7a7442fc0db00801a56908b72af142513fa587342b8/pyromark-0.9.6-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21d7b9e0eb7473e3fa1f109d18a36ae0f8e448eaf6559d203cad14233fbf6279",
                "md5": "722884ae030b1c368a74e86797221e9d",
                "sha256": "55dd8bbfad4b5c837ed17fae4717579400e0aa5f8893b4cb72d296d6d2a26042"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "722884ae030b1c368a74e86797221e9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 453204,
            "upload_time": "2025-10-20T13:09:38",
            "upload_time_iso_8601": "2025-10-20T13:09:38.353218Z",
            "url": "https://files.pythonhosted.org/packages/21/d7/b9e0eb7473e3fa1f109d18a36ae0f8e448eaf6559d203cad14233fbf6279/pyromark-0.9.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f73c6cf9125884d36857feef7ca48b79bdc20ede4d443de063fe4ca116310a82",
                "md5": "d97a340aca2d36111e81ce3269e16ab5",
                "sha256": "6610e7ba1f56ef89d439756d78ca257f68c2d109b7277b4f15843ac843f39e22"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d97a340aca2d36111e81ce3269e16ab5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 367105,
            "upload_time": "2025-10-20T13:10:34",
            "upload_time_iso_8601": "2025-10-20T13:10:34.941648Z",
            "url": "https://files.pythonhosted.org/packages/f7/3c/6cf9125884d36857feef7ca48b79bdc20ede4d443de063fe4ca116310a82/pyromark-0.9.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c4f05348c2c2169623f49b9afadf88e5b65e088c20ce96a1e5780669548b186",
                "md5": "6a5ac24632e54930848f4d05642b7328",
                "sha256": "fa4496dcc8efe156d15fdf5e9ceca37d237e3041206162eb4b158bd4d6fa5b19"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6a5ac24632e54930848f4d05642b7328",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 354608,
            "upload_time": "2025-10-20T13:06:39",
            "upload_time_iso_8601": "2025-10-20T13:06:39.398919Z",
            "url": "https://files.pythonhosted.org/packages/9c/4f/05348c2c2169623f49b9afadf88e5b65e088c20ce96a1e5780669548b186/pyromark-0.9.6-cp314-cp314-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3f0b263548f498ecc4e3a5ba9bfa8c1f385883c195a4f3bf931742cd93cef47",
                "md5": "58b6086d563b7b1dc668aebd10c4c525",
                "sha256": "17c5209b7092a0b9171b34e1b6cf7dd9558c8aa6942acff42e0e4d04160ce52b"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "58b6086d563b7b1dc668aebd10c4c525",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 358550,
            "upload_time": "2025-10-20T13:07:15",
            "upload_time_iso_8601": "2025-10-20T13:07:15.679775Z",
            "url": "https://files.pythonhosted.org/packages/a3/f0/b263548f498ecc4e3a5ba9bfa8c1f385883c195a4f3bf931742cd93cef47/pyromark-0.9.6-cp314-cp314-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afe345b9e1b277eb97e7474e40a919b862a88575c8bfcad7663a14b856be999e",
                "md5": "ffb6c391cd4820ee7fedb69b9cd56c6a",
                "sha256": "33225a1a28be36fcf4afff6112c1bff5254199f4ec056bb8fd19eb0eb67c4946"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_28_i686.whl",
            "has_sig": false,
            "md5_digest": "ffb6c391cd4820ee7fedb69b9cd56c6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 383742,
            "upload_time": "2025-10-20T13:08:02",
            "upload_time_iso_8601": "2025-10-20T13:08:02.758434Z",
            "url": "https://files.pythonhosted.org/packages/af/e3/45b9e1b277eb97e7474e40a919b862a88575c8bfcad7663a14b856be999e/pyromark-0.9.6-cp314-cp314-manylinux_2_28_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60d63630bdb97245b017cae208dd85bd84869c0b5a16dfc6ec32c4b236f33ff0",
                "md5": "4d141d36ae19f2be6cbe6bf52ecacc71",
                "sha256": "47e2d87cfb86be887885a79aef329bc18f6f6eab66300e0c67a65cdf1770b97f"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4d141d36ae19f2be6cbe6bf52ecacc71",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 405472,
            "upload_time": "2025-10-20T13:08:55",
            "upload_time_iso_8601": "2025-10-20T13:08:55.806590Z",
            "url": "https://files.pythonhosted.org/packages/60/d6/3630bdb97245b017cae208dd85bd84869c0b5a16dfc6ec32c4b236f33ff0/pyromark-0.9.6-cp314-cp314-manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b50a2d1c4d58d345a038c5cb1e0bb70e4d73783af36ea543805aa6839e35a4f",
                "md5": "c5e74046fae36b95626ca9abc47d423d",
                "sha256": "425dc4c628be99451911f0fea47ab4e3859dea9696184fb2880d1a56947fb22f"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "c5e74046fae36b95626ca9abc47d423d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 452671,
            "upload_time": "2025-10-20T13:09:53",
            "upload_time_iso_8601": "2025-10-20T13:09:53.152497Z",
            "url": "https://files.pythonhosted.org/packages/5b/50/a2d1c4d58d345a038c5cb1e0bb70e4d73783af36ea543805aa6839e35a4f/pyromark-0.9.6-cp314-cp314-manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf424884ce312d7987385ee65dbef61c7bf485429ce2f50d8babceb2e3d082fc",
                "md5": "ab643d1a6cd65574612a03e6c301b9b2",
                "sha256": "436debadd2e9755126419548c72a5f41aa1f7e5598996fafb625aa388a0a041f"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab643d1a6cd65574612a03e6c301b9b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 367408,
            "upload_time": "2025-10-20T13:10:51",
            "upload_time_iso_8601": "2025-10-20T13:10:51.128510Z",
            "url": "https://files.pythonhosted.org/packages/bf/42/4884ce312d7987385ee65dbef61c7bf485429ce2f50d8babceb2e3d082fc/pyromark-0.9.6-cp314-cp314-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3767fcfa323b33dc9c84a1355c1a0d7b61533104cfef84940ec2206cf32e682f",
                "md5": "09c723b6724f83246904cd10876742b3",
                "sha256": "438fa4dbbf077298337c1217e680d6d1bce802022cfd920079594b4373055490"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-manylinux_2_31_riscv64.whl",
            "has_sig": false,
            "md5_digest": "09c723b6724f83246904cd10876742b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 371862,
            "upload_time": "2025-10-20T13:09:24",
            "upload_time_iso_8601": "2025-10-20T13:09:24.228006Z",
            "url": "https://files.pythonhosted.org/packages/37/67/fcfa323b33dc9c84a1355c1a0d7b61533104cfef84940ec2206cf32e682f/pyromark-0.9.6-cp314-cp314-manylinux_2_31_riscv64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "607990fb682752670aab1944525d163753d30d614b53c780c8412bf2edaf76a9",
                "md5": "c7984a8bd2bce6fa8c934ec1791593eb",
                "sha256": "63b03f8dcb54b5c85fb00de21d0421f73a1f50548e01686d6962ba7e421bdaf1"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c7984a8bd2bce6fa8c934ec1791593eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 535629,
            "upload_time": "2025-10-20T13:06:50",
            "upload_time_iso_8601": "2025-10-20T13:06:50.780484Z",
            "url": "https://files.pythonhosted.org/packages/60/79/90fb682752670aab1944525d163753d30d614b53c780c8412bf2edaf76a9/pyromark-0.9.6-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43aa43bfc68d6c98cc3dec1f9023b1544cf8c7b158f2d2a57ffb91eea8973426",
                "md5": "76d9a65c921bf15bf21b9bb291d6d5c9",
                "sha256": "02210f158794d80271fd048b1ee6b0792928d2503c1d0cdeb9cb58977f8ff92c"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "76d9a65c921bf15bf21b9bb291d6d5c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 623990,
            "upload_time": "2025-10-20T13:07:27",
            "upload_time_iso_8601": "2025-10-20T13:07:27.522391Z",
            "url": "https://files.pythonhosted.org/packages/43/aa/43bfc68d6c98cc3dec1f9023b1544cf8c7b158f2d2a57ffb91eea8973426/pyromark-0.9.6-cp314-cp314-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ebe2eab623d4be2d79523e13f8c659a84174831ead987a704fe7e2d4bd79affd",
                "md5": "e15d58957d24a78e13f5fd74d7b77e7c",
                "sha256": "beaa2c42662c84d3c307d4992524664270f34ac43bd3a33e67f9874ad997e4cc"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e15d58957d24a78e13f5fd74d7b77e7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 560221,
            "upload_time": "2025-10-20T13:08:14",
            "upload_time_iso_8601": "2025-10-20T13:08:14.820094Z",
            "url": "https://files.pythonhosted.org/packages/eb/e2/eab623d4be2d79523e13f8c659a84174831ead987a704fe7e2d4bd79affd/pyromark-0.9.6-cp314-cp314-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31c0f4ab43e0db39b135ab22206a7bbd80f90341bd9c5843f451f87072f5913e",
                "md5": "08cb9bb85f6d84322ce7f6816e324a30",
                "sha256": "2725c3fef1e2f59dd80b36395f1fc25523b6a25edd7db8b9bc3aaf456908a328"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "08cb9bb85f6d84322ce7f6816e324a30",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 569240,
            "upload_time": "2025-10-20T13:09:10",
            "upload_time_iso_8601": "2025-10-20T13:09:10.243347Z",
            "url": "https://files.pythonhosted.org/packages/31/c0/f4ab43e0db39b135ab22206a7bbd80f90341bd9c5843f451f87072f5913e/pyromark-0.9.6-cp314-cp314-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac055e9ecc78f52b2f7eb053dfa24cf8eaccd0c278cf9682dafa7e52f8d223e6",
                "md5": "3373892e2c1211ca78d79baf8bdd3a13",
                "sha256": "e2f7cac0c22305ed0ea308ca5bef9211d1a24b0134bf4dbc55437c2fd7e7a35f"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3373892e2c1211ca78d79baf8bdd3a13",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 547950,
            "upload_time": "2025-10-20T13:11:08",
            "upload_time_iso_8601": "2025-10-20T13:11:08.512090Z",
            "url": "https://files.pythonhosted.org/packages/ac/05/5e9ecc78f52b2f7eb053dfa24cf8eaccd0c278cf9682dafa7e52f8d223e6/pyromark-0.9.6-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a9058f5884ce1f392463cf626a76cec6e0d9f6623c79813e665d5310e6016d3",
                "md5": "e420fd0dcb29290be7cac1a90cc999f4",
                "sha256": "d37e64277728d21c53ead7282ac33acf90a9082ff2ab0f041f2d86764651ed0a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e420fd0dcb29290be7cac1a90cc999f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 343195,
            "upload_time": "2025-10-20T13:10:10",
            "upload_time_iso_8601": "2025-10-20T13:10:10.169131Z",
            "url": "https://files.pythonhosted.org/packages/8a/90/58f5884ce1f392463cf626a76cec6e0d9f6623c79813e665d5310e6016d3/pyromark-0.9.6-cp314-cp314t-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5402fa02524991c558e7a7b47e433c48c6f7c8bbee586fe0e43885f521ea54c",
                "md5": "876920304fda9eb91708f11029320f0b",
                "sha256": "e04610e5dc984594e4d8c26179bdd546da8ad58553d3b1f93d2c5c63b977fef4"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "876920304fda9eb91708f11029320f0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 321078,
            "upload_time": "2025-10-20T13:06:10",
            "upload_time_iso_8601": "2025-10-20T13:06:10.421743Z",
            "url": "https://files.pythonhosted.org/packages/f5/40/2fa02524991c558e7a7b47e433c48c6f7c8bbee586fe0e43885f521ea54c/pyromark-0.9.6-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "688ffb9e8d8a48e78d3db30c13e3f5eafe07a070806d96d0f4079ff903a796c2",
                "md5": "a70372c93c3ed13299dad7f2f831d50d",
                "sha256": "ce24ef01acdebeca6d90b1a7de1a6abba9e419334f48903de50a4121dc6436f1"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a70372c93c3ed13299dad7f2f831d50d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 352529,
            "upload_time": "2025-10-20T13:06:29",
            "upload_time_iso_8601": "2025-10-20T13:06:29.838786Z",
            "url": "https://files.pythonhosted.org/packages/68/8f/fb9e8d8a48e78d3db30c13e3f5eafe07a070806d96d0f4079ff903a796c2/pyromark-0.9.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d77018d4308ad7d123894d04b8c0b53875904be982863c032c73e21d815d6f32",
                "md5": "fbc3f996881a3301c5c7f5e4efb01004",
                "sha256": "809418d5187dc9030d88de48b61afdcb5526e4c72fd6446f976d038bdaba0da1"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fbc3f996881a3301c5c7f5e4efb01004",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 358269,
            "upload_time": "2025-10-20T13:07:05",
            "upload_time_iso_8601": "2025-10-20T13:07:05.547682Z",
            "url": "https://files.pythonhosted.org/packages/d7/70/18d4308ad7d123894d04b8c0b53875904be982863c032c73e21d815d6f32/pyromark-0.9.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6538fce4a686eaf5180b65d887794012cc9627814a32d67be83795808ac90069",
                "md5": "24528307ea1bc19dce8625f521325f7a",
                "sha256": "21bbd6856246655c844c1ca276abfc87d6159279bdfd9a6289ed3a0b1c807122"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "24528307ea1bc19dce8625f521325f7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 382585,
            "upload_time": "2025-10-20T13:07:52",
            "upload_time_iso_8601": "2025-10-20T13:07:52.392471Z",
            "url": "https://files.pythonhosted.org/packages/65/38/fce4a686eaf5180b65d887794012cc9627814a32d67be83795808ac90069/pyromark-0.9.6-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c39b4e673d03a3821a5597ca7d7a39aca89a078bc1fd184d42ea9046ad06b87f",
                "md5": "290a64d5affab654bb7f94374e592563",
                "sha256": "eab45ff8649b63039f440731c8edb6ed8073071d3c2f7a3f46ad03c44bca0337"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "290a64d5affab654bb7f94374e592563",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 404258,
            "upload_time": "2025-10-20T13:08:42",
            "upload_time_iso_8601": "2025-10-20T13:08:42.965461Z",
            "url": "https://files.pythonhosted.org/packages/c3/9b/4e673d03a3821a5597ca7d7a39aca89a078bc1fd184d42ea9046ad06b87f/pyromark-0.9.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f26eb39ec0d04eb42192a8700c6ab11dc6d055d6511e7a6013672f5c4d62633d",
                "md5": "76c6aca3664dc41de999643b6c7c8999",
                "sha256": "afbc895a958d3e8c2e614e221646043b66f6d380a75b909f1137f9bcb5a5d4cf"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "76c6aca3664dc41de999643b6c7c8999",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 413170,
            "upload_time": "2025-10-20T13:08:28",
            "upload_time_iso_8601": "2025-10-20T13:08:28.558352Z",
            "url": "https://files.pythonhosted.org/packages/f2/6e/b39ec0d04eb42192a8700c6ab11dc6d055d6511e7a6013672f5c4d62633d/pyromark-0.9.6-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8b28457eea2e75ee7c4aa07ef1c321babd18449a7b44149b5865869130ae74f",
                "md5": "7f3606d27456b5a02bd8ca85341ef4e7",
                "sha256": "cf690a705ca4d802f728e44426036f040fbd227b6638d85786052a720b9ef7fc"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7f3606d27456b5a02bd8ca85341ef4e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 451264,
            "upload_time": "2025-10-20T13:09:39",
            "upload_time_iso_8601": "2025-10-20T13:09:39.809085Z",
            "url": "https://files.pythonhosted.org/packages/c8/b2/8457eea2e75ee7c4aa07ef1c321babd18449a7b44149b5865869130ae74f/pyromark-0.9.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ba521bef7989b458ac768ff292b4f4b779add9d311815a48c599332ebae3ab0",
                "md5": "96e1d28afc9d91796bd05061ebd4f745",
                "sha256": "8b7fdd151cb52a6e2db997d0064b3de2402de0f7dc82583199115785a434b7e8"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96e1d28afc9d91796bd05061ebd4f745",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 365834,
            "upload_time": "2025-10-20T13:10:36",
            "upload_time_iso_8601": "2025-10-20T13:10:36.533397Z",
            "url": "https://files.pythonhosted.org/packages/0b/a5/21bef7989b458ac768ff292b4f4b779add9d311815a48c599332ebae3ab0/pyromark-0.9.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "385bf0c6c1226dd7a9dda1affb563a0eb92efd6675d150c15b9a5faa6b8fd4f9",
                "md5": "04f56f90ee5e937c544b1582e6402ed5",
                "sha256": "6b50cd90ea7ac1715a5227642a3ada641a97d4bb0760a9b5090dbd18f13d76bd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "04f56f90ee5e937c544b1582e6402ed5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 353346,
            "upload_time": "2025-10-20T13:06:40",
            "upload_time_iso_8601": "2025-10-20T13:06:40.501226Z",
            "url": "https://files.pythonhosted.org/packages/38/5b/f0c6c1226dd7a9dda1affb563a0eb92efd6675d150c15b9a5faa6b8fd4f9/pyromark-0.9.6-cp314-cp314t-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cb094ff03d2a778f5eddcadfbc882618292ceddd1c6ca92e79aad70f95bc9f9",
                "md5": "a42e8efc5dd11304db18f6c3007064af",
                "sha256": "d4c89447c17f15c5babfcae5407cd41c98f380e0820772c2a849cf0927906fa8"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a42e8efc5dd11304db18f6c3007064af",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 358294,
            "upload_time": "2025-10-20T13:07:16",
            "upload_time_iso_8601": "2025-10-20T13:07:16.777775Z",
            "url": "https://files.pythonhosted.org/packages/5c/b0/94ff03d2a778f5eddcadfbc882618292ceddd1c6ca92e79aad70f95bc9f9/pyromark-0.9.6-cp314-cp314t-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "563dd50f54be27d4248ab21ab080b933b652ac39da0382f76a66d12ccadd91fc",
                "md5": "81c49cf640e596a3dc042b89f753e5d0",
                "sha256": "d8803d21e4d1a79807d729213b639b019c3b6b082199cc20876dbd52520677ea"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_28_i686.whl",
            "has_sig": false,
            "md5_digest": "81c49cf640e596a3dc042b89f753e5d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 382987,
            "upload_time": "2025-10-20T13:08:04",
            "upload_time_iso_8601": "2025-10-20T13:08:04.008094Z",
            "url": "https://files.pythonhosted.org/packages/56/3d/d50f54be27d4248ab21ab080b933b652ac39da0382f76a66d12ccadd91fc/pyromark-0.9.6-cp314-cp314t-manylinux_2_28_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "103d31c3e0b796514e4b9944075bcaad760afa897d3fae1b42d9d52cfbcbbec2",
                "md5": "c06516888bf3c0d88da1514f80e54a50",
                "sha256": "0ace182e4440ecf658a825c7d8f29e0385e53fcbc62ca514dcbfa2fb41640310"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c06516888bf3c0d88da1514f80e54a50",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 404334,
            "upload_time": "2025-10-20T13:08:57",
            "upload_time_iso_8601": "2025-10-20T13:08:57.258317Z",
            "url": "https://files.pythonhosted.org/packages/10/3d/31c3e0b796514e4b9944075bcaad760afa897d3fae1b42d9d52cfbcbbec2/pyromark-0.9.6-cp314-cp314t-manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5930d405a6adf401bb5abfd9d7ab050e720ef67442eb1d84795fe37f92d16bce",
                "md5": "8e892a7bb6f13643f3811574030231d2",
                "sha256": "93514a4a54a4389aecb7985dc9ae41f639660bde02ebf43d9203436ed0c3f8ad"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "8e892a7bb6f13643f3811574030231d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 451949,
            "upload_time": "2025-10-20T13:09:54",
            "upload_time_iso_8601": "2025-10-20T13:09:54.658540Z",
            "url": "https://files.pythonhosted.org/packages/59/30/d405a6adf401bb5abfd9d7ab050e720ef67442eb1d84795fe37f92d16bce/pyromark-0.9.6-cp314-cp314t-manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0979a286bf9e6f343665b43164ce22e7e936be93febd3eeb77b92f8094ef89a1",
                "md5": "2f7b551377f88a6bc3ae557ec70d8bd7",
                "sha256": "e48bf85ff4848c407b03a5a35a106c01361e95db2e84902daf749850ec187193"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f7b551377f88a6bc3ae557ec70d8bd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 366167,
            "upload_time": "2025-10-20T13:10:53",
            "upload_time_iso_8601": "2025-10-20T13:10:53.280364Z",
            "url": "https://files.pythonhosted.org/packages/09/79/a286bf9e6f343665b43164ce22e7e936be93febd3eeb77b92f8094ef89a1/pyromark-0.9.6-cp314-cp314t-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f9b9f1a0186d5d60876fa4447fc854239d1f00a59ce5117447684f6f9149b18",
                "md5": "203a3a5fa50b325d87ed83752dc7e71f",
                "sha256": "92cf784bc12224e0b04641d4cd15621c07949c2dc33c751c5fea8dc4494406f9"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-manylinux_2_31_riscv64.whl",
            "has_sig": false,
            "md5_digest": "203a3a5fa50b325d87ed83752dc7e71f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 370141,
            "upload_time": "2025-10-20T13:09:25",
            "upload_time_iso_8601": "2025-10-20T13:09:25.930065Z",
            "url": "https://files.pythonhosted.org/packages/3f/9b/9f1a0186d5d60876fa4447fc854239d1f00a59ce5117447684f6f9149b18/pyromark-0.9.6-cp314-cp314t-manylinux_2_31_riscv64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00b7d177a7226cd2b61bac613fcd7e6318ff70c3a00d2e22a30dc94a02e6db97",
                "md5": "a47cc966b8e357614b5f80a3bb63f01c",
                "sha256": "0bf351c7ff47bdf2835009b4f52f632a7be20cd5257cb9823fbc37b31ab16a54"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a47cc966b8e357614b5f80a3bb63f01c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 534442,
            "upload_time": "2025-10-20T13:06:51",
            "upload_time_iso_8601": "2025-10-20T13:06:51.987173Z",
            "url": "https://files.pythonhosted.org/packages/00/b7/d177a7226cd2b61bac613fcd7e6318ff70c3a00d2e22a30dc94a02e6db97/pyromark-0.9.6-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca139511fe8f77ed76c9cab52e9be64a61fdc37d8850908a7eb9c518b7a19ec2",
                "md5": "11b943f089b66f7a2e9c4b5d51cbfc22",
                "sha256": "cac776d8fa672632d3ac3dd5628ba7541f6b42cb0a003236c377cd3dea791291"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "11b943f089b66f7a2e9c4b5d51cbfc22",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 623668,
            "upload_time": "2025-10-20T13:07:29",
            "upload_time_iso_8601": "2025-10-20T13:07:29.258077Z",
            "url": "https://files.pythonhosted.org/packages/ca/13/9511fe8f77ed76c9cab52e9be64a61fdc37d8850908a7eb9c518b7a19ec2/pyromark-0.9.6-cp314-cp314t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5b7590fd5c9f1a03b519974281472b76282575e139adf5f37d373e3c835ea5f",
                "md5": "8455769f729bdfb48264932b507acb7f",
                "sha256": "10f94e434eabf3e4b1b464e9618de8286eb8d8a277c112c78b739df286e92a95"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8455769f729bdfb48264932b507acb7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 559649,
            "upload_time": "2025-10-20T13:08:16",
            "upload_time_iso_8601": "2025-10-20T13:08:16.057198Z",
            "url": "https://files.pythonhosted.org/packages/b5/b7/590fd5c9f1a03b519974281472b76282575e139adf5f37d373e3c835ea5f/pyromark-0.9.6-cp314-cp314t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8096df00a531fa60d600f1ff388f7f2805e652beddc986e6b2df004d98364bc",
                "md5": "16e2357f658388f0fec21c06bf888381",
                "sha256": "fb25819ecc59402ae133e96c579fafbb80b997f47261613b58feade1e70ba421"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "16e2357f658388f0fec21c06bf888381",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 568160,
            "upload_time": "2025-10-20T13:09:11",
            "upload_time_iso_8601": "2025-10-20T13:09:11.728399Z",
            "url": "https://files.pythonhosted.org/packages/b8/09/6df00a531fa60d600f1ff388f7f2805e652beddc986e6b2df004d98364bc/pyromark-0.9.6-cp314-cp314t-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a0ac3f7b3ded0da0f0be32f198bd53905651dcfbab55d3e21a4283f33c4cb78",
                "md5": "e4cf43205e18fcac1fbaedd3cf5a003c",
                "sha256": "229599bd898614f7878dd9579fe10c87af2653632d722096644d0b1cf2d4f9e9"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4cf43205e18fcac1fbaedd3cf5a003c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 546754,
            "upload_time": "2025-10-20T13:11:10",
            "upload_time_iso_8601": "2025-10-20T13:11:10.274373Z",
            "url": "https://files.pythonhosted.org/packages/3a/0a/c3f7b3ded0da0f0be32f198bd53905651dcfbab55d3e21a4283f33c4cb78/pyromark-0.9.6-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a38a8c4b27ce54c74505e3b4d46b3fd53cfe7f543d0c498b5123a8a8a7b498aa",
                "md5": "b874bd8cb594b039f34ef578e23f6ae8",
                "sha256": "a9f036590160e3fd0bbb08a61e0a97be51a6f56e43505982d674dae7a1a8a55d"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "b874bd8cb594b039f34ef578e23f6ae8",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 256287,
            "upload_time": "2025-10-20T13:07:41",
            "upload_time_iso_8601": "2025-10-20T13:07:41.576507Z",
            "url": "https://files.pythonhosted.org/packages/a3/8a/8c4b27ce54c74505e3b4d46b3fd53cfe7f543d0c498b5123a8a8a7b498aa/pyromark-0.9.6-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c17d76ad4db636687ee716caa1d75ffbf9f38d73da07412d1f3d1f9a3ade2fc1",
                "md5": "686299babe88aa31442f2a66b3698330",
                "sha256": "a4c9c0c147d9faa09d5d85b12fcb27b6e138f68a1f924b60a1d2f608854681f2"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "686299babe88aa31442f2a66b3698330",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 269645,
            "upload_time": "2025-10-20T13:10:23",
            "upload_time_iso_8601": "2025-10-20T13:10:23.621649Z",
            "url": "https://files.pythonhosted.org/packages/c1/7d/76ad4db636687ee716caa1d75ffbf9f38d73da07412d1f3d1f9a3ade2fc1/pyromark-0.9.6-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9490f2f45593d40c57916ab8588bc3d5b54a8e6778e339622007a2fce5da913",
                "md5": "91885c951b8fa7f4acebfcfa9d16b63e",
                "sha256": "c890f4e1a32f26becfdf2657975cb954181d93c0c5fd0fee0fb16dd456083529"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "91885c951b8fa7f4acebfcfa9d16b63e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 253792,
            "upload_time": "2025-10-20T13:06:20",
            "upload_time_iso_8601": "2025-10-20T13:06:20.520765Z",
            "url": "https://files.pythonhosted.org/packages/d9/49/0f2f45593d40c57916ab8588bc3d5b54a8e6778e339622007a2fce5da913/pyromark-0.9.6-cp314-cp314t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f0e12a2fd1ad74fa5c584d363f0dd5c4902b7594b65a871bb06bc824d13a799",
                "md5": "ea9aecddfa6aa889078858ee189aed2f",
                "sha256": "86817e97b77515469c80fe7ee311b601e4c072915e5fde7de28b788f69297500"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp314-cp314-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "ea9aecddfa6aa889078858ee189aed2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 254825,
            "upload_time": "2025-10-20T13:06:18",
            "upload_time_iso_8601": "2025-10-20T13:06:18.132621Z",
            "url": "https://files.pythonhosted.org/packages/9f/0e/12a2fd1ad74fa5c584d363f0dd5c4902b7594b65a871bb06bc824d13a799/pyromark-0.9.6-cp314-cp314-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "635166cbaed0aa4bd0c265c7dcc6c477f82703459bf77cb4103eb67f0e5b2759",
                "md5": "345b3936b828faca255fb803ee9c3cda",
                "sha256": "6f65a4ce7dcaf1a99863a189058d5d735493ba3cd4af3154e2d6e906f0145c9b"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "345b3936b828faca255fb803ee9c3cda",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 345220,
            "upload_time": "2025-10-20T13:10:11",
            "upload_time_iso_8601": "2025-10-20T13:10:11.748469Z",
            "url": "https://files.pythonhosted.org/packages/63/51/66cbaed0aa4bd0c265c7dcc6c477f82703459bf77cb4103eb67f0e5b2759/pyromark-0.9.6-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f90ad6292bf3167c72981bbdcf51251c40b8b0c496afac34ce374eb46b338af8",
                "md5": "4355ab0ee8e6b75229841d2501ff45a3",
                "sha256": "753ba05082f3d9a48de242a1c23cadc4e8ea993e50ef722df6009d6ab6da5c9a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4355ab0ee8e6b75229841d2501ff45a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 323506,
            "upload_time": "2025-10-20T13:06:11",
            "upload_time_iso_8601": "2025-10-20T13:06:11.803734Z",
            "url": "https://files.pythonhosted.org/packages/f9/0a/d6292bf3167c72981bbdcf51251c40b8b0c496afac34ce374eb46b338af8/pyromark-0.9.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0eb9acbcd7ad0517e2b59e5fd76e93a6e12e0bdfbf8ab40a8c31caa47e132411",
                "md5": "8ca6e7b52f98be552a57252cc50a4231",
                "sha256": "7266fb67a4d6452b6392547cf7a1b3fccd9bcff0972f48b91a5847dec767c637"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ca6e7b52f98be552a57252cc50a4231",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 357059,
            "upload_time": "2025-10-20T13:06:31",
            "upload_time_iso_8601": "2025-10-20T13:06:31.086442Z",
            "url": "https://files.pythonhosted.org/packages/0e/b9/acbcd7ad0517e2b59e5fd76e93a6e12e0bdfbf8ab40a8c31caa47e132411/pyromark-0.9.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "084f186639c158f2675435d1d033282c651b9ac62dad6ca3e645ffe6a4ddf973",
                "md5": "649c7f2fae0f85c2298764f945dbcbc5",
                "sha256": "01346385d9cf734b8adae9b28f8b10e6ea58789562e95229b6be793bec9fd407"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "649c7f2fae0f85c2298764f945dbcbc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 362294,
            "upload_time": "2025-10-20T13:07:06",
            "upload_time_iso_8601": "2025-10-20T13:07:06.629120Z",
            "url": "https://files.pythonhosted.org/packages/08/4f/186639c158f2675435d1d033282c651b9ac62dad6ca3e645ffe6a4ddf973/pyromark-0.9.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3450689de26fb41c07c26010f96cc3291e11b2ad114a884db8bf8a6818ffd79",
                "md5": "efce4c7a5931d330582b38d7dfe4b338",
                "sha256": "4ec85537bd6e2869dbde01cf6f001531cfbae29be9458a68d9d9a72f9609f570"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "efce4c7a5931d330582b38d7dfe4b338",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 385661,
            "upload_time": "2025-10-20T13:07:53",
            "upload_time_iso_8601": "2025-10-20T13:07:53.577811Z",
            "url": "https://files.pythonhosted.org/packages/e3/45/0689de26fb41c07c26010f96cc3291e11b2ad114a884db8bf8a6818ffd79/pyromark-0.9.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3bafeba8849c68e9541da512662073190a50ffc9dbef411deaa7c31e047542b5",
                "md5": "4e338ec5217529db5224acfd65a9f3a6",
                "sha256": "478542f7be0405cf48b366dacac4b245ec15acc44a49c98eaeb0ca27cda5dd41"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4e338ec5217529db5224acfd65a9f3a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 409481,
            "upload_time": "2025-10-20T13:08:44",
            "upload_time_iso_8601": "2025-10-20T13:08:44.274635Z",
            "url": "https://files.pythonhosted.org/packages/3b/af/eba8849c68e9541da512662073190a50ffc9dbef411deaa7c31e047542b5/pyromark-0.9.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b74934846875eada16e294dfb06caa750223201e4c7c83e113e75616b6f38e2",
                "md5": "a57cbaf63b2f591ad44fc07803cfd1bf",
                "sha256": "eb88eb60dd3df65d2d42c58fdcf0d1719b192b5b1ea30a4a6e160e9e573429f0"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "a57cbaf63b2f591ad44fc07803cfd1bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 418414,
            "upload_time": "2025-10-20T13:08:29",
            "upload_time_iso_8601": "2025-10-20T13:08:29.828430Z",
            "url": "https://files.pythonhosted.org/packages/1b/74/934846875eada16e294dfb06caa750223201e4c7c83e113e75616b6f38e2/pyromark-0.9.6-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26b619eff6e077e5559c50251580e32d96a0a978de579c66f93866b85acfd4b3",
                "md5": "cd221f351ecc44255ad481125d98d884",
                "sha256": "10ac1ce969206a7caadc5d0e19c570ab484bbb525307fc974100384e3c32a63a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "cd221f351ecc44255ad481125d98d884",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 459492,
            "upload_time": "2025-10-20T13:09:41",
            "upload_time_iso_8601": "2025-10-20T13:09:41.267430Z",
            "url": "https://files.pythonhosted.org/packages/26/b6/19eff6e077e5559c50251580e32d96a0a978de579c66f93866b85acfd4b3/pyromark-0.9.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a94e11dc6eece7b9953c3e2bb6c642ad4fa85e655b5a82ba54b792fe827bb483",
                "md5": "d3efd6e4be48074143a643b0ba1eefe1",
                "sha256": "4827ccac1d19223b64c8e73387ea41afa12a7774cd60206aa786ceea3f4e33fd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3efd6e4be48074143a643b0ba1eefe1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 369627,
            "upload_time": "2025-10-20T13:10:38",
            "upload_time_iso_8601": "2025-10-20T13:10:38.024459Z",
            "url": "https://files.pythonhosted.org/packages/a9/4e/11dc6eece7b9953c3e2bb6c642ad4fa85e655b5a82ba54b792fe827bb483/pyromark-0.9.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a1cb58ace83556d956f3cf7f40484fb926f1217764c6829d936df410ddec276",
                "md5": "c672e2afadb7cc1cdd8cd75fac81a770",
                "sha256": "3ad25c98c374ee36ce6e57b80c8e4be1d27972c56f65e5a3e024c5820c879b8b"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c672e2afadb7cc1cdd8cd75fac81a770",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 358212,
            "upload_time": "2025-10-20T13:06:41",
            "upload_time_iso_8601": "2025-10-20T13:06:41.649105Z",
            "url": "https://files.pythonhosted.org/packages/0a/1c/b58ace83556d956f3cf7f40484fb926f1217764c6829d936df410ddec276/pyromark-0.9.6-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e4f05c7fddd7ba363f08528b8fbc9d75c3955f85b853588a8a915916a6b6bd8",
                "md5": "fc447ef3d393265d01836b161ec16300",
                "sha256": "fa608adadb0663fbeed608cfa122bcd8df696563a32f578612f7d755f94c600e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fc447ef3d393265d01836b161ec16300",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 362229,
            "upload_time": "2025-10-20T13:07:17",
            "upload_time_iso_8601": "2025-10-20T13:07:17.947680Z",
            "url": "https://files.pythonhosted.org/packages/7e/4f/05c7fddd7ba363f08528b8fbc9d75c3955f85b853588a8a915916a6b6bd8/pyromark-0.9.6-cp39-cp39-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "492e75cfaa20cf44a1b994e2c179b9982887e2b918952e814fa8163dfad231c2",
                "md5": "eb25b53b2d8b1b7320bc7fe17d6cffc1",
                "sha256": "067b67c38d92954f1d40bcfd3be697765ce61412e1f3f591f9a8f6cbe53b892c"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_28_i686.whl",
            "has_sig": false,
            "md5_digest": "eb25b53b2d8b1b7320bc7fe17d6cffc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 386008,
            "upload_time": "2025-10-20T13:08:05",
            "upload_time_iso_8601": "2025-10-20T13:08:05.755624Z",
            "url": "https://files.pythonhosted.org/packages/49/2e/75cfaa20cf44a1b994e2c179b9982887e2b918952e814fa8163dfad231c2/pyromark-0.9.6-cp39-cp39-manylinux_2_28_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70b273dcde2d6c5a2af47165e176aabdde24afaaed93501a7d40d6d58d227ab6",
                "md5": "c0b1aacc24747822513ffb0881f117b0",
                "sha256": "d66a62e4a76a4823f0261d1f5f3727f2a51c41ede977e6337a01d2a7e822dabb"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c0b1aacc24747822513ffb0881f117b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 409584,
            "upload_time": "2025-10-20T13:08:58",
            "upload_time_iso_8601": "2025-10-20T13:08:58.678323Z",
            "url": "https://files.pythonhosted.org/packages/70/b2/73dcde2d6c5a2af47165e176aabdde24afaaed93501a7d40d6d58d227ab6/pyromark-0.9.6-cp39-cp39-manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb6e872e1b4523af9664ba3ddde15a9ddc19c7697331e30853fec911e5e1279d",
                "md5": "c3f1d56ed34f2ce0853994a2864e628e",
                "sha256": "54d378793b3a0d2b6f3f4cf0488f8ad7f991d2111024e0318ddb999244108d5e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "c3f1d56ed34f2ce0853994a2864e628e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 460025,
            "upload_time": "2025-10-20T13:09:56",
            "upload_time_iso_8601": "2025-10-20T13:09:56.156359Z",
            "url": "https://files.pythonhosted.org/packages/fb/6e/872e1b4523af9664ba3ddde15a9ddc19c7697331e30853fec911e5e1279d/pyromark-0.9.6-cp39-cp39-manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "532efb38f8efb4d1e43e74736778cddfac27dfde23ee3b4ac08ef2e63987191e",
                "md5": "399b4bb90ecc98f2f349b242bb3707db",
                "sha256": "c07f9e7ea723fa8a9705875f4b214a73ccd364b5ded3a1748e14778f5476de70"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "399b4bb90ecc98f2f349b242bb3707db",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 369900,
            "upload_time": "2025-10-20T13:10:55",
            "upload_time_iso_8601": "2025-10-20T13:10:55.171641Z",
            "url": "https://files.pythonhosted.org/packages/53/2e/fb38f8efb4d1e43e74736778cddfac27dfde23ee3b4ac08ef2e63987191e/pyromark-0.9.6-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49e2be450130808d23a82ecf4dfa5391ca4c26a52992364a87a46093a6cec404",
                "md5": "5c606737cc39f845caff5ff786768ed2",
                "sha256": "f6c9062c54f175caffe2240fcb8e40090dd152c18362870d3669d6a5d64b5bfd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-manylinux_2_31_riscv64.whl",
            "has_sig": false,
            "md5_digest": "5c606737cc39f845caff5ff786768ed2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 374874,
            "upload_time": "2025-10-20T13:09:27",
            "upload_time_iso_8601": "2025-10-20T13:09:27.650174Z",
            "url": "https://files.pythonhosted.org/packages/49/e2/be450130808d23a82ecf4dfa5391ca4c26a52992364a87a46093a6cec404/pyromark-0.9.6-cp39-cp39-manylinux_2_31_riscv64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f563d75cf6650b801a8e6f2e91d81e1032f532dc82ef9bb951cf0cac81490a4c",
                "md5": "58049d9ce47b4c91fdaff02f3078a4e3",
                "sha256": "3454b5d42a6bd5d45fbae25e21e38dd51caf4555620993dc58167280035a59a9"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "58049d9ce47b4c91fdaff02f3078a4e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 538854,
            "upload_time": "2025-10-20T13:06:53",
            "upload_time_iso_8601": "2025-10-20T13:06:53.108379Z",
            "url": "https://files.pythonhosted.org/packages/f5/63/d75cf6650b801a8e6f2e91d81e1032f532dc82ef9bb951cf0cac81490a4c/pyromark-0.9.6-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4352f8103319aee99d842cff65993a558ef9c31e91ba9e3165698b65b4190b5d",
                "md5": "d3986c15e96e18ebe23332f2b42a2359",
                "sha256": "fb06291ddde7d29624b95b644809503733e4334ec7c2878efd6c0ba411649fbd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d3986c15e96e18ebe23332f2b42a2359",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 627939,
            "upload_time": "2025-10-20T13:07:30",
            "upload_time_iso_8601": "2025-10-20T13:07:30.507479Z",
            "url": "https://files.pythonhosted.org/packages/43/52/f8103319aee99d842cff65993a558ef9c31e91ba9e3165698b65b4190b5d/pyromark-0.9.6-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33534233bb4fcbf11ea7522193484212f9ce22f6addbe14556c1f865d513aeab",
                "md5": "822e6943bca92e1ae778bb974a33f842",
                "sha256": "3560b346dd7b5252da2b229f261cf49283f3f053d8c015890a87e3293674ff5a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "822e6943bca92e1ae778bb974a33f842",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 562143,
            "upload_time": "2025-10-20T13:08:17",
            "upload_time_iso_8601": "2025-10-20T13:08:17.299765Z",
            "url": "https://files.pythonhosted.org/packages/33/53/4233bb4fcbf11ea7522193484212f9ce22f6addbe14556c1f865d513aeab/pyromark-0.9.6-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37836a9df6042e645c0fde01824768047c251944397ca1ea702a9b16ad4ca0f9",
                "md5": "28019a716194bcdf4f6bb949caef9a51",
                "sha256": "7710285173aa8595fef891b783a03225c7538ebf8147e12e3c9aa023f79e7a8c"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "28019a716194bcdf4f6bb949caef9a51",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 572700,
            "upload_time": "2025-10-20T13:09:13",
            "upload_time_iso_8601": "2025-10-20T13:09:13.456925Z",
            "url": "https://files.pythonhosted.org/packages/37/83/6a9df6042e645c0fde01824768047c251944397ca1ea702a9b16ad4ca0f9/pyromark-0.9.6-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca80159f9a40d08ddc9871a215a2d5ca4ac29efd599d41bfb1263238f8c632cd",
                "md5": "eb302f00966c50da51832888c5e0867d",
                "sha256": "6e2ac58b647346feec051b0cd9d232da87684289cec415b9787cf9f680fb2a29"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb302f00966c50da51832888c5e0867d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 550488,
            "upload_time": "2025-10-20T13:11:12",
            "upload_time_iso_8601": "2025-10-20T13:11:12.174820Z",
            "url": "https://files.pythonhosted.org/packages/ca/80/159f9a40d08ddc9871a215a2d5ca4ac29efd599d41bfb1263238f8c632cd/pyromark-0.9.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9cf1475a27f911155de727577fc4db9a25689fdfabe7651ec115661bd67e490",
                "md5": "a3fff2a2187d02b45e7b7cb2cda43ec0",
                "sha256": "0e9b10f73fd53b65549794c639fd5a91b9b4c880377d2ae44c00e920995bddc0"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "a3fff2a2187d02b45e7b7cb2cda43ec0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 260121,
            "upload_time": "2025-10-20T13:07:42",
            "upload_time_iso_8601": "2025-10-20T13:07:42.775856Z",
            "url": "https://files.pythonhosted.org/packages/b9/cf/1475a27f911155de727577fc4db9a25689fdfabe7651ec115661bd67e490/pyromark-0.9.6-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c910a253dc02fb65341803773bcb9a0b545795a461c3799ceeb590dced1b23d",
                "md5": "c3e9832313255c1e457ac26d603d0bf4",
                "sha256": "6b14f7018abe619cc470eecb7dcf76410456471fc3e1c4ddb37b03162adcfc3e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c3e9832313255c1e457ac26d603d0bf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 272005,
            "upload_time": "2025-10-20T13:10:25",
            "upload_time_iso_8601": "2025-10-20T13:10:25.502866Z",
            "url": "https://files.pythonhosted.org/packages/9c/91/0a253dc02fb65341803773bcb9a0b545795a461c3799ceeb590dced1b23d/pyromark-0.9.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03ffdbaab9de6948e38fba2799e65a17caebe3f34db6da608c71ae7ab26524fc",
                "md5": "2506b09b99cbe68785543c6e0b65c29d",
                "sha256": "b6e8611ac2909c4e95045cb62164b0d438741d1c723dc70fc94ffb834b54838a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2506b09b99cbe68785543c6e0b65c29d",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 344611,
            "upload_time": "2025-10-20T13:10:13",
            "upload_time_iso_8601": "2025-10-20T13:10:13.579998Z",
            "url": "https://files.pythonhosted.org/packages/03/ff/dbaab9de6948e38fba2799e65a17caebe3f34db6da608c71ae7ab26524fc/pyromark-0.9.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f2a36f15fd2d988d44696b893ff46c2ad0a9f28f801ae52633d03becd7e6e58",
                "md5": "36d494c72b72c0ca1894a5dacece7a25",
                "sha256": "97d691e2966da97e614013ed164343609dca9ca31e1abd1a85f50b0f1e9ade35"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "36d494c72b72c0ca1894a5dacece7a25",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 322771,
            "upload_time": "2025-10-20T13:06:13",
            "upload_time_iso_8601": "2025-10-20T13:06:13.278517Z",
            "url": "https://files.pythonhosted.org/packages/8f/2a/36f15fd2d988d44696b893ff46c2ad0a9f28f801ae52633d03becd7e6e58/pyromark-0.9.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc1fb94ef761de92b863a6c476198c5b9af8698dc1b6b6c7da7b242146bde02a",
                "md5": "e73eccfcfcd2ff4cd1bfb12e406c8c7c",
                "sha256": "2e06d59f6453c11f43d29034d97935e1b6f2ce753e5c89c6a353a7cfe5b2c994"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e73eccfcfcd2ff4cd1bfb12e406c8c7c",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 356420,
            "upload_time": "2025-10-20T13:06:32",
            "upload_time_iso_8601": "2025-10-20T13:06:32.233912Z",
            "url": "https://files.pythonhosted.org/packages/dc/1f/b94ef761de92b863a6c476198c5b9af8698dc1b6b6c7da7b242146bde02a/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2729825641bf975ed18e5b8ed35f2003d5d3a363b9613ed7686867bc9a24889d",
                "md5": "a44c5d45de6143f7a5259938a8f415df",
                "sha256": "9ee907fb0fbd594937a1fae7f256aa3f0b633320d61c25107ddabc31ee5fef53"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a44c5d45de6143f7a5259938a8f415df",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 361192,
            "upload_time": "2025-10-20T13:07:07",
            "upload_time_iso_8601": "2025-10-20T13:07:07.892691Z",
            "url": "https://files.pythonhosted.org/packages/27/29/825641bf975ed18e5b8ed35f2003d5d3a363b9613ed7686867bc9a24889d/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3eec032077ce29dd70c51dcf173cff9de98e99b1328ad5af7a062b51d1ca5386",
                "md5": "9721d90e1033c7c36bd004b99a00c25b",
                "sha256": "3e929d515cc5fff69851c12002cd4cc323367eeb0faab012ec7ab07de08bab6f"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9721d90e1033c7c36bd004b99a00c25b",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 385450,
            "upload_time": "2025-10-20T13:07:54",
            "upload_time_iso_8601": "2025-10-20T13:07:54.737379Z",
            "url": "https://files.pythonhosted.org/packages/3e/ec/032077ce29dd70c51dcf173cff9de98e99b1328ad5af7a062b51d1ca5386/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5da0f9dabe8b26f43212a3e6625c910566916bd9162b6101f31ac491a1d9bf98",
                "md5": "0240a2b209232eb3fa974e1c22559174",
                "sha256": "294a051a8333cbf98d93bfc1f6f9497f1cb011ace5f9549d8c62344e934930dd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0240a2b209232eb3fa974e1c22559174",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 408738,
            "upload_time": "2025-10-20T13:08:45",
            "upload_time_iso_8601": "2025-10-20T13:08:45.799849Z",
            "url": "https://files.pythonhosted.org/packages/5d/a0/f9dabe8b26f43212a3e6625c910566916bd9162b6101f31ac491a1d9bf98/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0cc17b515b1639402bb4ed2c8ef3d93288343993f248377dc3816e0c1af5d031",
                "md5": "ca73db270f605dd75041fa80cda9163b",
                "sha256": "b9f80b4f11a8eeb64818ee73f1beb32e198964d2821cc791475ab72d136114b2"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "ca73db270f605dd75041fa80cda9163b",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 417950,
            "upload_time": "2025-10-20T13:08:31",
            "upload_time_iso_8601": "2025-10-20T13:08:31.150346Z",
            "url": "https://files.pythonhosted.org/packages/0c/c1/7b515b1639402bb4ed2c8ef3d93288343993f248377dc3816e0c1af5d031/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4064ce2e8d40ca70998a44f24c2cad143d30430596ceba27390993d8556f957e",
                "md5": "8b86faf0eec49b150846bbfd526419c1",
                "sha256": "36be6f30ecbb8678992857257954eb4f3d50b82d6b164e796454cefba1b83b2c"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8b86faf0eec49b150846bbfd526419c1",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 457642,
            "upload_time": "2025-10-20T13:09:43",
            "upload_time_iso_8601": "2025-10-20T13:09:43.341009Z",
            "url": "https://files.pythonhosted.org/packages/40/64/ce2e8d40ca70998a44f24c2cad143d30430596ceba27390993d8556f957e/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bf001ade3c1793547a316c871b2fd406941950866beafbd88b2f69ecf78b9be",
                "md5": "42bd39207c11d72c5a05e665c4158ef7",
                "sha256": "7af7cd062bf2307e70829c65520a3a867934854dd1612058360198caebc20507"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42bd39207c11d72c5a05e665c4158ef7",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 368964,
            "upload_time": "2025-10-20T13:10:40",
            "upload_time_iso_8601": "2025-10-20T13:10:40.028201Z",
            "url": "https://files.pythonhosted.org/packages/4b/f0/01ade3c1793547a316c871b2fd406941950866beafbd88b2f69ecf78b9be/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9052fafa4b1924923e85097af6d6c49c9b18489aef1ea4402bf276387dfb0e3e",
                "md5": "7eae5024083093517c862f5fcd3f0fac",
                "sha256": "40776fdbbb5916c544f0e08a10f8ea9c6e1d93ce70037f0a0a03fc6cff7415a9"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7eae5024083093517c862f5fcd3f0fac",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 357606,
            "upload_time": "2025-10-20T13:06:43",
            "upload_time_iso_8601": "2025-10-20T13:06:43.086759Z",
            "url": "https://files.pythonhosted.org/packages/90/52/fafa4b1924923e85097af6d6c49c9b18489aef1ea4402bf276387dfb0e3e/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f7f6f495579f0b493734288fc921877fada7219380d9d1b728c105839eb32c2a",
                "md5": "10a518e81b4a53b1f954c81b77d8aabb",
                "sha256": "16546fcfa0a703e44d39e940f3d0130423b7a9cc1b9e791ed145dcca37f44fd4"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "10a518e81b4a53b1f954c81b77d8aabb",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 361157,
            "upload_time": "2025-10-20T13:07:19",
            "upload_time_iso_8601": "2025-10-20T13:07:19.040840Z",
            "url": "https://files.pythonhosted.org/packages/f7/f6/f495579f0b493734288fc921877fada7219380d9d1b728c105839eb32c2a/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7744ed19a18e40e14b7c01b2cec064b8d81a999f7f16cd2f78b64c7e0b9f30d3",
                "md5": "296e8bc5a41bd9902b221d8ac2de59ba",
                "sha256": "c961b2220ef8eb40b207f19f3ec1baee25ad34788dc09e9a2f0964e31fbc18d4"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_i686.whl",
            "has_sig": false,
            "md5_digest": "296e8bc5a41bd9902b221d8ac2de59ba",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 385776,
            "upload_time": "2025-10-20T13:08:07",
            "upload_time_iso_8601": "2025-10-20T13:08:07.016634Z",
            "url": "https://files.pythonhosted.org/packages/77/44/ed19a18e40e14b7c01b2cec064b8d81a999f7f16cd2f78b64c7e0b9f30d3/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "801b1e1e3de27bb5669d895041252aa264772bfc0d752874be779464fea1b04c",
                "md5": "6d46c12f59bfcb259ae1da155dde4786",
                "sha256": "18881603fc8393b1e73df10a58fa4c1ebaea6707121f920c055ddbd70e014468"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6d46c12f59bfcb259ae1da155dde4786",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 408704,
            "upload_time": "2025-10-20T13:09:00",
            "upload_time_iso_8601": "2025-10-20T13:09:00.160120Z",
            "url": "https://files.pythonhosted.org/packages/80/1b/1e1e3de27bb5669d895041252aa264772bfc0d752874be779464fea1b04c/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef242422a672edbe4cd75835656e0cf4d3fe0ce47b48a4cbaf3a9d5897eb6e4e",
                "md5": "6c49b56f0e9a2fbec3c9c6c0d64552bf",
                "sha256": "38bcbf0f84c8d420f6168079b07721af6e309754d02647cf3fe7d1b5ddcff8fe"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "6c49b56f0e9a2fbec3c9c6c0d64552bf",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 457955,
            "upload_time": "2025-10-20T13:09:57",
            "upload_time_iso_8601": "2025-10-20T13:09:57.611293Z",
            "url": "https://files.pythonhosted.org/packages/ef/24/2422a672edbe4cd75835656e0cf4d3fe0ce47b48a4cbaf3a9d5897eb6e4e/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48bc44ba113c66a0caf132898212f317c75cc22629263c7e8d3e41edac12d3da",
                "md5": "76c16189baffc872ab6c5533a674858f",
                "sha256": "eac5fadb7c5c441b6914daaf3b13b4ff9ca7ba88fe62823bd1d0754abcdaac98"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76c16189baffc872ab6c5533a674858f",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 369234,
            "upload_time": "2025-10-20T13:10:57",
            "upload_time_iso_8601": "2025-10-20T13:10:57.055712Z",
            "url": "https://files.pythonhosted.org/packages/48/bc/44ba113c66a0caf132898212f317c75cc22629263c7e8d3e41edac12d3da/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2fbcb3a04838e0538df4bbcb70bcdfe1487845d95a800dc36bc88c5daefb4b70",
                "md5": "accccba3bec4c7d67f0ba4ed6dcfbc49",
                "sha256": "cea4b11c60ac5a5e54fe5a538da6a3a23aa87f0275a9728cc10c59b6c5465791"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl",
            "has_sig": false,
            "md5_digest": "accccba3bec4c7d67f0ba4ed6dcfbc49",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 374362,
            "upload_time": "2025-10-20T13:09:29",
            "upload_time_iso_8601": "2025-10-20T13:09:29.042750Z",
            "url": "https://files.pythonhosted.org/packages/2f/bc/b3a04838e0538df4bbcb70bcdfe1487845d95a800dc36bc88c5daefb4b70/pyromark-0.9.6-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0fb4c7ff44ae65656f97e16dfa86d35c8caf7239362deb74d2138eb34b026f52",
                "md5": "a186c42acb55687e789d44bf287cd732",
                "sha256": "824c79eabe5d9dd63e1af1edca8fe142429c5c6d3d2932fc02dcd12daa0db3bd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a186c42acb55687e789d44bf287cd732",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 538403,
            "upload_time": "2025-10-20T13:06:54",
            "upload_time_iso_8601": "2025-10-20T13:06:54.633381Z",
            "url": "https://files.pythonhosted.org/packages/0f/b4/c7ff44ae65656f97e16dfa86d35c8caf7239362deb74d2138eb34b026f52/pyromark-0.9.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3dca58b54e6f4747b75ade853a11aa6f2c30c85f3d994ac5b6e1c62a79ee77eb",
                "md5": "7ce58772aef356ef99b72bf8a8b068a4",
                "sha256": "107fd1ddc168f034a6480d2464caadf9f81639710af428dbab13f2e17acab1dd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7ce58772aef356ef99b72bf8a8b068a4",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 626693,
            "upload_time": "2025-10-20T13:07:32",
            "upload_time_iso_8601": "2025-10-20T13:07:32.099395Z",
            "url": "https://files.pythonhosted.org/packages/3d/ca/58b54e6f4747b75ade853a11aa6f2c30c85f3d994ac5b6e1c62a79ee77eb/pyromark-0.9.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f5a2741f6e4f08b2ddcddf0b5ccc6507980a8bbe24b973104df7a77f679f981",
                "md5": "17c0f09f9c614da32002cb3d5a84923a",
                "sha256": "4af95582db508e388870427a5dfb4fee7ed52b9c3659acc5976ca73e386e8d02"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "17c0f09f9c614da32002cb3d5a84923a",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 562264,
            "upload_time": "2025-10-20T13:08:18",
            "upload_time_iso_8601": "2025-10-20T13:08:18.596513Z",
            "url": "https://files.pythonhosted.org/packages/2f/5a/2741f6e4f08b2ddcddf0b5ccc6507980a8bbe24b973104df7a77f679f981/pyromark-0.9.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0ef70a942d5ea05cb91c041e8b1d7054d1cd0278d7ef8aff676f3ae9a2dac58",
                "md5": "22d0ecf66f41101a2ff4bad5d5df3ba3",
                "sha256": "a9f8df0cf495cd6fe822c6e42aa259885274f41368fb891f126d9b4ba6a9bcd9"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "22d0ecf66f41101a2ff4bad5d5df3ba3",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 572067,
            "upload_time": "2025-10-20T13:09:15",
            "upload_time_iso_8601": "2025-10-20T13:09:15.297339Z",
            "url": "https://files.pythonhosted.org/packages/b0/ef/70a942d5ea05cb91c041e8b1d7054d1cd0278d7ef8aff676f3ae9a2dac58/pyromark-0.9.6-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34cb45a9eda874b60ba5838cb470da1b842378f54fdfa078cffab039fdedf788",
                "md5": "2fc3800009ad463b1c9b7cb721ec3004",
                "sha256": "bb1ba1b6085e336125882814f6e8278e3bf8dbf63adbc1b7e6b1b4296a48831f"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2fc3800009ad463b1c9b7cb721ec3004",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 549841,
            "upload_time": "2025-10-20T13:11:13",
            "upload_time_iso_8601": "2025-10-20T13:11:13.922414Z",
            "url": "https://files.pythonhosted.org/packages/34/cb/45a9eda874b60ba5838cb470da1b842378f54fdfa078cffab039fdedf788/pyromark-0.9.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bd787c7bfe22015b4864b41846f115c2a1eb2a8036007c7de15ba2e048d3eea",
                "md5": "dab7ea593735bca7709951cf93c57699",
                "sha256": "646a629bdd4041831f8f5a2f0f1012e4d762037bfcf8c382cc6c726a37486517"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.6.tar.gz",
            "has_sig": false,
            "md5_digest": "dab7ea593735bca7709951cf93c57699",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 10024,
            "upload_time": "2025-10-20T13:09:59",
            "upload_time_iso_8601": "2025-10-20T13:09:59.112573Z",
            "url": "https://files.pythonhosted.org/packages/4b/d7/87c7bfe22015b4864b41846f115c2a1eb2a8036007c7de15ba2e048d3eea/pyromark-0.9.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-20 13:09:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "monosans",
    "github_project": "pyromark",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyromark"
}
        
Elapsed time: 2.75830s