pyromark


Namepyromark JSON
Version 0.9.3 PyPI version JSON
download
home_pageNone
SummaryBlazingly fast Markdown parser
upload_time2025-07-29 13:46:33
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": null,
    "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.3",
    "project_urls": {
        "documentation": "https://pyromark.readthedocs.io",
        "repository": "https://github.com/monosans/pyromark"
    },
    "split_keywords": [
        "converter",
        " html"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89c5494b78a0483d99b299d663525345e5f90da5b8d8e4487324b1e9aebdcf8b",
                "md5": "f3d7ae6c56787f06f987cb0a757a8f73",
                "sha256": "65f543b59078f43f0f8f382d9dc9424aa426c2b4f67d31d959b43a0e4dc30323"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f3d7ae6c56787f06f987cb0a757a8f73",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 324688,
            "upload_time": "2025-07-29T13:46:33",
            "upload_time_iso_8601": "2025-07-29T13:46:33.892728Z",
            "url": "https://files.pythonhosted.org/packages/89/c5/494b78a0483d99b299d663525345e5f90da5b8d8e4487324b1e9aebdcf8b/pyromark-0.9.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb6e92fd52f9c8085f4ad32bb74523248aca6c6276d04b812b72e7dc4f1a0c0d",
                "md5": "6931aaede66ab7ee6bb8a3445a759f4f",
                "sha256": "68051ab764b58269045456305ccf3ca4c7705396c22ca9f8b34ebefdb1e45b40"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6931aaede66ab7ee6bb8a3445a759f4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 356873,
            "upload_time": "2025-07-29T13:46:52",
            "upload_time_iso_8601": "2025-07-29T13:46:52.392670Z",
            "url": "https://files.pythonhosted.org/packages/bb/6e/92fd52f9c8085f4ad32bb74523248aca6c6276d04b812b72e7dc4f1a0c0d/pyromark-0.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc8c98651963eab473199743dd3007d9be261934ca7a13ae7f546b0878d1501f",
                "md5": "a6234f505696e9fa73a4b19f722673d9",
                "sha256": "fab20ec6383d5066f2d9d5e22e5b8503365ea731d4812b04cf421031411ae2ea"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a6234f505696e9fa73a4b19f722673d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 361621,
            "upload_time": "2025-07-29T13:47:45",
            "upload_time_iso_8601": "2025-07-29T13:47:45.815855Z",
            "url": "https://files.pythonhosted.org/packages/dc/8c/98651963eab473199743dd3007d9be261934ca7a13ae7f546b0878d1501f/pyromark-0.9.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3417c8b38e49c266db2ce99dd6d51521e315ae5a70b404edfd2c92a736489f36",
                "md5": "3669c8f11a86d95ca6c31bc9d8364862",
                "sha256": "f4997a4f355c012d4c50c29bdca4ab935a13ef58544e558a4f7d81e0a670928f"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3669c8f11a86d95ca6c31bc9d8364862",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 383841,
            "upload_time": "2025-07-29T13:49:01",
            "upload_time_iso_8601": "2025-07-29T13:49:01.104214Z",
            "url": "https://files.pythonhosted.org/packages/34/17/c8b38e49c266db2ce99dd6d51521e315ae5a70b404edfd2c92a736489f36/pyromark-0.9.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "327de8891eb6daedce698e8664a98d6e604dcfbbcd2c1241c0cda88609788f10",
                "md5": "7f741f7dc99a7f40e011ae8caf00433d",
                "sha256": "b190b196e2606f1e0051466543acce3a6475821ae8b8ea979933065eaca4048a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "7f741f7dc99a7f40e011ae8caf00433d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 417607,
            "upload_time": "2025-07-29T13:49:40",
            "upload_time_iso_8601": "2025-07-29T13:49:40.780856Z",
            "url": "https://files.pythonhosted.org/packages/32/7d/e8891eb6daedce698e8664a98d6e604dcfbbcd2c1241c0cda88609788f10/pyromark-0.9.3-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77a86e01ae0ad9bb42c0d17dabfb9504c8e2477d8efbf74d5de13b213b88d31a",
                "md5": "294b17a9be6874d1b1691c1c5faac890",
                "sha256": "e06d195cbd0dd926e285840e065d280fa50e0497ac6ccb9188ec506c74821d6a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "294b17a9be6874d1b1691c1c5faac890",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 358028,
            "upload_time": "2025-07-29T13:47:10",
            "upload_time_iso_8601": "2025-07-29T13:47:10.479375Z",
            "url": "https://files.pythonhosted.org/packages/77/a8/6e01ae0ad9bb42c0d17dabfb9504c8e2477d8efbf74d5de13b213b88d31a/pyromark-0.9.3-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00771736eb2f88beec4431ab713ffe7e07ba6d3db9ca7f710b18feff043c6317",
                "md5": "7968d50b620565c0a9bf1d597b32b4f8",
                "sha256": "3e369bd672d5c9ef3c9f4397475273bb39fd7968fd4510d5c8d8cad2e80e0499"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7968d50b620565c0a9bf1d597b32b4f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 361601,
            "upload_time": "2025-07-29T13:48:09",
            "upload_time_iso_8601": "2025-07-29T13:48:09.543757Z",
            "url": "https://files.pythonhosted.org/packages/00/77/1736eb2f88beec4431ab713ffe7e07ba6d3db9ca7f710b18feff043c6317/pyromark-0.9.3-cp310-cp310-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8cf676328675abbb92bc3de81ba559d09e4e579db4eaee510c487abd9f4148c4",
                "md5": "0532e1f80d128deef639c2cf8003d7ea",
                "sha256": "fa32d668281f54c20a3f1ae86b3a77291273f81302f469809fd2c32fa01be428"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0532e1f80d128deef639c2cf8003d7ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 537590,
            "upload_time": "2025-07-29T13:47:27",
            "upload_time_iso_8601": "2025-07-29T13:47:27.316888Z",
            "url": "https://files.pythonhosted.org/packages/8c/f6/76328675abbb92bc3de81ba559d09e4e579db4eaee510c487abd9f4148c4/pyromark-0.9.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f377d7c8b3c2e5d0b903cc459e1ee25bc31ffd645c8b5822e517e16d9dc6743b",
                "md5": "95bffa7dd56535f660d5048e4c3efd7d",
                "sha256": "0a19bb206c2fc5362022fe0822ed082add30b3af2a16ef5e7c9a204261682b4a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "95bffa7dd56535f660d5048e4c3efd7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 625448,
            "upload_time": "2025-07-29T13:48:28",
            "upload_time_iso_8601": "2025-07-29T13:48:28.736865Z",
            "url": "https://files.pythonhosted.org/packages/f3/77/d7c8b3c2e5d0b903cc459e1ee25bc31ffd645c8b5822e517e16d9dc6743b/pyromark-0.9.3-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a43aafabe6ee59e94524e874e896557fbad5866d11f5316a4fe7caa19447e7f",
                "md5": "8f172d0e685d96c7a89da59f74a8957c",
                "sha256": "224865a2ee0dfe0ea7306dee8d91ed6fb0b8ea2f6c260d3b1f2b224c63d463fd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8f172d0e685d96c7a89da59f74a8957c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 561791,
            "upload_time": "2025-07-29T13:49:21",
            "upload_time_iso_8601": "2025-07-29T13:49:21.046385Z",
            "url": "https://files.pythonhosted.org/packages/7a/43/aafabe6ee59e94524e874e896557fbad5866d11f5316a4fe7caa19447e7f/pyromark-0.9.3-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94e29e37e5e3447a105d267e224ff5886e04773449978775c12f65ed2cb01482",
                "md5": "ada41310cd7ec7df23c0e8fd81b80ea2",
                "sha256": "873f0e450aee4c5cba5f8301a6af70c3e9793001ecb6c6cc3a945f09f17c0d75"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ada41310cd7ec7df23c0e8fd81b80ea2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 260594,
            "upload_time": "2025-07-29T13:48:49",
            "upload_time_iso_8601": "2025-07-29T13:48:49.687771Z",
            "url": "https://files.pythonhosted.org/packages/94/e2/9e37e5e3447a105d267e224ff5886e04773449978775c12f65ed2cb01482/pyromark-0.9.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9dae5290b59dd9d8f675e7759f5932d126c8971088b0ac4908bab3d0abc3ee99",
                "md5": "2a2c81488f962fcdabd7761d207b8c71",
                "sha256": "391ce13a2f0c0ea422497e68fc990abc7b5826764ace45ec767b9e9f216561d0"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2a2c81488f962fcdabd7761d207b8c71",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 324386,
            "upload_time": "2025-07-29T13:46:36",
            "upload_time_iso_8601": "2025-07-29T13:46:36.143834Z",
            "url": "https://files.pythonhosted.org/packages/9d/ae/5290b59dd9d8f675e7759f5932d126c8971088b0ac4908bab3d0abc3ee99/pyromark-0.9.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "983383d8df5fd4cd03b75603443da8933a13e69fdb7ac91dafeb5a48bbdae855",
                "md5": "0eb8fbcc6509f33b3bd28502e6606a5e",
                "sha256": "935fac8908069d476b57fdc570a95559cfc52ee7db8abc41b49823108ef2ca2e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0eb8fbcc6509f33b3bd28502e6606a5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 356925,
            "upload_time": "2025-07-29T13:46:54",
            "upload_time_iso_8601": "2025-07-29T13:46:54.141997Z",
            "url": "https://files.pythonhosted.org/packages/98/33/83d8df5fd4cd03b75603443da8933a13e69fdb7ac91dafeb5a48bbdae855/pyromark-0.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf318ccae0aa3bf0344a673d867b8b06546440e9b8630690e60bffb9b78fd577",
                "md5": "445ea8877e1f98f220f093516f61faaa",
                "sha256": "dc5ba42966d8aa17aa5c475c655070707472d9d486ab508ae7155d4f4ed931ff"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "445ea8877e1f98f220f093516f61faaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 361239,
            "upload_time": "2025-07-29T13:47:47",
            "upload_time_iso_8601": "2025-07-29T13:47:47.261806Z",
            "url": "https://files.pythonhosted.org/packages/cf/31/8ccae0aa3bf0344a673d867b8b06546440e9b8630690e60bffb9b78fd577/pyromark-0.9.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "136a43170061c9b0f606c3243c71a9dd67ddd1039f0327676b5888ea9f548a96",
                "md5": "ff80a688bd6a956af9c035cf0bde48c3",
                "sha256": "066f0b48f902cb26e9c5fa7a3042809d46ab85b7b9358945682a479c3e011c72"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ff80a688bd6a956af9c035cf0bde48c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 383964,
            "upload_time": "2025-07-29T13:49:02",
            "upload_time_iso_8601": "2025-07-29T13:49:02.847289Z",
            "url": "https://files.pythonhosted.org/packages/13/6a/43170061c9b0f606c3243c71a9dd67ddd1039f0327676b5888ea9f548a96/pyromark-0.9.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d41ecf0c0ed7865a3baf686e46b20698517d77fdbe929bac983dac6ca4c7329",
                "md5": "7ffcd7a4d6299a68d59f99c60f278e3f",
                "sha256": "c72fa35a2a33e843346f9f2e732314e17837146579b2e657ffb83f71fbf9abbb"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "7ffcd7a4d6299a68d59f99c60f278e3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 416803,
            "upload_time": "2025-07-29T13:49:42",
            "upload_time_iso_8601": "2025-07-29T13:49:42.550781Z",
            "url": "https://files.pythonhosted.org/packages/3d/41/ecf0c0ed7865a3baf686e46b20698517d77fdbe929bac983dac6ca4c7329/pyromark-0.9.3-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b33b9bbd3fb9dc2a151d313fac24b6ddaa529312ef2c3bde0f76ba22680026e7",
                "md5": "1296228d21a85325325be12443b7d37a",
                "sha256": "ab1dacd144bae1a4bb8499a8ca3fe081ec0ec1455a17dc593e7f3fce21528bbd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1296228d21a85325325be12443b7d37a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 358104,
            "upload_time": "2025-07-29T13:47:11",
            "upload_time_iso_8601": "2025-07-29T13:47:11.980336Z",
            "url": "https://files.pythonhosted.org/packages/b3/3b/9bbd3fb9dc2a151d313fac24b6ddaa529312ef2c3bde0f76ba22680026e7/pyromark-0.9.3-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44d7188c0dc779bdb35631b949b3d6ed760a9971dd5e945e8b9b8969d1697f25",
                "md5": "7bf3780a2cb4de163dca1a112b1da2b4",
                "sha256": "258291023f8991d0d587aa4e28d86907b40a2c2a282719f52442e06bfd8b8319"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7bf3780a2cb4de163dca1a112b1da2b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 361220,
            "upload_time": "2025-07-29T13:48:11",
            "upload_time_iso_8601": "2025-07-29T13:48:11.327910Z",
            "url": "https://files.pythonhosted.org/packages/44/d7/188c0dc779bdb35631b949b3d6ed760a9971dd5e945e8b9b8969d1697f25/pyromark-0.9.3-cp311-cp311-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1516a5700d97a8f5490bac217b15bc426d116bc64c5f8dbbda4b79377478d73",
                "md5": "04cb8dcb668eaa3a4d34634a78926f15",
                "sha256": "ff5b2366631854f79319d02b931f1dac21da8f9bba0130c17d5ce5d45dd264af"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "04cb8dcb668eaa3a4d34634a78926f15",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 537672,
            "upload_time": "2025-07-29T13:47:29",
            "upload_time_iso_8601": "2025-07-29T13:47:29.020019Z",
            "url": "https://files.pythonhosted.org/packages/b1/51/6a5700d97a8f5490bac217b15bc426d116bc64c5f8dbbda4b79377478d73/pyromark-0.9.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75ed362f57b7848090421ba4de614d34b19c6f83b49f839faa6be3a83cb8fc50",
                "md5": "f739baed1d5102ac68624a4baf475f12",
                "sha256": "db1e27176765354b82f6dcdfbefcd1b08cf7966cbf8dc58fc62fec96fd5d8314"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f739baed1d5102ac68624a4baf475f12",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 625042,
            "upload_time": "2025-07-29T13:48:30",
            "upload_time_iso_8601": "2025-07-29T13:48:30.401765Z",
            "url": "https://files.pythonhosted.org/packages/75/ed/362f57b7848090421ba4de614d34b19c6f83b49f839faa6be3a83cb8fc50/pyromark-0.9.3-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "61491af6ce2ef46a093bb4bd93e510e5ada5d5c77b7475cc45d93175344a973b",
                "md5": "8f92455b7ed81a3e02984c916a494e58",
                "sha256": "b650283c7f6f73870314b0cd017c13d341d7d342056e48745dbb53e5ef6ffe04"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8f92455b7ed81a3e02984c916a494e58",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 562033,
            "upload_time": "2025-07-29T13:49:22",
            "upload_time_iso_8601": "2025-07-29T13:49:22.825900Z",
            "url": "https://files.pythonhosted.org/packages/61/49/1af6ce2ef46a093bb4bd93e510e5ada5d5c77b7475cc45d93175344a973b/pyromark-0.9.3-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9cac1331e20a634ead29867c56a8c1a358ce9a78a2da6e5100cd3f3c160c40f",
                "md5": "179882a42408f1398d4e50715e5b8101",
                "sha256": "eb7e816b7ad5606ebf4891d5f170d94ef790e6a15e4053c57a726ae5c4a2ee9e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "179882a42408f1398d4e50715e5b8101",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 260098,
            "upload_time": "2025-07-29T13:48:51",
            "upload_time_iso_8601": "2025-07-29T13:48:51.279616Z",
            "url": "https://files.pythonhosted.org/packages/c9/ca/c1331e20a634ead29867c56a8c1a358ce9a78a2da6e5100cd3f3c160c40f/pyromark-0.9.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e1f7b34a90919bf66bbe5d41531b7bde7679cced242ccc98ec18907bee84359",
                "md5": "341b1af5f9853fc1614fd7d16d66a5f1",
                "sha256": "483432a5509342f3e88cb58c736a36799331a1fa9d9d3cc920fef0323c74a1d4"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "341b1af5f9853fc1614fd7d16d66a5f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 321893,
            "upload_time": "2025-07-29T13:46:37",
            "upload_time_iso_8601": "2025-07-29T13:46:37.992156Z",
            "url": "https://files.pythonhosted.org/packages/8e/1f/7b34a90919bf66bbe5d41531b7bde7679cced242ccc98ec18907bee84359/pyromark-0.9.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "359a072a2af8be16aa56a0566a77d00a8001c86039a0de0938e3d54e35c813e7",
                "md5": "2dc6f0c0854f4269cd3498287210bf30",
                "sha256": "cdd25ad9e817b4006096564e5a2be87ad5d4d7d7cb6e7677309712ccbe0d50ec"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2dc6f0c0854f4269cd3498287210bf30",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 354986,
            "upload_time": "2025-07-29T13:46:55",
            "upload_time_iso_8601": "2025-07-29T13:46:55.691314Z",
            "url": "https://files.pythonhosted.org/packages/35/9a/072a2af8be16aa56a0566a77d00a8001c86039a0de0938e3d54e35c813e7/pyromark-0.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "acd4e6e1df635f56af6b96e90e7dc0eb49a6f321fec5222f36d5fe1d4b441ea1",
                "md5": "b03ef4c831306fefe6d2e2f0ed7a1d27",
                "sha256": "1433677481b6d1a03fdaf1f76ac2b47537582249f9276747cda549030d11b3c3"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b03ef4c831306fefe6d2e2f0ed7a1d27",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 359724,
            "upload_time": "2025-07-29T13:47:49",
            "upload_time_iso_8601": "2025-07-29T13:47:49.047342Z",
            "url": "https://files.pythonhosted.org/packages/ac/d4/e6e1df635f56af6b96e90e7dc0eb49a6f321fec5222f36d5fe1d4b441ea1/pyromark-0.9.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31b7bdca7618a6542c1d93ed6b5f9dfce8f4507d7cdc14521205750bc508b783",
                "md5": "ce335493047da6e1eb04df7488385416",
                "sha256": "1bde9737ff73a8c5276a6cdf7aa54fb1b2ecdf0f00e01741e5a4851c70650cb5"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ce335493047da6e1eb04df7488385416",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 382690,
            "upload_time": "2025-07-29T13:49:04",
            "upload_time_iso_8601": "2025-07-29T13:49:04.523225Z",
            "url": "https://files.pythonhosted.org/packages/31/b7/bdca7618a6542c1d93ed6b5f9dfce8f4507d7cdc14521205750bc508b783/pyromark-0.9.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "024251543d9efaa7f95fbcb98933342ef00b47c8fbf8a1e9ccdf1becd4dae18c",
                "md5": "51492807aab0d9dde6adcd516b9c2841",
                "sha256": "1567a43ba9180341c4e37864347a1cb2894ad3e755bc6880116061aeff9b9204"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "51492807aab0d9dde6adcd516b9c2841",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 415669,
            "upload_time": "2025-07-29T13:49:44",
            "upload_time_iso_8601": "2025-07-29T13:49:44.393240Z",
            "url": "https://files.pythonhosted.org/packages/02/42/51543d9efaa7f95fbcb98933342ef00b47c8fbf8a1e9ccdf1becd4dae18c/pyromark-0.9.3-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d682a862c4bf7f375e624fc19bc0b7e72b1c43cad5a9cef87c215d6475fda6b9",
                "md5": "665533b93fed395926547691779f8fe9",
                "sha256": "a5d758c322130f8eebc0d86b3a151c753dae0f3d23b85ad6397470103b89fae8"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "665533b93fed395926547691779f8fe9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 355649,
            "upload_time": "2025-07-29T13:47:13",
            "upload_time_iso_8601": "2025-07-29T13:47:13.415426Z",
            "url": "https://files.pythonhosted.org/packages/d6/82/a862c4bf7f375e624fc19bc0b7e72b1c43cad5a9cef87c215d6475fda6b9/pyromark-0.9.3-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08f279a347c9496275154c4fa2a3a77d5f3f1beda9273b0dc4211b1edfca224b",
                "md5": "82f333ff0a5dd4c882e856607b0e6811",
                "sha256": "a7c4fd0a84f188629c2d970ec01fa3218671e742c89a88469577ab5290cc8623"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "82f333ff0a5dd4c882e856607b0e6811",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 359687,
            "upload_time": "2025-07-29T13:48:13",
            "upload_time_iso_8601": "2025-07-29T13:48:13.150156Z",
            "url": "https://files.pythonhosted.org/packages/08/f2/79a347c9496275154c4fa2a3a77d5f3f1beda9273b0dc4211b1edfca224b/pyromark-0.9.3-cp312-cp312-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9668f5044ad67e3ee6772f2f5815cdb52f48940b38c0c0bafdf7f341b0b82d3",
                "md5": "e2432323b27b162e7f541ff51ea259d3",
                "sha256": "362b0ab0e0932df3c582c0710d1847573d609a42db1f94b865b6516a3d57522e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2432323b27b162e7f541ff51ea259d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 535679,
            "upload_time": "2025-07-29T13:47:30",
            "upload_time_iso_8601": "2025-07-29T13:47:30.460974Z",
            "url": "https://files.pythonhosted.org/packages/d9/66/8f5044ad67e3ee6772f2f5815cdb52f48940b38c0c0bafdf7f341b0b82d3/pyromark-0.9.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ebb369903878be10068cb242799aeebfa6391befa61a81cd3f13a94b310a4705",
                "md5": "639f4995f1f5c027ac6bccc97fc89174",
                "sha256": "549e2d6506becbe44559bbd9253e978f2af6ef49006a8acd166734038a3c5611"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "639f4995f1f5c027ac6bccc97fc89174",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 623438,
            "upload_time": "2025-07-29T13:48:32",
            "upload_time_iso_8601": "2025-07-29T13:48:32.049117Z",
            "url": "https://files.pythonhosted.org/packages/eb/b3/69903878be10068cb242799aeebfa6391befa61a81cd3f13a94b310a4705/pyromark-0.9.3-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a085617cb7cf1ea9b6feaf5ed16a488d7b7fd41c4cbe415ea127e3e872b85d6",
                "md5": "3e0de9bc9d0dcff2ab0a6e51832ad6de",
                "sha256": "d4019a55fcf222d32398851e5f8bdbb3760a689aec69a2159722442b48256f72"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3e0de9bc9d0dcff2ab0a6e51832ad6de",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 560914,
            "upload_time": "2025-07-29T13:49:24",
            "upload_time_iso_8601": "2025-07-29T13:49:24.513080Z",
            "url": "https://files.pythonhosted.org/packages/3a/08/5617cb7cf1ea9b6feaf5ed16a488d7b7fd41c4cbe415ea127e3e872b85d6/pyromark-0.9.3-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "399aef58b461734a84c4ea2dc29236ad0254499d416eef68d9147f2644c1565e",
                "md5": "60cb4f338670a23021c08eab67a43f56",
                "sha256": "29c6c23de21c392ca6a6bb0f53d82186b1c29ae755559dd5d6be3dda597bdf00"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "60cb4f338670a23021c08eab67a43f56",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 259515,
            "upload_time": "2025-07-29T13:48:52",
            "upload_time_iso_8601": "2025-07-29T13:48:52.785412Z",
            "url": "https://files.pythonhosted.org/packages/39/9a/ef58b461734a84c4ea2dc29236ad0254499d416eef68d9147f2644c1565e/pyromark-0.9.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ae76ac6362e631bced1f2b8f2650d282f27f42a56e6212a40121abd16540623",
                "md5": "a2388e715a9debb6689309438ab93b8f",
                "sha256": "30c452093a983ba9aef558adc0d0679d4cde141745735eeb6d4b834e61489732"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a2388e715a9debb6689309438ab93b8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 321629,
            "upload_time": "2025-07-29T13:46:39",
            "upload_time_iso_8601": "2025-07-29T13:46:39.275779Z",
            "url": "https://files.pythonhosted.org/packages/9a/e7/6ac6362e631bced1f2b8f2650d282f27f42a56e6212a40121abd16540623/pyromark-0.9.3-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac300afbac6e9bd1ae0e2a7ab53ae821a65b6091ad3a3422509b3ca0a67ba21e",
                "md5": "752a8f8ee893e1e112d265f4ef3aba6c",
                "sha256": "2fe83c03dba4a529ef2a2dc1839ff56c5dcdbd1cb3837cd60d6ca449857ee313"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "752a8f8ee893e1e112d265f4ef3aba6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 354639,
            "upload_time": "2025-07-29T13:46:57",
            "upload_time_iso_8601": "2025-07-29T13:46:57.409015Z",
            "url": "https://files.pythonhosted.org/packages/ac/30/0afbac6e9bd1ae0e2a7ab53ae821a65b6091ad3a3422509b3ca0a67ba21e/pyromark-0.9.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2793fdcd91a49976f38a5c57661ba19269890a4eeac619378e0c0b1f2108f49b",
                "md5": "5e504d800c8c39bbbddec74dd5f7dedc",
                "sha256": "d2499748fdd280cccd1f455e6cf435dab669bcf6c6c65678e2e4d09e72d0fa71"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5e504d800c8c39bbbddec74dd5f7dedc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 359259,
            "upload_time": "2025-07-29T13:47:50",
            "upload_time_iso_8601": "2025-07-29T13:47:50.768000Z",
            "url": "https://files.pythonhosted.org/packages/27/93/fdcd91a49976f38a5c57661ba19269890a4eeac619378e0c0b1f2108f49b/pyromark-0.9.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04d406516243fe33695019ae27a7816898d12a900d8c9e3a1f540dfba0327cd4",
                "md5": "97b54e1e336f19960c567bd7f34ddd53",
                "sha256": "6bcd7130754d0fe8033420094918cc453a4b478180fdc3901c76f577ee3b787d"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "97b54e1e336f19960c567bd7f34ddd53",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 382360,
            "upload_time": "2025-07-29T13:49:06",
            "upload_time_iso_8601": "2025-07-29T13:49:06.535230Z",
            "url": "https://files.pythonhosted.org/packages/04/d4/06516243fe33695019ae27a7816898d12a900d8c9e3a1f540dfba0327cd4/pyromark-0.9.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b1b3fd1c7e75fbd93eacaaa5527b6217438a74bab39516b9b4c1665cd277743",
                "md5": "9d40435e9f0503d592fd2a53c0d7bc63",
                "sha256": "3417a121ee1bc9c1b3c1bd3b86c86506b394deda87af1d7c0103b468933b4f85"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "9d40435e9f0503d592fd2a53c0d7bc63",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 413872,
            "upload_time": "2025-07-29T13:49:46",
            "upload_time_iso_8601": "2025-07-29T13:49:46.605999Z",
            "url": "https://files.pythonhosted.org/packages/6b/1b/3fd1c7e75fbd93eacaaa5527b6217438a74bab39516b9b4c1665cd277743/pyromark-0.9.3-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43db949fba4c8baad349c4bca14f37271c866316ee9dba6e1804f09c067f7cee",
                "md5": "ed50c05a7adbc29a3e8b1d83d8ba2f40",
                "sha256": "f0792aff59ec41fa397d72c57908d379fce48964c9f823f94fc11e34a242f899"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ed50c05a7adbc29a3e8b1d83d8ba2f40",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 355328,
            "upload_time": "2025-07-29T13:47:14",
            "upload_time_iso_8601": "2025-07-29T13:47:14.982764Z",
            "url": "https://files.pythonhosted.org/packages/43/db/949fba4c8baad349c4bca14f37271c866316ee9dba6e1804f09c067f7cee/pyromark-0.9.3-cp313-cp313-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f03bdbcedea17041359990d59cf5afc8e1ab9877463dd3802c348208f754392",
                "md5": "354bfb0ee2f78149b757a75b144683f7",
                "sha256": "0388db44e3e54b8203ff35bfa071382dbf4bb62abdda7883625917571a49caeb"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "354bfb0ee2f78149b757a75b144683f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 359257,
            "upload_time": "2025-07-29T13:48:14",
            "upload_time_iso_8601": "2025-07-29T13:48:14.638618Z",
            "url": "https://files.pythonhosted.org/packages/1f/03/bdbcedea17041359990d59cf5afc8e1ab9877463dd3802c348208f754392/pyromark-0.9.3-cp313-cp313-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d790cd2644c1ecb238d642a74342113d7b0504b06b62088172dd51b0b646f7e7",
                "md5": "893ee72b71b235f0d3b7555fd35d6368",
                "sha256": "e086ff47aa4a8cb26af4abbc72171e041b87bac6fce9d9e039f7dd4decb48bf5"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "893ee72b71b235f0d3b7555fd35d6368",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 535274,
            "upload_time": "2025-07-29T13:47:31",
            "upload_time_iso_8601": "2025-07-29T13:47:31.878903Z",
            "url": "https://files.pythonhosted.org/packages/d7/90/cd2644c1ecb238d642a74342113d7b0504b06b62088172dd51b0b646f7e7/pyromark-0.9.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94bf308405a710273d481e1f392ca7fbe710899e9b845df5f468d56e1712ccce",
                "md5": "a306f7d764295391fea746ed9ef9503b",
                "sha256": "86689ddf4a339c1c0a47039d018ac14f9fa1fe5e07a841cf4bb04558cf5ec10e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a306f7d764295391fea746ed9ef9503b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 623086,
            "upload_time": "2025-07-29T13:48:33",
            "upload_time_iso_8601": "2025-07-29T13:48:33.738463Z",
            "url": "https://files.pythonhosted.org/packages/94/bf/308405a710273d481e1f392ca7fbe710899e9b845df5f468d56e1712ccce/pyromark-0.9.3-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5013b9508d4714f1ef70a44e34629ccd16d82ab7927d29f7cafe07b0872a7e0",
                "md5": "db74c0326dfe21ea81630b5db993fd5b",
                "sha256": "140d59a10ea90f91bbb0f56a6de1a576433cb95cdd9d8f571d9733941f617cf5"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "db74c0326dfe21ea81630b5db993fd5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 560557,
            "upload_time": "2025-07-29T13:49:26",
            "upload_time_iso_8601": "2025-07-29T13:49:26.219709Z",
            "url": "https://files.pythonhosted.org/packages/f5/01/3b9508d4714f1ef70a44e34629ccd16d82ab7927d29f7cafe07b0872a7e0/pyromark-0.9.3-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53b52ecb8d2e4c3badb298b2435c575d7b9c8cb29fa396d2a4ce3d28ed0fd45a",
                "md5": "9abdecf610fdecd4b8512597a73d5282",
                "sha256": "f930af993aeb1cd85144ed3c83d21dfd8496e962fd31529debbc38eb2e66b2b6"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9abdecf610fdecd4b8512597a73d5282",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 320254,
            "upload_time": "2025-07-29T13:46:41",
            "upload_time_iso_8601": "2025-07-29T13:46:41.367780Z",
            "url": "https://files.pythonhosted.org/packages/53/b5/2ecb8d2e4c3badb298b2435c575d7b9c8cb29fa396d2a4ce3d28ed0fd45a/pyromark-0.9.3-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6af0d100353ff7c61942c3c498d7b4aceeba96b61d3f400ff1baf441a04db73a",
                "md5": "ff200a4802bc4202882aca7e265b7ebc",
                "sha256": "da022234edfe9c77e2e843258c28f478087ec5153788b7f00579df63ec16119d"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ff200a4802bc4202882aca7e265b7ebc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 353209,
            "upload_time": "2025-07-29T13:46:59",
            "upload_time_iso_8601": "2025-07-29T13:46:59.396406Z",
            "url": "https://files.pythonhosted.org/packages/6a/f0/d100353ff7c61942c3c498d7b4aceeba96b61d3f400ff1baf441a04db73a/pyromark-0.9.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "996bbcf254a34369d414a33894b7dcc4eebc4de2087b8c07949ff1ac2b13b761",
                "md5": "742571189b37c1fc82c2177ad61b3c7b",
                "sha256": "2b900bd3086ac669ff9169f6e435bda6c54ca78c52c21516734408207b95db85"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "742571189b37c1fc82c2177ad61b3c7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 357991,
            "upload_time": "2025-07-29T13:47:52",
            "upload_time_iso_8601": "2025-07-29T13:47:52.208566Z",
            "url": "https://files.pythonhosted.org/packages/99/6b/bcf254a34369d414a33894b7dcc4eebc4de2087b8c07949ff1ac2b13b761/pyromark-0.9.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8efd7ae740cc1d26ddffa85cca776f41097bf9578b5c079d0113ece0068cc84d",
                "md5": "2df4f61559752e088fce25c904f7a26c",
                "sha256": "4812b8e2348862c0bfd8764f5cd8560c09e61db08f8412ae888382e8f2e50593"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2df4f61559752e088fce25c904f7a26c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 380891,
            "upload_time": "2025-07-29T13:49:08",
            "upload_time_iso_8601": "2025-07-29T13:49:08.462851Z",
            "url": "https://files.pythonhosted.org/packages/8e/fd/7ae740cc1d26ddffa85cca776f41097bf9578b5c079d0113ece0068cc84d/pyromark-0.9.3-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93dd62a2505af43f5c13da6e7877ac5bf0f591924a055fba79356393a7f970a5",
                "md5": "1eaec5c57b297fe67fe9597dacc2c119",
                "sha256": "e7422e4912033d3abb24f38be0ed64bd4db77380dd7adec9f42a17d5804d94cb"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313t-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1eaec5c57b297fe67fe9597dacc2c119",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 353896,
            "upload_time": "2025-07-29T13:47:16",
            "upload_time_iso_8601": "2025-07-29T13:47:16.443975Z",
            "url": "https://files.pythonhosted.org/packages/93/dd/62a2505af43f5c13da6e7877ac5bf0f591924a055fba79356393a7f970a5/pyromark-0.9.3-cp313-cp313t-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9998fb8f0f38d35a97f23bb979ca6c04454cc15ba9d6f0667a3c8286503dc87",
                "md5": "7dcbdae7f109b63262548f675becbbc8",
                "sha256": "c79cf66e27095d93f9995d8b65120fd5d6f05c48e1fbde754782929a5b3e8b44"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313t-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7dcbdae7f109b63262548f675becbbc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 357931,
            "upload_time": "2025-07-29T13:48:16",
            "upload_time_iso_8601": "2025-07-29T13:48:16.169699Z",
            "url": "https://files.pythonhosted.org/packages/b9/99/8fb8f0f38d35a97f23bb979ca6c04454cc15ba9d6f0667a3c8286503dc87/pyromark-0.9.3-cp313-cp313t-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c951ae641c3f6b9271139b24c0e089c4ba3aab1cb3e353b2ffeadb76fa91d94",
                "md5": "5ca6c433416b399d3c6f86f01670da17",
                "sha256": "e57a64d245ccae384148f740aee653773a97dc7264c6444141c84de7c64eb469"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5ca6c433416b399d3c6f86f01670da17",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 533835,
            "upload_time": "2025-07-29T13:47:33",
            "upload_time_iso_8601": "2025-07-29T13:47:33.448746Z",
            "url": "https://files.pythonhosted.org/packages/3c/95/1ae641c3f6b9271139b24c0e089c4ba3aab1cb3e353b2ffeadb76fa91d94/pyromark-0.9.3-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c00d57d9cd82c51ea223292d4a9457d6f1c42c0c05a3e8bd9b4a813f28dc584",
                "md5": "5eee07bb083af36ee37b703dbe0290c8",
                "sha256": "a6e67b4a6202296d6add9300b6017a8ced07bb0e76504c3f0eaef29c4c47a190"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5eee07bb083af36ee37b703dbe0290c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 621750,
            "upload_time": "2025-07-29T13:48:35",
            "upload_time_iso_8601": "2025-07-29T13:48:35.315941Z",
            "url": "https://files.pythonhosted.org/packages/4c/00/d57d9cd82c51ea223292d4a9457d6f1c42c0c05a3e8bd9b4a813f28dc584/pyromark-0.9.3-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a8ba1fc844836ea7b16ce9102fe4b2119dd7437e7d7ede95ec2302027b891f7",
                "md5": "a0f6c73b8ee14301b141c58cf3490a72",
                "sha256": "147d578ae0a7f3a4b799c54275d171a8f50fbf254ddc440df9cf9940710d0475"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a0f6c73b8ee14301b141c58cf3490a72",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 559112,
            "upload_time": "2025-07-29T13:49:27",
            "upload_time_iso_8601": "2025-07-29T13:49:27.939716Z",
            "url": "https://files.pythonhosted.org/packages/7a/8b/a1fc844836ea7b16ce9102fe4b2119dd7437e7d7ede95ec2302027b891f7/pyromark-0.9.3-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "561a93cc3004797648ca2c1a817abfbb5d1c19d7efd33eb45bedf17fd649dd68",
                "md5": "ca0f4fad16b2aa1c19ec9754c6ea04a4",
                "sha256": "c7a581495b386be32ce101874fa63e1ddd321f1e0a289c80416207e8464ee1bb"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313t-win32.whl",
            "has_sig": false,
            "md5_digest": "ca0f4fad16b2aa1c19ec9754c6ea04a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 258016,
            "upload_time": "2025-07-29T13:48:56",
            "upload_time_iso_8601": "2025-07-29T13:48:56.371603Z",
            "url": "https://files.pythonhosted.org/packages/56/1a/93cc3004797648ca2c1a817abfbb5d1c19d7efd33eb45bedf17fd649dd68/pyromark-0.9.3-cp313-cp313t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4cbf4a4b8d801c6d5ab990e913a6e3f96efeb31b90bf6d76ea3b807026fd1e8c",
                "md5": "f7a12bffd5e8fcc4f8fd57d66722dc45",
                "sha256": "1e8350e5dd319afdf208172b218e3f545a83d7892bb344a5155af24137849936"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "f7a12bffd5e8fcc4f8fd57d66722dc45",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 259138,
            "upload_time": "2025-07-29T13:48:54",
            "upload_time_iso_8601": "2025-07-29T13:48:54.480437Z",
            "url": "https://files.pythonhosted.org/packages/4c/bf/4a4b8d801c6d5ab990e913a6e3f96efeb31b90bf6d76ea3b807026fd1e8c/pyromark-0.9.3-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3e5d8329dbcd01516435a1223b7ca3eb45a8ee310eaa1f74ad944a368c152c1",
                "md5": "4af1e062a54b8520ffeb599171eaf640",
                "sha256": "977fa69b28254964c66412f3c504d1e89421aae9c9cdf3e222fbf341103980da"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4af1e062a54b8520ffeb599171eaf640",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 321538,
            "upload_time": "2025-07-29T13:46:43",
            "upload_time_iso_8601": "2025-07-29T13:46:43.271266Z",
            "url": "https://files.pythonhosted.org/packages/f3/e5/d8329dbcd01516435a1223b7ca3eb45a8ee310eaa1f74ad944a368c152c1/pyromark-0.9.3-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de4b790254d1d346de8c35eed1f05637526320e82a39bddfb80ae9c8c2428042",
                "md5": "48355b1fc2f881ea4390cac7266ef9ab",
                "sha256": "f2ba85c4f22b7c36cd35155a8cf6eaa7e0fe93adc670947770cd3a738989c7a6"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48355b1fc2f881ea4390cac7266ef9ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 354473,
            "upload_time": "2025-07-29T13:47:00",
            "upload_time_iso_8601": "2025-07-29T13:47:00.852934Z",
            "url": "https://files.pythonhosted.org/packages/de/4b/790254d1d346de8c35eed1f05637526320e82a39bddfb80ae9c8c2428042/pyromark-0.9.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2d17f0eb48e09cb2528aca5af24110d1ccba442ef47a4571d97cd24157ff24e",
                "md5": "d6ecb796790eac42c24e9faeedc7badd",
                "sha256": "3d7086f255f28ee00208bbcca3fdf15dc8dce7558b63b28db50a713af1eee077"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d6ecb796790eac42c24e9faeedc7badd",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 359503,
            "upload_time": "2025-07-29T13:47:53",
            "upload_time_iso_8601": "2025-07-29T13:47:53.748772Z",
            "url": "https://files.pythonhosted.org/packages/d2/d1/7f0eb48e09cb2528aca5af24110d1ccba442ef47a4571d97cd24157ff24e/pyromark-0.9.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b34c31af6b3f66f8e5e4297680af78a1dc590ed92e5be075996b04a843ba9a8e",
                "md5": "aaa8141b6f8e08c23fd0ef845328dc9d",
                "sha256": "334cd115c8883085fa6ff806a77491dd7b2d3f00c4583d60a8bac882dd1e0891"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "aaa8141b6f8e08c23fd0ef845328dc9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 382563,
            "upload_time": "2025-07-29T13:49:10",
            "upload_time_iso_8601": "2025-07-29T13:49:10.124992Z",
            "url": "https://files.pythonhosted.org/packages/b3/4c/31af6b3f66f8e5e4297680af78a1dc590ed92e5be075996b04a843ba9a8e/pyromark-0.9.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b77684832de5655a0aa72b044b80acde3bbc6645b4d97b7017a414795f755c5",
                "md5": "7918a97109065d16f6770e47207b9b8c",
                "sha256": "8614748429d8d9c9c6c4050fd6943aaa13d3259d0ca7c7c78329c766d2ac337d"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7918a97109065d16f6770e47207b9b8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 355210,
            "upload_time": "2025-07-29T13:47:18",
            "upload_time_iso_8601": "2025-07-29T13:47:18.205200Z",
            "url": "https://files.pythonhosted.org/packages/0b/77/684832de5655a0aa72b044b80acde3bbc6645b4d97b7017a414795f755c5/pyromark-0.9.3-cp314-cp314-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8585f212054a49c975b5e579221120c3f290b6d386c4345001403b12d0c4696f",
                "md5": "0932028653e18434b2e65dd2f636746d",
                "sha256": "c1111c9fb9a85915feb40aa483e9703d2c09876a983c45cb28e1ce4eb2e534cc"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0932028653e18434b2e65dd2f636746d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 359462,
            "upload_time": "2025-07-29T13:48:17",
            "upload_time_iso_8601": "2025-07-29T13:48:17.679183Z",
            "url": "https://files.pythonhosted.org/packages/85/85/f212054a49c975b5e579221120c3f290b6d386c4345001403b12d0c4696f/pyromark-0.9.3-cp314-cp314-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0be7627c7dd5e498fd70ba59811f12628a4f7841510d93a5013346ac4d5cb65e",
                "md5": "30e2b0e8def04f70d9496aee91186f2b",
                "sha256": "6c7ba4ffde7588573cd1475b4f6a57267f55d9e4ae6e87bbcebb2478c68baf30"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "30e2b0e8def04f70d9496aee91186f2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 535131,
            "upload_time": "2025-07-29T13:47:34",
            "upload_time_iso_8601": "2025-07-29T13:47:34.954229Z",
            "url": "https://files.pythonhosted.org/packages/0b/e7/627c7dd5e498fd70ba59811f12628a4f7841510d93a5013346ac4d5cb65e/pyromark-0.9.3-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "676c657f6f880f7bacada52d6eef7293523202b848e2b8c48a2b18f5dfb5f1e2",
                "md5": "40b4bab7ba4fe5ff2c5fae2f3982bc08",
                "sha256": "05133cbbdbbdcf6d407baed0255c05fa97fe922ea83cc820c53b5fd660ad06a0"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "40b4bab7ba4fe5ff2c5fae2f3982bc08",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 623202,
            "upload_time": "2025-07-29T13:48:39",
            "upload_time_iso_8601": "2025-07-29T13:48:39.575225Z",
            "url": "https://files.pythonhosted.org/packages/67/6c/657f6f880f7bacada52d6eef7293523202b848e2b8c48a2b18f5dfb5f1e2/pyromark-0.9.3-cp314-cp314-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2db5058219229d2721c2353ed712379457db0a1d7d355ac8baa5a78d7257aef7",
                "md5": "beca9493cbff4a45ff01439346f69a8e",
                "sha256": "a4f78062cbd54ef9abc41920e83de83b9ba8bb6e0549dda448cfa2b488855ee7"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "beca9493cbff4a45ff01439346f69a8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 560706,
            "upload_time": "2025-07-29T13:49:29",
            "upload_time_iso_8601": "2025-07-29T13:49:29.634261Z",
            "url": "https://files.pythonhosted.org/packages/2d/b5/058219229d2721c2353ed712379457db0a1d7d355ac8baa5a78d7257aef7/pyromark-0.9.3-cp314-cp314-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "292073ade098e35df5dc217e61898ffff674f66b5c619213e367a0f5d87bd3e2",
                "md5": "ce31ff9706da0130f38327d25efacd33",
                "sha256": "0ea9aa99c78e102f5ea7d166e6eb5cfabc7743c327441abd450c46deb995bbb3"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ce31ff9706da0130f38327d25efacd33",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 320162,
            "upload_time": "2025-07-29T13:46:45",
            "upload_time_iso_8601": "2025-07-29T13:46:45.005371Z",
            "url": "https://files.pythonhosted.org/packages/29/20/73ade098e35df5dc217e61898ffff674f66b5c619213e367a0f5d87bd3e2/pyromark-0.9.3-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c06b2b4e205d768690c53b851f8af8a0f232728ec06593b54109111dbd0b3afe",
                "md5": "4e1b8e49c87389ad9c5790554c81bebb",
                "sha256": "640b7160293baaa38f43a326a0515f09f1919c896ff431937a405ed3254218db"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4e1b8e49c87389ad9c5790554c81bebb",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 353151,
            "upload_time": "2025-07-29T13:47:02",
            "upload_time_iso_8601": "2025-07-29T13:47:02.155669Z",
            "url": "https://files.pythonhosted.org/packages/c0/6b/2b4e205d768690c53b851f8af8a0f232728ec06593b54109111dbd0b3afe/pyromark-0.9.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba13c39c956d5f93ae9c185b0835b54bc465d66360124ee876656d06496fd3ca",
                "md5": "9c91b2037e6adcd6dddf4bd281ed2508",
                "sha256": "16bf2a7033fccfe5efccf61149ad5002fcfda0ace3b500263adf23fed1179a65"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9c91b2037e6adcd6dddf4bd281ed2508",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 359356,
            "upload_time": "2025-07-29T13:47:55",
            "upload_time_iso_8601": "2025-07-29T13:47:55.179933Z",
            "url": "https://files.pythonhosted.org/packages/ba/13/c39c956d5f93ae9c185b0835b54bc465d66360124ee876656d06496fd3ca/pyromark-0.9.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e73bd95baf151aa549356f3b32701ca76c4244b7a0839ad3e51a8c4b6dadd4e7",
                "md5": "8b1051c948985b1e07f01bc585d922a2",
                "sha256": "a1a2a1fb5a0e8257d589621318cf07ce5e29c30ad74f85562d1dd5afe01bb6e2"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8b1051c948985b1e07f01bc585d922a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 381701,
            "upload_time": "2025-07-29T13:49:11",
            "upload_time_iso_8601": "2025-07-29T13:49:11.868173Z",
            "url": "https://files.pythonhosted.org/packages/e7/3b/d95baf151aa549356f3b32701ca76c4244b7a0839ad3e51a8c4b6dadd4e7/pyromark-0.9.3-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85905172980cacaf7621f827d3010bc6383b22178830f613f28972463cacc58e",
                "md5": "7242fd4fbeee2018a7381227b65661b6",
                "sha256": "d840be699888aa0fae721e3ad18c5747b9108b93157cfe6799bbca85cc3ab77a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314t-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7242fd4fbeee2018a7381227b65661b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 353887,
            "upload_time": "2025-07-29T13:47:19",
            "upload_time_iso_8601": "2025-07-29T13:47:19.694419Z",
            "url": "https://files.pythonhosted.org/packages/85/90/5172980cacaf7621f827d3010bc6383b22178830f613f28972463cacc58e/pyromark-0.9.3-cp314-cp314t-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a63cfba4c841fbda48a7fde2737f5b559a75837251327e16b3834fc1a5e0ba1e",
                "md5": "7d22c204262bf0d6003b5c9c9a247f5f",
                "sha256": "1014ed72bcdc61522ae7abac33e68fd06e382081cc3aa2d5d2bb9bfd5707f29f"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314t-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7d22c204262bf0d6003b5c9c9a247f5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 359363,
            "upload_time": "2025-07-29T13:48:20",
            "upload_time_iso_8601": "2025-07-29T13:48:20.107538Z",
            "url": "https://files.pythonhosted.org/packages/a6/3c/fba4c841fbda48a7fde2737f5b559a75837251327e16b3834fc1a5e0ba1e/pyromark-0.9.3-cp314-cp314t-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "99f2aa15e23d9b492ab2ffac38f64282cb492af0bc5dd9cb54f2a06cb2a848e0",
                "md5": "a347cc2c54f7387c4e237d0fc7ee4cdd",
                "sha256": "c8586d854b79acf85d41f6fc434e348db2167106721adae2f889834b1d43b90e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a347cc2c54f7387c4e237d0fc7ee4cdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 533879,
            "upload_time": "2025-07-29T13:47:37",
            "upload_time_iso_8601": "2025-07-29T13:47:37.232933Z",
            "url": "https://files.pythonhosted.org/packages/99/f2/aa15e23d9b492ab2ffac38f64282cb492af0bc5dd9cb54f2a06cb2a848e0/pyromark-0.9.3-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0daffe9d27e0d37101a4059ce07034621d503d36fb0dc0f90e128e832fd4b4d2",
                "md5": "d116f31c0315c29a0a79adc7c263f0ed",
                "sha256": "c5299954f9abafd377c0855e21735897ff5e090ff77b9deb022b400dd6ca0680"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d116f31c0315c29a0a79adc7c263f0ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 623120,
            "upload_time": "2025-07-29T13:48:41",
            "upload_time_iso_8601": "2025-07-29T13:48:41.251628Z",
            "url": "https://files.pythonhosted.org/packages/0d/af/fe9d27e0d37101a4059ce07034621d503d36fb0dc0f90e128e832fd4b4d2/pyromark-0.9.3-cp314-cp314t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c1c2fbbeab1211c578722fbff74d27b2838fca7af556d7f8765bd9256c53e33",
                "md5": "ef5a80a7f62532a9d56b630ae354a144",
                "sha256": "028a7424bd569fe8449a3881aa3072836d2fcee8b95a0e1d5e7581c10a4a25f0"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ef5a80a7f62532a9d56b630ae354a144",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 559967,
            "upload_time": "2025-07-29T13:49:31",
            "upload_time_iso_8601": "2025-07-29T13:49:31.540867Z",
            "url": "https://files.pythonhosted.org/packages/7c/1c/2fbbeab1211c578722fbff74d27b2838fca7af556d7f8765bd9256c53e33/pyromark-0.9.3-cp314-cp314t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec9cdd1999dffb92b9eef535f8e03ed1f74d3a06d985b619420a648daa3e036f",
                "md5": "0004f1fcb232068519b8cbcc6fe63b1d",
                "sha256": "1ea98de8e3a6573abe4517d3ee2560aee2d9f3e1e1672ac5cb2bff65c16ee729"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "0004f1fcb232068519b8cbcc6fe63b1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 258112,
            "upload_time": "2025-07-29T13:48:57",
            "upload_time_iso_8601": "2025-07-29T13:48:57.874458Z",
            "url": "https://files.pythonhosted.org/packages/ec/9c/dd1999dffb92b9eef535f8e03ed1f74d3a06d985b619420a648daa3e036f/pyromark-0.9.3-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62406df2dd539d9012898fe07ff5e12aecd9144db88b1925580985f350ceb17c",
                "md5": "1eba2bb2bda5cc3d41809181447df3d2",
                "sha256": "eecb058cd898515e118e1f2445d6a52992ede9a20af3e84d886d46689034f036"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1eba2bb2bda5cc3d41809181447df3d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 325147,
            "upload_time": "2025-07-29T13:46:46",
            "upload_time_iso_8601": "2025-07-29T13:46:46.486181Z",
            "url": "https://files.pythonhosted.org/packages/62/40/6df2dd539d9012898fe07ff5e12aecd9144db88b1925580985f350ceb17c/pyromark-0.9.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c8585475acb8d4543d813a4ade2982d206978d057fef9dc671c96bde953222f",
                "md5": "e9f0bce01e3e509e58bf7bfa91341d6e",
                "sha256": "80e2549ffd0b7e2a286c614a4a82e9c440d9110f8ab1d1c129164d5297a22512"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e9f0bce01e3e509e58bf7bfa91341d6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 357383,
            "upload_time": "2025-07-29T13:47:04",
            "upload_time_iso_8601": "2025-07-29T13:47:04.613091Z",
            "url": "https://files.pythonhosted.org/packages/3c/85/85475acb8d4543d813a4ade2982d206978d057fef9dc671c96bde953222f/pyromark-0.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c132753c2a1662f76d367f3acc385312b56bafc336817593d5ad19165699a857",
                "md5": "b17b184fcad3a17c9f078e7d8421bf5c",
                "sha256": "9e71520f01cf8a5de191b023d83657d8d3a9407107fbd21d237fb02b2b6fb2cc"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b17b184fcad3a17c9f078e7d8421bf5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 361860,
            "upload_time": "2025-07-29T13:47:56",
            "upload_time_iso_8601": "2025-07-29T13:47:56.667533Z",
            "url": "https://files.pythonhosted.org/packages/c1/32/753c2a1662f76d367f3acc385312b56bafc336817593d5ad19165699a857/pyromark-0.9.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd836597ce3c15063ccbc8671dab960aef5ad07fe11d49586db3a5159c5e319d",
                "md5": "3ab642c220141f3a8956c9784452789c",
                "sha256": "18453efa1803a16d9d80599a786a85f862e15721a11522c80a5c4e1ece88cb2e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3ab642c220141f3a8956c9784452789c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 384090,
            "upload_time": "2025-07-29T13:49:13",
            "upload_time_iso_8601": "2025-07-29T13:49:13.902824Z",
            "url": "https://files.pythonhosted.org/packages/fd/83/6597ce3c15063ccbc8671dab960aef5ad07fe11d49586db3a5159c5e319d/pyromark-0.9.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b2984982d9460a2e08d87cc48aadec64746b22126bf1168a1fc35079e8adfe7",
                "md5": "5670510c117b003f7896a7fe7f7b8063",
                "sha256": "b2c1d4fd2100c49fcf0b27f55fc3b119d1ca3d9c3a5a015dc8cdb2059f2eb9a4"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5670510c117b003f7896a7fe7f7b8063",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 358535,
            "upload_time": "2025-07-29T13:47:21",
            "upload_time_iso_8601": "2025-07-29T13:47:21.150744Z",
            "url": "https://files.pythonhosted.org/packages/0b/29/84982d9460a2e08d87cc48aadec64746b22126bf1168a1fc35079e8adfe7/pyromark-0.9.3-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3272dfd3a73a249a5c07571ad5a00a1a7efc9efc0ac3982e967dc895a87a5e18",
                "md5": "1ec30cb1b7e3d65c4c5136c0bd3dbd4e",
                "sha256": "8c3f18426230a1e5f5a5e168314b5a14e79280ca8c22b45eced215a4864e341b"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp39-cp39-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1ec30cb1b7e3d65c4c5136c0bd3dbd4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 361818,
            "upload_time": "2025-07-29T13:48:21",
            "upload_time_iso_8601": "2025-07-29T13:48:21.741586Z",
            "url": "https://files.pythonhosted.org/packages/32/72/dfd3a73a249a5c07571ad5a00a1a7efc9efc0ac3982e967dc895a87a5e18/pyromark-0.9.3-cp39-cp39-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "126cf47adcfaf9d2d47449d45d1b26d32deebb9f14f49edd1a2e5b475dd43cca",
                "md5": "c85a2b9bcfc0aec1f61bd517e5fbcc8b",
                "sha256": "cade63da6573cf9995ecd420d10abfa98bb1902c8242eda0472cf4ddcd5c3717"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c85a2b9bcfc0aec1f61bd517e5fbcc8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 538051,
            "upload_time": "2025-07-29T13:47:38",
            "upload_time_iso_8601": "2025-07-29T13:47:38.775453Z",
            "url": "https://files.pythonhosted.org/packages/12/6c/f47adcfaf9d2d47449d45d1b26d32deebb9f14f49edd1a2e5b475dd43cca/pyromark-0.9.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5592d1bfe38afe9b4b06544dcb74782ad02cd18d5d09bd3ab5fdc925d64279bd",
                "md5": "984f54eb49524afddd5f5f76e9833467",
                "sha256": "b9004a0438fd710d543b6b899b59d9302a2f07d09248da6b21cce44d66ec787e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "984f54eb49524afddd5f5f76e9833467",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 625579,
            "upload_time": "2025-07-29T13:48:43",
            "upload_time_iso_8601": "2025-07-29T13:48:43.030315Z",
            "url": "https://files.pythonhosted.org/packages/55/92/d1bfe38afe9b4b06544dcb74782ad02cd18d5d09bd3ab5fdc925d64279bd/pyromark-0.9.3-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7688a9ba785125b0e3981d1abf4868351c4e048fc558dcc2caa0de427b1d53d",
                "md5": "d8e711a843f1347c8b730ccb98bed3f4",
                "sha256": "f17ff84661f819f219411aa47395fd99e0f55b8ed678cce0cfaf35c84c0e1d82"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d8e711a843f1347c8b730ccb98bed3f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 561994,
            "upload_time": "2025-07-29T13:49:33",
            "upload_time_iso_8601": "2025-07-29T13:49:33.228212Z",
            "url": "https://files.pythonhosted.org/packages/b7/68/8a9ba785125b0e3981d1abf4868351c4e048fc558dcc2caa0de427b1d53d/pyromark-0.9.3-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d91f758b9d7f56d3871ce0bf1b8bf43f245da8135cb960ebab1f84c5cec4ed3",
                "md5": "1cba373c6a57208e8fccb748536323e2",
                "sha256": "e04ee643fcd554764095c4ef3f341ff75c0761ad2654d83aa28484fd13eed830"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "1cba373c6a57208e8fccb748536323e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 260739,
            "upload_time": "2025-07-29T13:48:59",
            "upload_time_iso_8601": "2025-07-29T13:48:59.545317Z",
            "url": "https://files.pythonhosted.org/packages/0d/91/f758b9d7f56d3871ce0bf1b8bf43f245da8135cb960ebab1f84c5cec4ed3/pyromark-0.9.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43567cd304fa6fffb37dd67551f86b8658ecf89f6f405ad631b96c50e20a2428",
                "md5": "8766d1adcd4bdfeb336143b6b5de8769",
                "sha256": "1d4073290f4290231d910ed7a2f59111e4a417a66f41c78f985e72a4262f298e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8766d1adcd4bdfeb336143b6b5de8769",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 325249,
            "upload_time": "2025-07-29T13:46:47",
            "upload_time_iso_8601": "2025-07-29T13:46:47.959035Z",
            "url": "https://files.pythonhosted.org/packages/43/56/7cd304fa6fffb37dd67551f86b8658ecf89f6f405ad631b96c50e20a2428/pyromark-0.9.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "407b2f764eb3050b2c310cdfa3cd68777f09d14aa31e3a7ae208ce499d585f96",
                "md5": "932ee4f310afcd0cb0d063908c6f5c2c",
                "sha256": "8cd24a43294f31d77e82fbff86c3bffa5508d9ef37efd5db21d41f95070932e8"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "932ee4f310afcd0cb0d063908c6f5c2c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 357663,
            "upload_time": "2025-07-29T13:47:06",
            "upload_time_iso_8601": "2025-07-29T13:47:06.098098Z",
            "url": "https://files.pythonhosted.org/packages/40/7b/2f764eb3050b2c310cdfa3cd68777f09d14aa31e3a7ae208ce499d585f96/pyromark-0.9.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbdaa21dd1cc1fe449ebf4048860d7f57d93bd1b46c11b37858580f18260e352",
                "md5": "62e857964f7029db3315828e8b4c0086",
                "sha256": "b811ca11bcaf8aea02eeecf8b65df43f513c1f8d0c98809fb91173ef3470a465"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "62e857964f7029db3315828e8b4c0086",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 362719,
            "upload_time": "2025-07-29T13:47:58",
            "upload_time_iso_8601": "2025-07-29T13:47:58.512102Z",
            "url": "https://files.pythonhosted.org/packages/cb/da/a21dd1cc1fe449ebf4048860d7f57d93bd1b46c11b37858580f18260e352/pyromark-0.9.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "025bc8d36cc3af537c687804ff279a9bb025aca8a592505b0a478832ce762e0e",
                "md5": "012cb439f9bb3226937fc99b8edfd2a8",
                "sha256": "8bc6713b1fc6ce92c76356db13bff4ba6c8599c454b24fcb74cfaffc486aa110"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "012cb439f9bb3226937fc99b8edfd2a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 384689,
            "upload_time": "2025-07-29T13:49:15",
            "upload_time_iso_8601": "2025-07-29T13:49:15.600002Z",
            "url": "https://files.pythonhosted.org/packages/02/5b/c8d36cc3af537c687804ff279a9bb025aca8a592505b0a478832ce762e0e/pyromark-0.9.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "250fe78df0fd4f8099f00f9571c3d42b78f71203e0e8d692405046b77098e35e",
                "md5": "d6bb25964ff55b16bd866ca511b88b09",
                "sha256": "6f503edce8b1a06755ce1a8e68b5ec089493feaa714490ebd47c2f92084d861e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d6bb25964ff55b16bd866ca511b88b09",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 358862,
            "upload_time": "2025-07-29T13:47:22",
            "upload_time_iso_8601": "2025-07-29T13:47:22.602831Z",
            "url": "https://files.pythonhosted.org/packages/25/0f/e78df0fd4f8099f00f9571c3d42b78f71203e0e8d692405046b77098e35e/pyromark-0.9.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5386604aa9e1d148c5f3ae1e32e70c708ae1d59fc509c336a085e1e23de8cd69",
                "md5": "3ab80a1ec80d047da2a7f5592accda84",
                "sha256": "3e3e832dd0289b57dc7b7e3c27f1a90f2d9b925ff8c4bb170a5cd0947bb96a49"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3ab80a1ec80d047da2a7f5592accda84",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 362710,
            "upload_time": "2025-07-29T13:48:24",
            "upload_time_iso_8601": "2025-07-29T13:48:24.139705Z",
            "url": "https://files.pythonhosted.org/packages/53/86/604aa9e1d148c5f3ae1e32e70c708ae1d59fc509c336a085e1e23de8cd69/pyromark-0.9.3-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eff63b218c402997ffdc1850586bc8c4572bc207c2aabe8f849d83bccf911025",
                "md5": "a8e4d91c761ef6effbfd1bd5798cf173",
                "sha256": "2c4c19c8c0c1e6e967d57346d1bfed0594a7368b67979cf953fdc3a198aef09d"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a8e4d91c761ef6effbfd1bd5798cf173",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 538390,
            "upload_time": "2025-07-29T13:47:40",
            "upload_time_iso_8601": "2025-07-29T13:47:40.269485Z",
            "url": "https://files.pythonhosted.org/packages/ef/f6/3b218c402997ffdc1850586bc8c4572bc207c2aabe8f849d83bccf911025/pyromark-0.9.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f63c1a7c28db11190ffc782acdfee187161d468a4360f667650bb88b80d27cc3",
                "md5": "a3ed2a9175bf0daf5e494db705757229",
                "sha256": "63f1a0ebf72f6a0e93f93e1e5bddb011cb835cd2373dd509c259a4cb63378998"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a3ed2a9175bf0daf5e494db705757229",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 626633,
            "upload_time": "2025-07-29T13:48:44",
            "upload_time_iso_8601": "2025-07-29T13:48:44.769747Z",
            "url": "https://files.pythonhosted.org/packages/f6/3c/1a7c28db11190ffc782acdfee187161d468a4360f667650bb88b80d27cc3/pyromark-0.9.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d24eab5c50176e007b531e90ca556efdb7fc740d5322acc33ca52a07db133e30",
                "md5": "d9f0bb20de4530b10c6fbd05f93cd9e1",
                "sha256": "103b39b042b34fc6dda863973da7c2dac1c2fa26879da163a07cf06d05bc8308"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d9f0bb20de4530b10c6fbd05f93cd9e1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 562756,
            "upload_time": "2025-07-29T13:49:35",
            "upload_time_iso_8601": "2025-07-29T13:49:35.264737Z",
            "url": "https://files.pythonhosted.org/packages/d2/4e/ab5c50176e007b531e90ca556efdb7fc740d5322acc33ca52a07db133e30/pyromark-0.9.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85ec052428b4ca22b7347ad2ba10514a600c32a762fddc7aa8bf815d23969467",
                "md5": "99cf1989477e1223775f987a3a3759e0",
                "sha256": "5ac30821f174ee508c448da30ca52918ad6ea3e4b4878aba62206c4d78d3a152"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "99cf1989477e1223775f987a3a3759e0",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 325039,
            "upload_time": "2025-07-29T13:46:49",
            "upload_time_iso_8601": "2025-07-29T13:46:49.313341Z",
            "url": "https://files.pythonhosted.org/packages/85/ec/052428b4ca22b7347ad2ba10514a600c32a762fddc7aa8bf815d23969467/pyromark-0.9.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "973b123296b50190b4e01e80687bec7d253735e961550deafab6d5480fc7bf2b",
                "md5": "290f0f13110e0d5e1f49f2dbfb4e77b2",
                "sha256": "28fafff01ed703a2ffcb9604d1907a7c278cef50f946b9a3c6de1ddfee145726"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "290f0f13110e0d5e1f49f2dbfb4e77b2",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 357695,
            "upload_time": "2025-07-29T13:47:07",
            "upload_time_iso_8601": "2025-07-29T13:47:07.412182Z",
            "url": "https://files.pythonhosted.org/packages/97/3b/123296b50190b4e01e80687bec7d253735e961550deafab6d5480fc7bf2b/pyromark-0.9.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc668e341a52011f8b217e9669f37d2e17abd71b521477202a206f00150ed139",
                "md5": "996198124382a78764adc407fc71c50a",
                "sha256": "ea809dcef7f52de042567b211b0323b2a0af66ed058cc10d415f0ff5953de2f2"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "996198124382a78764adc407fc71c50a",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 362500,
            "upload_time": "2025-07-29T13:48:00",
            "upload_time_iso_8601": "2025-07-29T13:48:00.057727Z",
            "url": "https://files.pythonhosted.org/packages/cc/66/8e341a52011f8b217e9669f37d2e17abd71b521477202a206f00150ed139/pyromark-0.9.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b76c25237fb9370592c87ca4684ddce5e25618a3c2c4cebf3a59e83e0f21129",
                "md5": "21890f3c9643cdf131e9359bb13c59f5",
                "sha256": "ccf5b9b2acd2d291ce69318957358667b922b8418e74f5d3af506502cd7eda61"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "21890f3c9643cdf131e9359bb13c59f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 384774,
            "upload_time": "2025-07-29T13:49:17",
            "upload_time_iso_8601": "2025-07-29T13:49:17.331141Z",
            "url": "https://files.pythonhosted.org/packages/4b/76/c25237fb9370592c87ca4684ddce5e25618a3c2c4cebf3a59e83e0f21129/pyromark-0.9.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87ad3953484aaaab616a1ba0124258387f3b8ac597252154d389782865ff68c0",
                "md5": "f327cbe5081b90b5efc44d78100f2795",
                "sha256": "2228bd473c3033ebf652769900733772b8ce0acc41194620ea552d529d0223f2"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f327cbe5081b90b5efc44d78100f2795",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 358973,
            "upload_time": "2025-07-29T13:47:24",
            "upload_time_iso_8601": "2025-07-29T13:47:24.062545Z",
            "url": "https://files.pythonhosted.org/packages/87/ad/3953484aaaab616a1ba0124258387f3b8ac597252154d389782865ff68c0/pyromark-0.9.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f9a417e6bd7f777df91571826664738a5ec93956f3a6d9a5507c740f9f66475",
                "md5": "f32caa44db47f29e7588bc9f9a5155c0",
                "sha256": "b0125f700e98d243131e169c48596dacff5d45d7a296829fc88edd789f8554dd"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f32caa44db47f29e7588bc9f9a5155c0",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 362419,
            "upload_time": "2025-07-29T13:48:25",
            "upload_time_iso_8601": "2025-07-29T13:48:25.682892Z",
            "url": "https://files.pythonhosted.org/packages/1f/9a/417e6bd7f777df91571826664738a5ec93956f3a6d9a5507c740f9f66475/pyromark-0.9.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "852f53fc610f0014831c217fc374207dae0789a63b3d1d6ebdeb8284b4b7ed5a",
                "md5": "3a310fb651749e8044ac96434ebe81f1",
                "sha256": "362552792389d16b639a6312966dc0196e69855da8e3d9fc7fe2bd23d091d14b"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3a310fb651749e8044ac96434ebe81f1",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 538478,
            "upload_time": "2025-07-29T13:47:41",
            "upload_time_iso_8601": "2025-07-29T13:47:41.792584Z",
            "url": "https://files.pythonhosted.org/packages/85/2f/53fc610f0014831c217fc374207dae0789a63b3d1d6ebdeb8284b4b7ed5a/pyromark-0.9.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f8de63e42e4c70954208e338ab49396c35062a3251471a3fa6363e32210d7e5",
                "md5": "f3368182e54217d4a83444c095bacd71",
                "sha256": "0ddcbdc45cf204496ea359a6dd6bd423ca918db2e0898b571a32617de2738dc8"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f3368182e54217d4a83444c095bacd71",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 626271,
            "upload_time": "2025-07-29T13:48:46",
            "upload_time_iso_8601": "2025-07-29T13:48:46.418126Z",
            "url": "https://files.pythonhosted.org/packages/1f/8d/e63e42e4c70954208e338ab49396c35062a3251471a3fa6363e32210d7e5/pyromark-0.9.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46bf9a38992e3c5583c9fc1ad33d0aacb4aa1dc421d11cf0078f49085cb07284",
                "md5": "4feb61b109b169d12aa56a4bb34401d5",
                "sha256": "705bb177b53be6284d4b35521c7d61721735ca5f38f78e7ca6661d9fe435154e"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4feb61b109b169d12aa56a4bb34401d5",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 563108,
            "upload_time": "2025-07-29T13:49:37",
            "upload_time_iso_8601": "2025-07-29T13:49:37.043257Z",
            "url": "https://files.pythonhosted.org/packages/46/bf/9a38992e3c5583c9fc1ad33d0aacb4aa1dc421d11cf0078f49085cb07284/pyromark-0.9.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4910c3d12680536a89c3af1a0b1db267c1bc837c5aba9d8ea737387f857c8651",
                "md5": "80cb8be6bbac60841b407ae072c61093",
                "sha256": "3402ed3c4630ae23a912c184b17eea834541fd46195170bb05282bbaa53e8984"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "80cb8be6bbac60841b407ae072c61093",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 325510,
            "upload_time": "2025-07-29T13:46:50",
            "upload_time_iso_8601": "2025-07-29T13:46:50.925334Z",
            "url": "https://files.pythonhosted.org/packages/49/10/c3d12680536a89c3af1a0b1db267c1bc837c5aba9d8ea737387f857c8651/pyromark-0.9.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "780246d9141e5a5b6b97a076b5f51e22b17deecdfc199ef2bf00d12d426c168c",
                "md5": "47b14b0632c38b12b78df35f477835af",
                "sha256": "197d29b5a5a6dfa3f082c6482cc48440784c9eb01d85a1977c95a399f118b3e6"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "47b14b0632c38b12b78df35f477835af",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 357808,
            "upload_time": "2025-07-29T13:47:08",
            "upload_time_iso_8601": "2025-07-29T13:47:08.692640Z",
            "url": "https://files.pythonhosted.org/packages/78/02/46d9141e5a5b6b97a076b5f51e22b17deecdfc199ef2bf00d12d426c168c/pyromark-0.9.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a95463e6acb078ab31282a496ef471e98a14151e59e6ec15b6ae43095189ce4c",
                "md5": "e681a0b83fc07bf24db42784c6578bec",
                "sha256": "d17d93973b70d3996c693bb8b7995684ac1878324b2ddfbe44e2246204893d8a"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e681a0b83fc07bf24db42784c6578bec",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 362623,
            "upload_time": "2025-07-29T13:48:01",
            "upload_time_iso_8601": "2025-07-29T13:48:01.502495Z",
            "url": "https://files.pythonhosted.org/packages/a9/54/63e6acb078ab31282a496ef471e98a14151e59e6ec15b6ae43095189ce4c/pyromark-0.9.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb860b6c96880067edb31697d0c956d7d16fb45e249f5d093c42055dfcc77304",
                "md5": "229925f381dcd4e6ecc3baa9b6039e8b",
                "sha256": "2bd2d9a597d6a2a61373133c47e4ba9c87e70a5d5c973b7abb5879544d201665"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "229925f381dcd4e6ecc3baa9b6039e8b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 384654,
            "upload_time": "2025-07-29T13:49:19",
            "upload_time_iso_8601": "2025-07-29T13:49:19.389514Z",
            "url": "https://files.pythonhosted.org/packages/cb/86/0b6c96880067edb31697d0c956d7d16fb45e249f5d093c42055dfcc77304/pyromark-0.9.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0575cd1b3f7ba29388d2b49e8c3314a4c2970bbdcd0a5e645a82be9fa040dc50",
                "md5": "bd778b62f00115c8652ffc6c0394ff3f",
                "sha256": "9a0495c8b86df26e9eabf0f7c3ecad2dc3a52aaff4b0a4e47343fcc1735ff3b7"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bd778b62f00115c8652ffc6c0394ff3f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 359018,
            "upload_time": "2025-07-29T13:47:25",
            "upload_time_iso_8601": "2025-07-29T13:47:25.504820Z",
            "url": "https://files.pythonhosted.org/packages/05/75/cd1b3f7ba29388d2b49e8c3314a4c2970bbdcd0a5e645a82be9fa040dc50/pyromark-0.9.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "781191b4f56b728a1faa2020b61017a271bec079942e22a1de1bc76a68d10ad7",
                "md5": "a14a2f2a5b37f16f97a21bbc1ecaa971",
                "sha256": "df0bf066bf94efba2af3f3a47166b5fd74b1cbcd3e56900819c2e8a2c6e5b411"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a14a2f2a5b37f16f97a21bbc1ecaa971",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 362629,
            "upload_time": "2025-07-29T13:48:27",
            "upload_time_iso_8601": "2025-07-29T13:48:27.212110Z",
            "url": "https://files.pythonhosted.org/packages/78/11/91b4f56b728a1faa2020b61017a271bec079942e22a1de1bc76a68d10ad7/pyromark-0.9.3-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "097f48064004123b32dedeedb7d5d281ca74418d6cea039bfdf6b7f6a06173ef",
                "md5": "6624d28c8d91c8c63b4bdf18deff83cd",
                "sha256": "7deeedcc2ab22181906716082f09c4fba468d8b744bddd20cf6ec95655870eca"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6624d28c8d91c8c63b4bdf18deff83cd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 538590,
            "upload_time": "2025-07-29T13:47:43",
            "upload_time_iso_8601": "2025-07-29T13:47:43.657917Z",
            "url": "https://files.pythonhosted.org/packages/09/7f/48064004123b32dedeedb7d5d281ca74418d6cea039bfdf6b7f6a06173ef/pyromark-0.9.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8991983b69f276c98848569df6243df1397cd155505336ac55e75aa44d95ed4b",
                "md5": "3c79ed1bc27b959d82277e98ff55511e",
                "sha256": "8f0b9a4bb73fac5fd824795c6f6153e39894cab02661653bcae0f48e5f5c491c"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3c79ed1bc27b959d82277e98ff55511e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 626547,
            "upload_time": "2025-07-29T13:48:48",
            "upload_time_iso_8601": "2025-07-29T13:48:48.059669Z",
            "url": "https://files.pythonhosted.org/packages/89/91/983b69f276c98848569df6243df1397cd155505336ac55e75aa44d95ed4b/pyromark-0.9.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0110abda4181c7adbe1462cb6bb350e6132ddcc46a4110fb178deb1c3108e839",
                "md5": "025f704b1d8e29bbb21fce07cb599801",
                "sha256": "d8672e5de80b6c8433ba71129e29de088b89f3cf8ff2474dd4bc42f5f4e625b3"
            },
            "downloads": -1,
            "filename": "pyromark-0.9.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "025f704b1d8e29bbb21fce07cb599801",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 562758,
            "upload_time": "2025-07-29T13:49:39",
            "upload_time_iso_8601": "2025-07-29T13:49:39.081753Z",
            "url": "https://files.pythonhosted.org/packages/01/10/abda4181c7adbe1462cb6bb350e6132ddcc46a4110fb178deb1c3108e839/pyromark-0.9.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-29 13:46:33",
    "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: 1.80211s