pyromark


Namepyromark JSON
Version 0.6.2 PyPI version JSON
download
home_pageNone
SummaryBlazingly fast Markdown parser
upload_time2024-11-18 11:40:20
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT
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

130x faster than [Markdown](https://pypi.org/project/Markdown/),
101x faster than [markdown-it-py](https://pypi.org/project/markdown-it-py/),
71x faster than [mistune](https://pypi.org/project/mistune/),
8x faster than [markdown-it-pyrs](https://pypi.org/project/markdown-it-pyrs/).

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

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

## License

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


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyromark",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "converter, html",
    "author": null,
    "author_email": "monosans <hsyqixco@protonmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/57/2a/9a355ed2838ba909b2f1746aa754ff3deaf073ffe42c3120606108672b0c/pyromark-0.6.2.tar.gz",
    "platform": null,
    "description": "# pyromark\n\n[![CI](https://github.com/monosans/pyromark/actions/workflows/ci.yml/badge.svg)](https://github.com/monosans/pyromark/actions/workflows/ci.yml)\n[![Downloads](https://static.pepy.tech/badge/pyromark)](https://pepy.tech/project/pyromark)\n\npyromark (stands for Python Rust Optimized Markdown) is a blazingly fast CommonMark-compliant Markdown parser for Python.\n\nUses [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) Rust crate under the hood.\n\n## Installation\n\n```bash\npip install -U pyromark\n```\n\n## Documentation\n\n<https://pyromark.readthedocs.io>\n\n### Basic examples\n\nSee documentation for more comprehensive examples.\n\n#### Convert Markdown to HTML\n\n```python\nimport pyromark\n\nhtml = pyromark.html(\"# Hello world\")\nassert html == \"<h1>Hello world</h1>\\n\"\n```\n\n#### Iterating over Markdown elements\n\n```python\nimport pyromark\n\nfor event in pyromark.events(\"# Hello world\"):\n    # All event types are fully type annotated\n    # so you will get static type checking\n    # and Tab completions in your IDE!\n    match event:\n        case (\"Start\", (\"Heading\", {\"level\": heading_level})):\n            print(f\"Heading with {heading_level} level started\")\n        case (\"Text\", text):\n            print(f\"Got {text!r} text\")\n        case (\"End\", (\"Heading\", heading_level)):\n            print(f\"Heading with {heading_level} level ended\")\n        case other_event:\n            print(f\"Got {other_event!r}\")\n```\n\n## Performance\n\n130x faster than [Markdown](https://pypi.org/project/Markdown/),\n101x faster than [markdown-it-py](https://pypi.org/project/markdown-it-py/),\n71x faster than [mistune](https://pypi.org/project/mistune/),\n8x faster than [markdown-it-pyrs](https://pypi.org/project/markdown-it-pyrs/).\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": "MIT",
    "summary": "Blazingly fast Markdown parser",
    "version": "0.6.2",
    "project_urls": {
        "documentation": "https://pyromark.readthedocs.io",
        "repository": "https://github.com/monosans/pyromark"
    },
    "split_keywords": [
        "converter",
        " html"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb309ccbed9d6a57f47bff24d2ac6c4d35d0d5b6e29ecd915df2596dc1e58ed2",
                "md5": "4864d6817507692a59edfcf6e8350f40",
                "sha256": "5f9764c5b2d4722f4cd985fed2be380c3850d6829ee1b4052677389a911f7135"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4864d6817507692a59edfcf6e8350f40",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 347852,
            "upload_time": "2024-11-18T11:40:11",
            "upload_time_iso_8601": "2024-11-18T11:40:11.143343Z",
            "url": "https://files.pythonhosted.org/packages/eb/30/9ccbed9d6a57f47bff24d2ac6c4d35d0d5b6e29ecd915df2596dc1e58ed2/pyromark-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9c8db07059885c2535707637f142810e8f2b045b479afa64d9e3659d391bbe1",
                "md5": "69e3c05ee18c644d11b247f367008914",
                "sha256": "1b1e02d46d032c46b3da8f8ff203d239f4be3c2e3da07f695d13f402bc6f8a5c"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "69e3c05ee18c644d11b247f367008914",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 328986,
            "upload_time": "2024-11-18T11:40:00",
            "upload_time_iso_8601": "2024-11-18T11:40:00.968205Z",
            "url": "https://files.pythonhosted.org/packages/e9/c8/db07059885c2535707637f142810e8f2b045b479afa64d9e3659d391bbe1/pyromark-0.6.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e7be3bc5c2dff71bf967b2859963477afd65548a9a71f64a78539091b1a060f",
                "md5": "4fd34ddd74ed67e636284a663f60012f",
                "sha256": "ab151369b7db7925acdb3422ab519d37ddf630b117174782673d44e9e9c67bd9"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4fd34ddd74ed67e636284a663f60012f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 358189,
            "upload_time": "2024-11-18T11:38:02",
            "upload_time_iso_8601": "2024-11-18T11:38:02.349522Z",
            "url": "https://files.pythonhosted.org/packages/4e/7b/e3bc5c2dff71bf967b2859963477afd65548a9a71f64a78539091b1a060f/pyromark-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9385cb14aabe4ba78a7d63a816e9a043ee5d38d78ca15c1922f7ab178ad2d4e4",
                "md5": "430c3930b2b9e0532b341b97dd06c869",
                "sha256": "3fee47b4e6cecfd269335d82e71c3bbb8b907db537b140ea81ebd51be5d95c8c"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "430c3930b2b9e0532b341b97dd06c869",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 361339,
            "upload_time": "2024-11-18T11:38:25",
            "upload_time_iso_8601": "2024-11-18T11:38:25.339429Z",
            "url": "https://files.pythonhosted.org/packages/93/85/cb14aabe4ba78a7d63a816e9a043ee5d38d78ca15c1922f7ab178ad2d4e4/pyromark-0.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d992eff6fa0dd4e99666d063d8257ff6897d60580cf8b16d78de76de76f53ef4",
                "md5": "b013ab7dc90921e246ee602f697c3a46",
                "sha256": "5e73a263873c71a7914b420aecd8d5eae4f317f7e6e7e0728e4d646ca2acac3e"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b013ab7dc90921e246ee602f697c3a46",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 410670,
            "upload_time": "2024-11-18T11:39:18",
            "upload_time_iso_8601": "2024-11-18T11:39:18.521357Z",
            "url": "https://files.pythonhosted.org/packages/d9/92/eff6fa0dd4e99666d063d8257ff6897d60580cf8b16d78de76de76f53ef4/pyromark-0.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05f32d3c5b6d664e25a22e5e0441c3e4f89f3705ac8689ea94de0d80d6dca478",
                "md5": "1d2793b69ed85b1ceed5c3e95d3da656",
                "sha256": "e3a835d8050fbc6a868a38c52af3ac989ec7d7e25f833cd5ce1b8d1f3696561b"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "1d2793b69ed85b1ceed5c3e95d3da656",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 416266,
            "upload_time": "2024-11-18T11:39:08",
            "upload_time_iso_8601": "2024-11-18T11:39:08.299786Z",
            "url": "https://files.pythonhosted.org/packages/05/f3/2d3c5b6d664e25a22e5e0441c3e4f89f3705ac8689ea94de0d80d6dca478/pyromark-0.6.2-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8083952c75d12732cae33fe0c1a57e5af4de7406a8b32c536455b39690157298",
                "md5": "a06581e4d111d0ef9bb9c90127ff42da",
                "sha256": "f0643b278704fb8f1dd66370ccbb72af0dc0881159394aac0e771d44e41852f1"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a06581e4d111d0ef9bb9c90127ff42da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 518844,
            "upload_time": "2024-11-18T11:39:28",
            "upload_time_iso_8601": "2024-11-18T11:39:28.422905Z",
            "url": "https://files.pythonhosted.org/packages/80/83/952c75d12732cae33fe0c1a57e5af4de7406a8b32c536455b39690157298/pyromark-0.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2ee1ccd3a1cf2a5b9c3a4df4932c4f1413e1ec5466a632267fe4343d7e5d574",
                "md5": "8c2a065cb95a18425537ecb581ed1c68",
                "sha256": "bc4ff34dc80ca096e12fb754f56f72fad7de820f0859aa27d46700381d864d5c"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c2a065cb95a18425537ecb581ed1c68",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 380381,
            "upload_time": "2024-11-18T11:39:38",
            "upload_time_iso_8601": "2024-11-18T11:39:38.853841Z",
            "url": "https://files.pythonhosted.org/packages/e2/ee/1ccd3a1cf2a5b9c3a4df4932c4f1413e1ec5466a632267fe4343d7e5d574/pyromark-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6993f89a02860e9e29121e41dccf482f51552df6cec34bd09f45400cee703cb9",
                "md5": "bd64dbabd0b861536b47a2fe3788214e",
                "sha256": "65a4e0ccb648e464a14cae9190d9bc2cc9856d268142620e5d6e2772541d3524"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "bd64dbabd0b861536b47a2fe3788214e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 380055,
            "upload_time": "2024-11-18T11:38:47",
            "upload_time_iso_8601": "2024-11-18T11:38:47.256736Z",
            "url": "https://files.pythonhosted.org/packages/69/93/f89a02860e9e29121e41dccf482f51552df6cec34bd09f45400cee703cb9/pyromark-0.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2bf0706cfe6c3e7fcaba947fa728d00e67c8f26ca28a1afe807ee1c61929a8a",
                "md5": "d99b64e781872162b1a783a334eb9500",
                "sha256": "0bbbae1666f717340b399f8536ff3782d85189d1313d9f5cf7abede1613fab57"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d99b64e781872162b1a783a334eb9500",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 536560,
            "upload_time": "2024-11-18T11:38:13",
            "upload_time_iso_8601": "2024-11-18T11:38:13.714899Z",
            "url": "https://files.pythonhosted.org/packages/d2/bf/0706cfe6c3e7fcaba947fa728d00e67c8f26ca28a1afe807ee1c61929a8a/pyromark-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed8586b30e1936adaf3eff38f823a368fff8306848a0f4b8e82035de26259d60",
                "md5": "6cf865a1a2a4c951101713d0b0022129",
                "sha256": "e4d6d19b96df472360cc9edbd47d93d5ce7d2db853f2cd4c439e7c74a4bf361b"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6cf865a1a2a4c951101713d0b0022129",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 617208,
            "upload_time": "2024-11-18T11:38:37",
            "upload_time_iso_8601": "2024-11-18T11:38:37.348604Z",
            "url": "https://files.pythonhosted.org/packages/ed/85/86b30e1936adaf3eff38f823a368fff8306848a0f4b8e82035de26259d60/pyromark-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72cbc67de6bf63a5ae82c66246b64aa9d54afff0cd722257811db6b8f7440885",
                "md5": "1c5548262c1cbb043ea7cca861f12c6c",
                "sha256": "6042d3b7e083582973a00c4a93ed9ee4105099792230c996b4325082fd63b344"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1c5548262c1cbb043ea7cca861f12c6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 551496,
            "upload_time": "2024-11-18T11:38:58",
            "upload_time_iso_8601": "2024-11-18T11:38:58.223490Z",
            "url": "https://files.pythonhosted.org/packages/72/cb/c67de6bf63a5ae82c66246b64aa9d54afff0cd722257811db6b8f7440885/pyromark-0.6.2-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80b5d6f9df80f2db2779b572d771ac67036c3bb12c55ed8aaa74d6833ee045bd",
                "md5": "a9b83a4fcfdba2fd59ed83b377d2e642",
                "sha256": "162cf997b793abb30df77056fa55c440cf6216c04a0b78a8de7b69052b32c6a5"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9b83a4fcfdba2fd59ed83b377d2e642",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 548819,
            "upload_time": "2024-11-18T11:39:50",
            "upload_time_iso_8601": "2024-11-18T11:39:50.469016Z",
            "url": "https://files.pythonhosted.org/packages/80/b5/d6f9df80f2db2779b572d771ac67036c3bb12c55ed8aaa74d6833ee045bd/pyromark-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4376edb8b14531e188807bcc5796967926f1a09831b9448f67d462ab34dc011a",
                "md5": "329a09848bba14d7cf87594803b4bbd5",
                "sha256": "d33d3d9ca9d582e94455a2e33668cffe9d3297283907ba90156969297e5b77ee"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "329a09848bba14d7cf87594803b4bbd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 262378,
            "upload_time": "2024-11-18T11:40:22",
            "upload_time_iso_8601": "2024-11-18T11:40:22.021507Z",
            "url": "https://files.pythonhosted.org/packages/43/76/edb8b14531e188807bcc5796967926f1a09831b9448f67d462ab34dc011a/pyromark-0.6.2-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f187960bb5158f87507ca30a3eaa4a77ee7437cb1fe4a6f6cbbeecc17d7c11d",
                "md5": "9ceac4a92ccde314a1adfecd9bc47b47",
                "sha256": "cbced4e87a3d402a7c4df5a9f6d7b0fbd19e4498aec664011718a1a976a13fa7"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9ceac4a92ccde314a1adfecd9bc47b47",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 274454,
            "upload_time": "2024-11-18T11:40:29",
            "upload_time_iso_8601": "2024-11-18T11:40:29.192206Z",
            "url": "https://files.pythonhosted.org/packages/9f/18/7960bb5158f87507ca30a3eaa4a77ee7437cb1fe4a6f6cbbeecc17d7c11d/pyromark-0.6.2-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17cd1936befeddf3c89338c262583dbdbc73434c211ad012288c05f9ab133d18",
                "md5": "1464a27fd71d6c7be1876fd382af770a",
                "sha256": "7d95330ad977aaf289f64ab747cc7cef1a69beda1fc406d75b6ed758be37f145"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1464a27fd71d6c7be1876fd382af770a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 347851,
            "upload_time": "2024-11-18T11:40:12",
            "upload_time_iso_8601": "2024-11-18T11:40:12.625329Z",
            "url": "https://files.pythonhosted.org/packages/17/cd/1936befeddf3c89338c262583dbdbc73434c211ad012288c05f9ab133d18/pyromark-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e09d67b2567c2a66e4d9d4bfbc1190918886729d6395b76aa91229788a6c328",
                "md5": "84461b8de7edc53c77e44819b2d32386",
                "sha256": "de4743653bdc91eada106dbe52b88f2fdfd1ccc3ef2167a161f7f4fcf68c2a96"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "84461b8de7edc53c77e44819b2d32386",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 328984,
            "upload_time": "2024-11-18T11:40:02",
            "upload_time_iso_8601": "2024-11-18T11:40:02.336098Z",
            "url": "https://files.pythonhosted.org/packages/9e/09/d67b2567c2a66e4d9d4bfbc1190918886729d6395b76aa91229788a6c328/pyromark-0.6.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d610d61311b85af8fefae2fe5e1edb7d4c6a7e2116da27b4cef212a340ddd686",
                "md5": "01c8841a64a45cc66c7b47ccf1870dc0",
                "sha256": "bd2e2000d88cbafa9ca7320bc60287b450e794f6ca775eafb46ad3cfe9f2d90d"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "01c8841a64a45cc66c7b47ccf1870dc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 358190,
            "upload_time": "2024-11-18T11:38:04",
            "upload_time_iso_8601": "2024-11-18T11:38:04.892630Z",
            "url": "https://files.pythonhosted.org/packages/d6/10/d61311b85af8fefae2fe5e1edb7d4c6a7e2116da27b4cef212a340ddd686/pyromark-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4ffd93cb2a299ee4ce54887aa64e130d8567e4f62fa934a6a5f37308f2b6a56",
                "md5": "ce293ecd5a7156ccce236b724998496d",
                "sha256": "1c3c9838f764af844de1db14295bb148235c86e5dce18f3c0d9ab219dd923c34"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ce293ecd5a7156ccce236b724998496d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 361340,
            "upload_time": "2024-11-18T11:38:27",
            "upload_time_iso_8601": "2024-11-18T11:38:27.229556Z",
            "url": "https://files.pythonhosted.org/packages/f4/ff/d93cb2a299ee4ce54887aa64e130d8567e4f62fa934a6a5f37308f2b6a56/pyromark-0.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c8866d0bdd8854ff2b859ae55af9bebe026af83ae15186e796f8a16cef344c5",
                "md5": "775b137edb0128633c5e2fb1312c62ed",
                "sha256": "f629e2a7bf8d9e3d32c51ba331edad631076119393cc98c7ed2d3e60e2c5104c"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "775b137edb0128633c5e2fb1312c62ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 410669,
            "upload_time": "2024-11-18T11:39:20",
            "upload_time_iso_8601": "2024-11-18T11:39:20.503128Z",
            "url": "https://files.pythonhosted.org/packages/8c/88/66d0bdd8854ff2b859ae55af9bebe026af83ae15186e796f8a16cef344c5/pyromark-0.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ccf3d5cd2b239d6126955a2c6565ede1b3055bafc7e18b7c80ab85310df9815d",
                "md5": "f6c0d1678f50ce6bc2d0a2b78f829103",
                "sha256": "c344b9c9bf102b6e11ee8109012c526e2a343d4633bf0d3b9086de33bebb3eed"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "f6c0d1678f50ce6bc2d0a2b78f829103",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 416266,
            "upload_time": "2024-11-18T11:39:09",
            "upload_time_iso_8601": "2024-11-18T11:39:09.750467Z",
            "url": "https://files.pythonhosted.org/packages/cc/f3/d5cd2b239d6126955a2c6565ede1b3055bafc7e18b7c80ab85310df9815d/pyromark-0.6.2-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5de9ebe14b4ddedebfae577edfadf803d044378dcb5fc85477a808beb99811f5",
                "md5": "0ead712871e53f6d4c7a4d602a3a287d",
                "sha256": "0e2ed8dcf5864b8112b93790664987a330e80bb6e5be07f4d1a5d5c9abc83d68"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0ead712871e53f6d4c7a4d602a3a287d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 518845,
            "upload_time": "2024-11-18T11:39:29",
            "upload_time_iso_8601": "2024-11-18T11:39:29.831600Z",
            "url": "https://files.pythonhosted.org/packages/5d/e9/ebe14b4ddedebfae577edfadf803d044378dcb5fc85477a808beb99811f5/pyromark-0.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a520f3735f58bdfb3da9a8e8a0161dd0c349a3f1658cc7e04c40ee3bf8582c5c",
                "md5": "fd9cc871caa30bc5a7edf8fdb7c581d0",
                "sha256": "580d5577466c825cb06d3028dce7f31d06382e822b7a599d39baa331abf877f8"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd9cc871caa30bc5a7edf8fdb7c581d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 380381,
            "upload_time": "2024-11-18T11:39:40",
            "upload_time_iso_8601": "2024-11-18T11:39:40.384098Z",
            "url": "https://files.pythonhosted.org/packages/a5/20/f3735f58bdfb3da9a8e8a0161dd0c349a3f1658cc7e04c40ee3bf8582c5c/pyromark-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5828746e680cdb1652e25e33cb8a71fb84557010e8bcf94941a1fce7a62d99df",
                "md5": "c093b7b99bcd0ea4ea2f69c0ece2552a",
                "sha256": "5b45b1acf16fe2340316dd1d581cd10cae6855aac7c440b6741f59db77c8e2da"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c093b7b99bcd0ea4ea2f69c0ece2552a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 380054,
            "upload_time": "2024-11-18T11:38:49",
            "upload_time_iso_8601": "2024-11-18T11:38:49.433638Z",
            "url": "https://files.pythonhosted.org/packages/58/28/746e680cdb1652e25e33cb8a71fb84557010e8bcf94941a1fce7a62d99df/pyromark-0.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1407ad976f533dcc72f18b60c3a79f93193c8ef5c2783100d037b850f6b6520",
                "md5": "54322c3e15cf7b2ec4230db0c78ac910",
                "sha256": "a875abb1fdcb2d94bd4ad36b5437e479e5eca6123dbe56f08eb820d26b254eb7"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "54322c3e15cf7b2ec4230db0c78ac910",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 536564,
            "upload_time": "2024-11-18T11:38:15",
            "upload_time_iso_8601": "2024-11-18T11:38:15.633891Z",
            "url": "https://files.pythonhosted.org/packages/f1/40/7ad976f533dcc72f18b60c3a79f93193c8ef5c2783100d037b850f6b6520/pyromark-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdb28dc2f428bc89a009b380207ea4031466a570a0e012f3611f667ba0003202",
                "md5": "5e70bd56b0ffedfe47db48cf19ae130e",
                "sha256": "b7e6eeb1d2b5fbd424c896bfe8141e18939590e039eedc11f118511db0d69d91"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5e70bd56b0ffedfe47db48cf19ae130e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 617210,
            "upload_time": "2024-11-18T11:38:38",
            "upload_time_iso_8601": "2024-11-18T11:38:38.608708Z",
            "url": "https://files.pythonhosted.org/packages/fd/b2/8dc2f428bc89a009b380207ea4031466a570a0e012f3611f667ba0003202/pyromark-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79a1d77e60e89166654dd2d98a439a1f3e87dca66add4170a0a97da29c5c9ed2",
                "md5": "8e5e5250435e85d5a8d8a150552f1d7d",
                "sha256": "ac7e21a87e0a4219673c9a86694e487a373bf463242494a20c5e219a730b5963"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8e5e5250435e85d5a8d8a150552f1d7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 551498,
            "upload_time": "2024-11-18T11:38:59",
            "upload_time_iso_8601": "2024-11-18T11:38:59.520297Z",
            "url": "https://files.pythonhosted.org/packages/79/a1/d77e60e89166654dd2d98a439a1f3e87dca66add4170a0a97da29c5c9ed2/pyromark-0.6.2-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57cd86b903de1e6007007142eff44889ebfa7a38227e555e6278f089dffb6125",
                "md5": "872c94e7145e978ab58607f6e8b6689a",
                "sha256": "bdf0b35576e7a1518ea41e6b32b0551d2576c629ce025623cca0b0a050378ae8"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "872c94e7145e978ab58607f6e8b6689a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 548824,
            "upload_time": "2024-11-18T11:39:51",
            "upload_time_iso_8601": "2024-11-18T11:39:51.867565Z",
            "url": "https://files.pythonhosted.org/packages/57/cd/86b903de1e6007007142eff44889ebfa7a38227e555e6278f089dffb6125/pyromark-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a799a51facd4d0f170f9d293d726f783307d5f71078177900e3e5104a760aa2",
                "md5": "cbb66cf9a5e6f1ee96bfd0cc883b48e7",
                "sha256": "0806f2b6d0e05f195b39ce06fac72877284ad6024783e1438adc14a08694b92e"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "cbb66cf9a5e6f1ee96bfd0cc883b48e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 262416,
            "upload_time": "2024-11-18T11:40:23",
            "upload_time_iso_8601": "2024-11-18T11:40:23.430704Z",
            "url": "https://files.pythonhosted.org/packages/4a/79/9a51facd4d0f170f9d293d726f783307d5f71078177900e3e5104a760aa2/pyromark-0.6.2-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75cd6c558ecac532eda1560054d99a982d394ba243a65379c00e7e9dd15ee519",
                "md5": "55c695375e5584cb077838da8aa9ba21",
                "sha256": "f75a672f48bb8bc15411d536418a57c1030988a488a13fd4ab48818c1e260d5c"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "55c695375e5584cb077838da8aa9ba21",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 274441,
            "upload_time": "2024-11-18T11:40:30",
            "upload_time_iso_8601": "2024-11-18T11:40:30.607818Z",
            "url": "https://files.pythonhosted.org/packages/75/cd/6c558ecac532eda1560054d99a982d394ba243a65379c00e7e9dd15ee519/pyromark-0.6.2-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb0bf9469f330da4ac4dd52ae0abe195343a2d838a59239147a9cd3b763d8cb5",
                "md5": "6e78bd0bd74018f287d8d0ef0beda8d1",
                "sha256": "0d00f8d71498d82596b2de9717f21e363927e57d9c8572a3902b2d1daf88f773"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e78bd0bd74018f287d8d0ef0beda8d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 347849,
            "upload_time": "2024-11-18T11:40:13",
            "upload_time_iso_8601": "2024-11-18T11:40:13.988910Z",
            "url": "https://files.pythonhosted.org/packages/cb/0b/f9469f330da4ac4dd52ae0abe195343a2d838a59239147a9cd3b763d8cb5/pyromark-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76f4c661bb95ec81eeeb50f056afd0ec96aa9accc60d94c13d231365a0a92d77",
                "md5": "23172e9dca2c4dbb4ab85ed37f14d14c",
                "sha256": "37d9056a702eb09f58c825ba7fd6d961b353f7a8a2cf456e3b01d89df853a4fb"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "23172e9dca2c4dbb4ab85ed37f14d14c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 328984,
            "upload_time": "2024-11-18T11:40:04",
            "upload_time_iso_8601": "2024-11-18T11:40:04.369127Z",
            "url": "https://files.pythonhosted.org/packages/76/f4/c661bb95ec81eeeb50f056afd0ec96aa9accc60d94c13d231365a0a92d77/pyromark-0.6.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8379d39577d85e083e3c20fd3bea4cc66446309773f99c5b1b10ce165199ffcf",
                "md5": "a7e3164321879644ce35e7b8acf32fd2",
                "sha256": "55f342eff239a7db0f547f28875f59b1177dffe54950c98c2c4495d8a009013a"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a7e3164321879644ce35e7b8acf32fd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 358190,
            "upload_time": "2024-11-18T11:38:06",
            "upload_time_iso_8601": "2024-11-18T11:38:06.186288Z",
            "url": "https://files.pythonhosted.org/packages/83/79/d39577d85e083e3c20fd3bea4cc66446309773f99c5b1b10ce165199ffcf/pyromark-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "180b4bc068b3c3983593dde25dfc8b233f23b3ba3f5db0f5a607e8db10c47137",
                "md5": "7d83dab5b012ef509c04fbdb5dfcd8bc",
                "sha256": "7bba38946cd14e30b2be16e0611620b469bc97522d2c7988552fc517980e6a97"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7d83dab5b012ef509c04fbdb5dfcd8bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 361338,
            "upload_time": "2024-11-18T11:38:29",
            "upload_time_iso_8601": "2024-11-18T11:38:29.170960Z",
            "url": "https://files.pythonhosted.org/packages/18/0b/4bc068b3c3983593dde25dfc8b233f23b3ba3f5db0f5a607e8db10c47137/pyromark-0.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e4999b814b32b9f232c42b799f396764574dba3c31e28d8b150f5c98bc51038",
                "md5": "6dd37bad3d6ec7f5b74a6ff46e0fe681",
                "sha256": "7ea8548a1aca2af5158a9a1a042b910fd9e0b3bc5f80af25ba55c483baa1ea23"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6dd37bad3d6ec7f5b74a6ff46e0fe681",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 410669,
            "upload_time": "2024-11-18T11:39:21",
            "upload_time_iso_8601": "2024-11-18T11:39:21.836154Z",
            "url": "https://files.pythonhosted.org/packages/7e/49/99b814b32b9f232c42b799f396764574dba3c31e28d8b150f5c98bc51038/pyromark-0.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa22f181a4be652594bc80074fa6366ac2566bdd3028c80994f7408846fce26f",
                "md5": "3e61bd2b575351579a1a90f5a4c8d770",
                "sha256": "f2e3a7f57d2bbe5f9613efbdcfdb7f823e26dbda379b1a134d9fcd6924702a6f"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "3e61bd2b575351579a1a90f5a4c8d770",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 416266,
            "upload_time": "2024-11-18T11:39:11",
            "upload_time_iso_8601": "2024-11-18T11:39:11.912973Z",
            "url": "https://files.pythonhosted.org/packages/fa/22/f181a4be652594bc80074fa6366ac2566bdd3028c80994f7408846fce26f/pyromark-0.6.2-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b98e4c120b4f1669f1aef9e9a0e9b7a6863fc4321161a80908158515a899d54",
                "md5": "d1fb71b63806ff8b8ca189bde6152b35",
                "sha256": "2c220bca34faf99ac365afd704dadab340453e8533118bc1e520a34b04dc2996"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d1fb71b63806ff8b8ca189bde6152b35",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 518844,
            "upload_time": "2024-11-18T11:39:31",
            "upload_time_iso_8601": "2024-11-18T11:39:31.334825Z",
            "url": "https://files.pythonhosted.org/packages/0b/98/e4c120b4f1669f1aef9e9a0e9b7a6863fc4321161a80908158515a899d54/pyromark-0.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b584ef29ddf90c30067e4329c04bba8aa8cb1d901cf301b2721c60020c227f80",
                "md5": "2626814ab20fcc77870855b870dc2648",
                "sha256": "f2d09e13ef56c1f385b000692615857d2c69fde703164d84190df17eba1bd900"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2626814ab20fcc77870855b870dc2648",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 380380,
            "upload_time": "2024-11-18T11:39:42",
            "upload_time_iso_8601": "2024-11-18T11:39:42.165738Z",
            "url": "https://files.pythonhosted.org/packages/b5/84/ef29ddf90c30067e4329c04bba8aa8cb1d901cf301b2721c60020c227f80/pyromark-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76c6767e332fe602cb1936e06a33be847ee33f05559f1aee897edb5deb6e4177",
                "md5": "5e3339738d36b01d4477f1d719e57cad",
                "sha256": "1861a6ef2984a7f64bd60076180421ca438e4de4a15b8b6c8f9eaac4be2b195b"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5e3339738d36b01d4477f1d719e57cad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 380056,
            "upload_time": "2024-11-18T11:38:51",
            "upload_time_iso_8601": "2024-11-18T11:38:51.363278Z",
            "url": "https://files.pythonhosted.org/packages/76/c6/767e332fe602cb1936e06a33be847ee33f05559f1aee897edb5deb6e4177/pyromark-0.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ecbe8caef069dd15193c0176606f8d977b5f1d5e092d4a5a2ba9b1f05bf7278",
                "md5": "996e82657dc15ec44b95ff62ea66ea75",
                "sha256": "6188aca53cfa404640a143c935e7d8ed79d5f9077b5c7339b2f3a3c2d50af7d8"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "996e82657dc15ec44b95ff62ea66ea75",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 536562,
            "upload_time": "2024-11-18T11:38:17",
            "upload_time_iso_8601": "2024-11-18T11:38:17.566527Z",
            "url": "https://files.pythonhosted.org/packages/4e/cb/e8caef069dd15193c0176606f8d977b5f1d5e092d4a5a2ba9b1f05bf7278/pyromark-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f94be220e30ebc513aee739baa6cc45fec755336878b3a3d63c1fc8ea62f5a39",
                "md5": "981c46dc9f397ec7c9a4c583096fcdad",
                "sha256": "0a4b7d2c26fbbf6e7f4dd6795b1002ca5be44f4e53f25fe34b26ec53bac4d4f7"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "981c46dc9f397ec7c9a4c583096fcdad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 617212,
            "upload_time": "2024-11-18T11:38:39",
            "upload_time_iso_8601": "2024-11-18T11:38:39.959602Z",
            "url": "https://files.pythonhosted.org/packages/f9/4b/e220e30ebc513aee739baa6cc45fec755336878b3a3d63c1fc8ea62f5a39/pyromark-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b4c3756456c35f5ec033393967f15cdc5f5f498672942ec4daaef29e29fcba0",
                "md5": "216292d4161506e2e0b26288679da007",
                "sha256": "b34b54da628c4d8d278b310c4989640999b813de6f39adb8b73bf79e649ff6fa"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "216292d4161506e2e0b26288679da007",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 551499,
            "upload_time": "2024-11-18T11:39:01",
            "upload_time_iso_8601": "2024-11-18T11:39:01.496778Z",
            "url": "https://files.pythonhosted.org/packages/2b/4c/3756456c35f5ec033393967f15cdc5f5f498672942ec4daaef29e29fcba0/pyromark-0.6.2-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7587b18be3a0a34487b8a0e1fa8d602127b206c15baa26aec4a5967b7bf00c3c",
                "md5": "5d597cce0c145e78ad03cacb8e4cfc53",
                "sha256": "9713001ee64782304925257e319e72d1cfdb8dc47a640c73e6345b7103a5e6a1"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d597cce0c145e78ad03cacb8e4cfc53",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 548823,
            "upload_time": "2024-11-18T11:39:53",
            "upload_time_iso_8601": "2024-11-18T11:39:53.239534Z",
            "url": "https://files.pythonhosted.org/packages/75/87/b18be3a0a34487b8a0e1fa8d602127b206c15baa26aec4a5967b7bf00c3c/pyromark-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1f7289a9e7a32557f179a7b739ba799699a8e35c95e6e867d219fb3ff487377",
                "md5": "a2b9d31fc0df6d1089812058f1d4b77e",
                "sha256": "410f3a94205d7422e76d65c505a9cd96aff6b711afa65a6da590b6183962733e"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a2b9d31fc0df6d1089812058f1d4b77e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 262647,
            "upload_time": "2024-11-18T11:40:24",
            "upload_time_iso_8601": "2024-11-18T11:40:24.853744Z",
            "url": "https://files.pythonhosted.org/packages/e1/f7/289a9e7a32557f179a7b739ba799699a8e35c95e6e867d219fb3ff487377/pyromark-0.6.2-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37b3e896633a6a68ad6a3d0412ec25224e42a90858e4c7fabe6078e2b4cfaacc",
                "md5": "7db3dbefe6df7797f38a42c15a4916fc",
                "sha256": "12683933f6a57a499bd50162efdec437dd0d710d28b415cc81bf8240fa5db771"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7db3dbefe6df7797f38a42c15a4916fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 275100,
            "upload_time": "2024-11-18T11:40:32",
            "upload_time_iso_8601": "2024-11-18T11:40:32.134017Z",
            "url": "https://files.pythonhosted.org/packages/37/b3/e896633a6a68ad6a3d0412ec25224e42a90858e4c7fabe6078e2b4cfaacc/pyromark-0.6.2-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77f11f098ac2ebaf0797afa797e61de864bf0f29dfee3f41d34787f78745d2fe",
                "md5": "f1fe7108a625b593d08971b75c8edd5c",
                "sha256": "cd398500f34b17f93c5b172685445349c03ddd84c29446b6d4162f807703cb77"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1fe7108a625b593d08971b75c8edd5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 347851,
            "upload_time": "2024-11-18T11:40:15",
            "upload_time_iso_8601": "2024-11-18T11:40:15.432447Z",
            "url": "https://files.pythonhosted.org/packages/77/f1/1f098ac2ebaf0797afa797e61de864bf0f29dfee3f41d34787f78745d2fe/pyromark-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da5ea1ba920ae06c6ebe4dea5a92c34eeca6b9787e60997648327c7364ecb4ae",
                "md5": "292dbbeb50d6876906ce4db72cfb590c",
                "sha256": "2ae89b66b9ba075c0aa7b4d57a879718be252da29f2229c241adebfa17fa6fc0"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "292dbbeb50d6876906ce4db72cfb590c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 328984,
            "upload_time": "2024-11-18T11:40:05",
            "upload_time_iso_8601": "2024-11-18T11:40:05.698757Z",
            "url": "https://files.pythonhosted.org/packages/da/5e/a1ba920ae06c6ebe4dea5a92c34eeca6b9787e60997648327c7364ecb4ae/pyromark-0.6.2-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8dd91de4f8fb66b7bb902566051611aa7c237d04caed48d4e133bb2d9b61cb06",
                "md5": "c87b82a09aac65ae3704ff3c278f98c1",
                "sha256": "7d46c0a120ac6113f9d08ab2a3dc50728276b31046410207bf23cff2e194515a"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c87b82a09aac65ae3704ff3c278f98c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 358188,
            "upload_time": "2024-11-18T11:38:08",
            "upload_time_iso_8601": "2024-11-18T11:38:08.047551Z",
            "url": "https://files.pythonhosted.org/packages/8d/d9/1de4f8fb66b7bb902566051611aa7c237d04caed48d4e133bb2d9b61cb06/pyromark-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2417d207a4bcbd12e1ee83c02560f809f28d29f41f381bdd246dc5bcad4bfad",
                "md5": "04641ada49445fa3a1b6bfd8eb17ce0a",
                "sha256": "dfc0c9646f305a926777fbe6d826ae5ffc2a13259f4a3c90d01ea96100eefa8c"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "04641ada49445fa3a1b6bfd8eb17ce0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 361339,
            "upload_time": "2024-11-18T11:38:31",
            "upload_time_iso_8601": "2024-11-18T11:38:31.105042Z",
            "url": "https://files.pythonhosted.org/packages/b2/41/7d207a4bcbd12e1ee83c02560f809f28d29f41f381bdd246dc5bcad4bfad/pyromark-0.6.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "794912a0d3c2a68079e0db366c9c9b1d259e177239d3ea0441c27d57c3df376b",
                "md5": "8fa4ccc87468f674ea63ff9f1e4b4839",
                "sha256": "39d5f44c6712f3757347850b5125a59ed621eb63abcd1ad104050d6b843a3f59"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8fa4ccc87468f674ea63ff9f1e4b4839",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 410669,
            "upload_time": "2024-11-18T11:39:23",
            "upload_time_iso_8601": "2024-11-18T11:39:23.110686Z",
            "url": "https://files.pythonhosted.org/packages/79/49/12a0d3c2a68079e0db366c9c9b1d259e177239d3ea0441c27d57c3df376b/pyromark-0.6.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0f01d90bc5911b64d45f4917ff68cf6a810b0cc00a4601472f1be67b18832f5",
                "md5": "198ed60e409f3195c53c662353ae50cc",
                "sha256": "f88fe6e1f83c426fa1c9767f059a0bf0fbd77c51ec6f897c888fae71ed2f4fa5"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "198ed60e409f3195c53c662353ae50cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 416266,
            "upload_time": "2024-11-18T11:39:13",
            "upload_time_iso_8601": "2024-11-18T11:39:13.267259Z",
            "url": "https://files.pythonhosted.org/packages/d0/f0/1d90bc5911b64d45f4917ff68cf6a810b0cc00a4601472f1be67b18832f5/pyromark-0.6.2-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d9dab30e772835c83230d46d571b57fe34a95cfb9a7f1b822718f0e3b6d23a6",
                "md5": "0e593b2c162d8530c1f27d4aa0a85140",
                "sha256": "2e5c4f25f3dcc278ec9d8024b8c8a8d6b95de0a271f15a6c92f47f356d444154"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0e593b2c162d8530c1f27d4aa0a85140",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 518845,
            "upload_time": "2024-11-18T11:39:32",
            "upload_time_iso_8601": "2024-11-18T11:39:32.682699Z",
            "url": "https://files.pythonhosted.org/packages/7d/9d/ab30e772835c83230d46d571b57fe34a95cfb9a7f1b822718f0e3b6d23a6/pyromark-0.6.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcc5b3f72d470fe1a54471e9efc36d0ba8d2024279e352c7bebe4fd162968f36",
                "md5": "03d963113c30bf60e048a546c2a23bbb",
                "sha256": "455c4cf5cd370e0fbf3b463abd9347c67a8fce5cf55ff015080387bdbf7ce3e1"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03d963113c30bf60e048a546c2a23bbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 380381,
            "upload_time": "2024-11-18T11:39:44",
            "upload_time_iso_8601": "2024-11-18T11:39:44.075643Z",
            "url": "https://files.pythonhosted.org/packages/dc/c5/b3f72d470fe1a54471e9efc36d0ba8d2024279e352c7bebe4fd162968f36/pyromark-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00e26b94f572a6fbace2d801515a40440b192dea2538cf4c278941f42ae4ff44",
                "md5": "837d09ba660d09322995f6ce880dd6ee",
                "sha256": "e5d8e3eb4c2891c8d1775eda22d335c782cf5ac43724a949f4833699cc90c315"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "837d09ba660d09322995f6ce880dd6ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 380055,
            "upload_time": "2024-11-18T11:38:52",
            "upload_time_iso_8601": "2024-11-18T11:38:52.564066Z",
            "url": "https://files.pythonhosted.org/packages/00/e2/6b94f572a6fbace2d801515a40440b192dea2538cf4c278941f42ae4ff44/pyromark-0.6.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4659affc51f07d0cdd2e0db0cc155b3cec2a687b09978ee70d9249e555828e6",
                "md5": "286d46c5ff20d879cb3999b787b77748",
                "sha256": "fe5203581e22988f22314cf3b2ff34dc359945932e151ef3294f1ac36efd7e48"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "286d46c5ff20d879cb3999b787b77748",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 536564,
            "upload_time": "2024-11-18T11:38:18",
            "upload_time_iso_8601": "2024-11-18T11:38:18.907396Z",
            "url": "https://files.pythonhosted.org/packages/c4/65/9affc51f07d0cdd2e0db0cc155b3cec2a687b09978ee70d9249e555828e6/pyromark-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63757eaab5a18ad9bbeba8a438663019535767a0c7973c86116571bed73b7add",
                "md5": "3f5549e31efc6bb275e6fc49a89e9653",
                "sha256": "9e9ba9b7f463190c3973d7c9c1f79a3fe21b222385e75729e95b9052354aa9e7"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3f5549e31efc6bb275e6fc49a89e9653",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 617212,
            "upload_time": "2024-11-18T11:38:41",
            "upload_time_iso_8601": "2024-11-18T11:38:41.874435Z",
            "url": "https://files.pythonhosted.org/packages/63/75/7eaab5a18ad9bbeba8a438663019535767a0c7973c86116571bed73b7add/pyromark-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65e5d674b7e7581201cb05849fb18bf9a2125f4cf00870029b9d01cc2e2b1d3e",
                "md5": "80c51dbdbd76ddeb6a927d65c5df1c8d",
                "sha256": "9975fe3bb6e1bdd976ed529337934f77bab88ab9be45575b7f60b837ee56df87"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "80c51dbdbd76ddeb6a927d65c5df1c8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 551499,
            "upload_time": "2024-11-18T11:39:02",
            "upload_time_iso_8601": "2024-11-18T11:39:02.954857Z",
            "url": "https://files.pythonhosted.org/packages/65/e5/d674b7e7581201cb05849fb18bf9a2125f4cf00870029b9d01cc2e2b1d3e/pyromark-0.6.2-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9deda5c0d3cef66cc76db2d56c633e97e672a09f5c23581b83a3aca9eb2458e",
                "md5": "006d9ba50da4c071f9f4d17f40856ae9",
                "sha256": "5246f3f15639fd4ecf30f6213b7f054d716d68c7be6dd18ac137bf9d3df9ee09"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "006d9ba50da4c071f9f4d17f40856ae9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 548822,
            "upload_time": "2024-11-18T11:39:55",
            "upload_time_iso_8601": "2024-11-18T11:39:55.375012Z",
            "url": "https://files.pythonhosted.org/packages/f9/de/da5c0d3cef66cc76db2d56c633e97e672a09f5c23581b83a3aca9eb2458e/pyromark-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad170c7b4b9ede5017571c0306d2bc6a03fe35611ac06be96102af2950d6085d",
                "md5": "cdb32531deaed599a4fb18881fb543e3",
                "sha256": "9848f64da73f06528f933c509726088cced72275fed0eb6dd21a87350db753a0"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-none-win32.whl",
            "has_sig": false,
            "md5_digest": "cdb32531deaed599a4fb18881fb543e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 262379,
            "upload_time": "2024-11-18T11:40:26",
            "upload_time_iso_8601": "2024-11-18T11:40:26.206120Z",
            "url": "https://files.pythonhosted.org/packages/ad/17/0c7b4b9ede5017571c0306d2bc6a03fe35611ac06be96102af2950d6085d/pyromark-0.6.2-cp313-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98efc4f60cef7955332d3c8867e76e110e2dab83a40b6fc829995ac9e7db0e82",
                "md5": "7ee37ab06fd7a6935c1c7e498ddd087a",
                "sha256": "e127d59a52bad0d803eebc402026c96f57a79fdcd9ef3905a51dd350bcd1bfec"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp313-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7ee37ab06fd7a6935c1c7e498ddd087a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 274758,
            "upload_time": "2024-11-18T11:40:33",
            "upload_time_iso_8601": "2024-11-18T11:40:33.735333Z",
            "url": "https://files.pythonhosted.org/packages/98/ef/c4f60cef7955332d3c8867e76e110e2dab83a40b6fc829995ac9e7db0e82/pyromark-0.6.2-cp313-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fdd065b9def1856d2f6042940795c89c1e55da571a941ad4afce5a5cd25daa7",
                "md5": "c0fb7075f643baae4d16a3847918bb13",
                "sha256": "fe7f30999401c77a0643f3d284755af28c9bc85b4bcff6efb8bafe16a4496d26"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c0fb7075f643baae4d16a3847918bb13",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 347852,
            "upload_time": "2024-11-18T11:40:16",
            "upload_time_iso_8601": "2024-11-18T11:40:16.781503Z",
            "url": "https://files.pythonhosted.org/packages/8f/dd/065b9def1856d2f6042940795c89c1e55da571a941ad4afce5a5cd25daa7/pyromark-0.6.2-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58a1c73ea690ecab12694d538844e6a7bd836a7334314c636b578354b645b822",
                "md5": "26542def4dc52ea224d52fea74ce6408",
                "sha256": "1d8d693b81df268853cebf5cafa320095d1aa68ed410e083ab9525a87e5baddf"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "26542def4dc52ea224d52fea74ce6408",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 328978,
            "upload_time": "2024-11-18T11:40:07",
            "upload_time_iso_8601": "2024-11-18T11:40:07.046418Z",
            "url": "https://files.pythonhosted.org/packages/58/a1/c73ea690ecab12694d538844e6a7bd836a7334314c636b578354b645b822/pyromark-0.6.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58c268f0aa506b64fc1ca068417f1eed783c1f432674ab6a46e7f89cdefa3114",
                "md5": "9c67a122d670804d754b90b1493b5b12",
                "sha256": "37ddf6677e0097ecca0debd76e5726ca5bfec1cd8059f558b9d3e90afd004f3f"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9c67a122d670804d754b90b1493b5b12",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 358186,
            "upload_time": "2024-11-18T11:38:09",
            "upload_time_iso_8601": "2024-11-18T11:38:09.275974Z",
            "url": "https://files.pythonhosted.org/packages/58/c2/68f0aa506b64fc1ca068417f1eed783c1f432674ab6a46e7f89cdefa3114/pyromark-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e951bdae75cb17ce9bb8e3d3fbf23fd0567d3062a155e761112b799d22c23739",
                "md5": "167d727d4213cce99da22a247fd41118",
                "sha256": "1d991fdd870c3f08f0c49ae3fff48f39dce3154ca52e4f5bb4b5a6e2778be32b"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "167d727d4213cce99da22a247fd41118",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 361338,
            "upload_time": "2024-11-18T11:38:32",
            "upload_time_iso_8601": "2024-11-18T11:38:32.333068Z",
            "url": "https://files.pythonhosted.org/packages/e9/51/bdae75cb17ce9bb8e3d3fbf23fd0567d3062a155e761112b799d22c23739/pyromark-0.6.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "044461bbc4f52e36742c21156b312cd8e1b21bb42cf46f25f2ec4787074ffd2c",
                "md5": "d98d1dd0b6a67274edf93ac812c8b942",
                "sha256": "ab3b82780e221dd723e7082b911493eeac5f1fd2d79d43cdfdeae76c31ed9c41"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d98d1dd0b6a67274edf93ac812c8b942",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 410666,
            "upload_time": "2024-11-18T11:39:24",
            "upload_time_iso_8601": "2024-11-18T11:39:24.370449Z",
            "url": "https://files.pythonhosted.org/packages/04/44/61bbc4f52e36742c21156b312cd8e1b21bb42cf46f25f2ec4787074ffd2c/pyromark-0.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5d3459fbd3ceb29cb5934b9e90a9e84bbe6e5b5500215c955b12d3bb14d6ce8",
                "md5": "0aa5e3193cb7154812bef61cf558e952",
                "sha256": "986d0076ced8a7d8532585caf02c58a921d499abc74ecc83ee178afdbf58a953"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "0aa5e3193cb7154812bef61cf558e952",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 416261,
            "upload_time": "2024-11-18T11:39:14",
            "upload_time_iso_8601": "2024-11-18T11:39:14.594515Z",
            "url": "https://files.pythonhosted.org/packages/b5/d3/459fbd3ceb29cb5934b9e90a9e84bbe6e5b5500215c955b12d3bb14d6ce8/pyromark-0.6.2-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f509e66087fba919ebac726a77ba9edfeea2e829a3fa5acbf80a429912098f3",
                "md5": "90e0ad72cf9c707e46777cec3b5fd659",
                "sha256": "f53caf8dd545958b8b8e1e6a879ff2823d92976c2991369efc7185d98b63bf06"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "90e0ad72cf9c707e46777cec3b5fd659",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 518840,
            "upload_time": "2024-11-18T11:39:34",
            "upload_time_iso_8601": "2024-11-18T11:39:34.230160Z",
            "url": "https://files.pythonhosted.org/packages/7f/50/9e66087fba919ebac726a77ba9edfeea2e829a3fa5acbf80a429912098f3/pyromark-0.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fed37abbb2709fda39007c73fc58ab772bc448576d98a2048744d6162ca1a32f",
                "md5": "288c88ad03ac9e8fe3a58d27e0939acf",
                "sha256": "9c138b838ca15d1f412844fc5e5b02b6fc28129ac2f620e4374434c0a65a674b"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "288c88ad03ac9e8fe3a58d27e0939acf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 380379,
            "upload_time": "2024-11-18T11:39:45",
            "upload_time_iso_8601": "2024-11-18T11:39:45.585017Z",
            "url": "https://files.pythonhosted.org/packages/fe/d3/7abbb2709fda39007c73fc58ab772bc448576d98a2048744d6162ca1a32f/pyromark-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47834410cb9d04e35a1a321b4e8c5ff55c8dc5bde2539512cb89f4ee05dfd581",
                "md5": "d46a6132ef62e01c7f99f8a1738a85b8",
                "sha256": "a51f8ef63587089455225cb820ec0a8c6ec197425bf265f405fec47a5e20dace"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "d46a6132ef62e01c7f99f8a1738a85b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 380054,
            "upload_time": "2024-11-18T11:38:53",
            "upload_time_iso_8601": "2024-11-18T11:38:53.837673Z",
            "url": "https://files.pythonhosted.org/packages/47/83/4410cb9d04e35a1a321b4e8c5ff55c8dc5bde2539512cb89f4ee05dfd581/pyromark-0.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afe4138b246350f91ec621084a00494826e3686e34dfaacd5688610fc488d130",
                "md5": "2792c4f56a2ed7aea040cb31ac48f45d",
                "sha256": "b2e005560705adedc79a0b13201fa7e0f7c79b153adbf8a2254f18fde52e309f"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2792c4f56a2ed7aea040cb31ac48f45d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 536558,
            "upload_time": "2024-11-18T11:38:20",
            "upload_time_iso_8601": "2024-11-18T11:38:20.972857Z",
            "url": "https://files.pythonhosted.org/packages/af/e4/138b246350f91ec621084a00494826e3686e34dfaacd5688610fc488d130/pyromark-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea366c410043a5db475276f3bde870e2b534f8aef7adf6b50596c9e0be4cda65",
                "md5": "af67598c0a1549012045b251c8357d65",
                "sha256": "e5552ffc12c87ea446f1379ae2239190cdc84c198fe3cabed5b60e09c6ceaae1"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "af67598c0a1549012045b251c8357d65",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 617205,
            "upload_time": "2024-11-18T11:38:43",
            "upload_time_iso_8601": "2024-11-18T11:38:43.114331Z",
            "url": "https://files.pythonhosted.org/packages/ea/36/6c410043a5db475276f3bde870e2b534f8aef7adf6b50596c9e0be4cda65/pyromark-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9338167d85b97f3d7251ed9e8d4ad3b330650dae69c45423ff0003934cfd00f1",
                "md5": "d3fe2c0a57d10e28c8caf23eabe4df19",
                "sha256": "c1017ca4ca7061efddcd21dfa322bbe9222ba93312ffec722751c4d29e06ef30"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d3fe2c0a57d10e28c8caf23eabe4df19",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 551498,
            "upload_time": "2024-11-18T11:39:04",
            "upload_time_iso_8601": "2024-11-18T11:39:04.339556Z",
            "url": "https://files.pythonhosted.org/packages/93/38/167d85b97f3d7251ed9e8d4ad3b330650dae69c45423ff0003934cfd00f1/pyromark-0.6.2-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9ed19ac37bbb26be918803d2fc4e331edccfbe0125f2b9e1b9a57968279f8bd",
                "md5": "31c819639eb1dc02d570e6e20cdee6a0",
                "sha256": "b393cd9c29e40128adbaa22cba067038b96eb53ec7dc0f0c3dd1fe8f85d848e5"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31c819639eb1dc02d570e6e20cdee6a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 548817,
            "upload_time": "2024-11-18T11:39:56",
            "upload_time_iso_8601": "2024-11-18T11:39:56.679903Z",
            "url": "https://files.pythonhosted.org/packages/f9/ed/19ac37bbb26be918803d2fc4e331edccfbe0125f2b9e1b9a57968279f8bd/pyromark-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30f317d22a551f9f60839159719f87f1dd15a4de9a90d3db95d53746348350f3",
                "md5": "db96d28e42eaf51e407b3ea44c32c58a",
                "sha256": "e848870d7e4dd9f91eea46a00fe39cfbc8e9f00c14bc47fadafd0503577fc2a6"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "db96d28e42eaf51e407b3ea44c32c58a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 262571,
            "upload_time": "2024-11-18T11:40:27",
            "upload_time_iso_8601": "2024-11-18T11:40:27.715506Z",
            "url": "https://files.pythonhosted.org/packages/30/f3/17d22a551f9f60839159719f87f1dd15a4de9a90d3db95d53746348350f3/pyromark-0.6.2-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87ca327ae3217df38da9c44cf2e35c216a2b410c6a093bf2def9f6d14cdf01df",
                "md5": "8a00a9c19a04a8980463742b5db50848",
                "sha256": "78a288d2028a366cac92587a14e58198bedd7ebcaabf2e59819e08fc9179ee6a"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8a00a9c19a04a8980463742b5db50848",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 274771,
            "upload_time": "2024-11-18T11:40:35",
            "upload_time_iso_8601": "2024-11-18T11:40:35.339991Z",
            "url": "https://files.pythonhosted.org/packages/87/ca/327ae3217df38da9c44cf2e35c216a2b410c6a093bf2def9f6d14cdf01df/pyromark-0.6.2-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d41dab16a6b1e0e54864b1ba173ed6a20a1c9d88801fa2dc6f3d11d5cbcd3b7c",
                "md5": "e99db9c0f404042440e5f58d6df9ae69",
                "sha256": "26be5d050bf9217849a2df1a60dd28b962aee752a67b83e8eb98bf7be35f3921"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e99db9c0f404042440e5f58d6df9ae69",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 347979,
            "upload_time": "2024-11-18T11:40:18",
            "upload_time_iso_8601": "2024-11-18T11:40:18.209334Z",
            "url": "https://files.pythonhosted.org/packages/d4/1d/ab16a6b1e0e54864b1ba173ed6a20a1c9d88801fa2dc6f3d11d5cbcd3b7c/pyromark-0.6.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ed494c8780a30ce161d3dc848e41549c0b32b55b6a6040c63e09cbbbeb6f573",
                "md5": "1901d1d9ddbfd76c3a9b0cee5006e88f",
                "sha256": "30e327f21ca23a082993cbd63e410dcb0526752514b90c9d440bd1f985f07de0"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1901d1d9ddbfd76c3a9b0cee5006e88f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 328910,
            "upload_time": "2024-11-18T11:40:08",
            "upload_time_iso_8601": "2024-11-18T11:40:08.486746Z",
            "url": "https://files.pythonhosted.org/packages/0e/d4/94c8780a30ce161d3dc848e41549c0b32b55b6a6040c63e09cbbbeb6f573/pyromark-0.6.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "266c5d2eff14b374dea19b7dcc8bc978cece97aca026cb939b34d00c49059f09",
                "md5": "19247a5eb7d9dc5de76bd1bb4d4af8ee",
                "sha256": "f78abc90a3de9090cf8430aa9bad21f0d33f841e7eda027e26bb8921c249580b"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "19247a5eb7d9dc5de76bd1bb4d4af8ee",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 358430,
            "upload_time": "2024-11-18T11:38:10",
            "upload_time_iso_8601": "2024-11-18T11:38:10.469255Z",
            "url": "https://files.pythonhosted.org/packages/26/6c/5d2eff14b374dea19b7dcc8bc978cece97aca026cb939b34d00c49059f09/pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a86b9e69f36e6045a70d9a8f1571e420e5d5fdb7048d7ee01761703e786c8ba",
                "md5": "e006a469d0b3a996f1c237565126290f",
                "sha256": "543ae72dcf6af6ab23dfe038483e70e9fdfd3c3cffa42eb6f7853b2b16693c30"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e006a469d0b3a996f1c237565126290f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 362179,
            "upload_time": "2024-11-18T11:38:33",
            "upload_time_iso_8601": "2024-11-18T11:38:33.591557Z",
            "url": "https://files.pythonhosted.org/packages/5a/86/b9e69f36e6045a70d9a8f1571e420e5d5fdb7048d7ee01761703e786c8ba/pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0be04d082b551f07cb8982f7f0bc9c4f16777448d3f20960e7579153af58951e",
                "md5": "fc92d8e1d0d6089f9a999f23abab5aab",
                "sha256": "6037eb758ce4382953758f86b1477007d175e368b85a0549eb3a40e99d06d98f"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fc92d8e1d0d6089f9a999f23abab5aab",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 410718,
            "upload_time": "2024-11-18T11:39:25",
            "upload_time_iso_8601": "2024-11-18T11:39:25.678730Z",
            "url": "https://files.pythonhosted.org/packages/0b/e0/4d082b551f07cb8982f7f0bc9c4f16777448d3f20960e7579153af58951e/pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7fb8d5ee158e86cd6c918af0215960a84a4b3f4114eb3efb1415f618c9187d9",
                "md5": "cc219ee3b134533884c9da47e3c2d381",
                "sha256": "81f59da66aa419fa7ec06ff7f55f256bf5efef98805882fe5936502cf9e550b6"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "cc219ee3b134533884c9da47e3c2d381",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 416616,
            "upload_time": "2024-11-18T11:39:15",
            "upload_time_iso_8601": "2024-11-18T11:39:15.899773Z",
            "url": "https://files.pythonhosted.org/packages/b7/fb/8d5ee158e86cd6c918af0215960a84a4b3f4114eb3efb1415f618c9187d9/pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11a0b31e46e737dae8c9a25ebadbef6e8e35706ec833065273c02d5d717de6bf",
                "md5": "e90fa56d186b44a8baff4b60af156a17",
                "sha256": "bae36131b480e17996373f5f8c8f0fac794738a1621e0b1bf4a4caa0f2e724ac"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e90fa56d186b44a8baff4b60af156a17",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 519135,
            "upload_time": "2024-11-18T11:39:35",
            "upload_time_iso_8601": "2024-11-18T11:39:35.493970Z",
            "url": "https://files.pythonhosted.org/packages/11/a0/b31e46e737dae8c9a25ebadbef6e8e35706ec833065273c02d5d717de6bf/pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f188ab6a7bd347e64fc9072302f1c0719f9ffe31b30a4fa22ca918a8f0922a3",
                "md5": "9791107d7a35e62a2bbe58dbd68564f8",
                "sha256": "331bceea514586bdbb4e550e507ce6461e0dc347a38e6c68170413eee5b92ae1"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9791107d7a35e62a2bbe58dbd68564f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 380576,
            "upload_time": "2024-11-18T11:39:46",
            "upload_time_iso_8601": "2024-11-18T11:39:46.897179Z",
            "url": "https://files.pythonhosted.org/packages/2f/18/8ab6a7bd347e64fc9072302f1c0719f9ffe31b30a4fa22ca918a8f0922a3/pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8139e9dd0fbfa56ac5a7c3435302dc2bfaef8fe6596e23dff5b916079375ab38",
                "md5": "e40b3140d3349d0828c219198afd7712",
                "sha256": "913862a449740da433bbdd449207430cdafd110586ffc0d539c69658475a7a0f"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e40b3140d3349d0828c219198afd7712",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 380683,
            "upload_time": "2024-11-18T11:38:55",
            "upload_time_iso_8601": "2024-11-18T11:38:55.821448Z",
            "url": "https://files.pythonhosted.org/packages/81/39/e9dd0fbfa56ac5a7c3435302dc2bfaef8fe6596e23dff5b916079375ab38/pyromark-0.6.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db7050d1048c634683f8c8e6a6c90fb4601fbd734b48ed52f2b38151b75bc876",
                "md5": "5e8eaad3d5d2a3ddfb1be0ef5ebf2f47",
                "sha256": "c18e0338392fc84fadf560db4b661402ceea9f793f1a3499f9cafbdba745adf8"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5e8eaad3d5d2a3ddfb1be0ef5ebf2f47",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 537017,
            "upload_time": "2024-11-18T11:38:22",
            "upload_time_iso_8601": "2024-11-18T11:38:22.208937Z",
            "url": "https://files.pythonhosted.org/packages/db/70/50d1048c634683f8c8e6a6c90fb4601fbd734b48ed52f2b38151b75bc876/pyromark-0.6.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a47eb62ccab765ecf134626a3cd7e01c9aae46b4834027d9c415b9910f8d5696",
                "md5": "ffe84b262d6d5c7e40155e083c4ba3b9",
                "sha256": "e7c511fce52c6edc9eb284cb54c8c1f8327db4faac03b0d1e6f1409cda961f55"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ffe84b262d6d5c7e40155e083c4ba3b9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 618500,
            "upload_time": "2024-11-18T11:38:44",
            "upload_time_iso_8601": "2024-11-18T11:38:44.490955Z",
            "url": "https://files.pythonhosted.org/packages/a4/7e/b62ccab765ecf134626a3cd7e01c9aae46b4834027d9c415b9910f8d5696/pyromark-0.6.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11c369de0fb8a5e56400d9f170454e963de157ffc4ff8fff6bfa90fe7b0ff79a",
                "md5": "972be39de89c6c71f7a5e428f9e1b04e",
                "sha256": "ef503a871d05f7df80702cd30c2f1bd093f01fe5521703b696e57a62fdeaab1b"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "972be39de89c6c71f7a5e428f9e1b04e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 552333,
            "upload_time": "2024-11-18T11:39:05",
            "upload_time_iso_8601": "2024-11-18T11:39:05.637810Z",
            "url": "https://files.pythonhosted.org/packages/11/c3/69de0fb8a5e56400d9f170454e963de157ffc4ff8fff6bfa90fe7b0ff79a/pyromark-0.6.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c8737cdd4cd0cd4967e3e5b7b59de510492030044990dc832ffbca9cd6acc75",
                "md5": "01e49847f6e6498117f8273e3103a758",
                "sha256": "aefafde79ac5f37fb2685f733230d7d80d6e1a1911f0f032e1d13b9c12f8d350"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01e49847f6e6498117f8273e3103a758",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 549544,
            "upload_time": "2024-11-18T11:39:58",
            "upload_time_iso_8601": "2024-11-18T11:39:58.091521Z",
            "url": "https://files.pythonhosted.org/packages/6c/87/37cdd4cd0cd4967e3e5b7b59de510492030044990dc832ffbca9cd6acc75/pyromark-0.6.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cae1523fb85e7d5cb0d97d0c1e22b934c8e32ef493f65981ea584dd462ed0276",
                "md5": "e3dc3a3237f2b61bbe2c574cdac49b6d",
                "sha256": "0ad3f4b5e9d9fd59ae24cbb397ec0962d062e057bda6808a64fb8c1845de842b"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3dc3a3237f2b61bbe2c574cdac49b6d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 348293,
            "upload_time": "2024-11-18T11:40:19",
            "upload_time_iso_8601": "2024-11-18T11:40:19.649120Z",
            "url": "https://files.pythonhosted.org/packages/ca/e1/523fb85e7d5cb0d97d0c1e22b934c8e32ef493f65981ea584dd462ed0276/pyromark-0.6.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b247b2c174059ecbfaefbf633191f6f25491f23d8ef56cc712d1cf545d60e6c",
                "md5": "82751c28c223d74036e0f8f310cb7771",
                "sha256": "00151db66a9bb029374deef29ff4ac0638a4c600ab93abff2b80b80a1b3f6577"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "82751c28c223d74036e0f8f310cb7771",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 329205,
            "upload_time": "2024-11-18T11:40:09",
            "upload_time_iso_8601": "2024-11-18T11:40:09.778273Z",
            "url": "https://files.pythonhosted.org/packages/8b/24/7b2c174059ecbfaefbf633191f6f25491f23d8ef56cc712d1cf545d60e6c/pyromark-0.6.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53e605bc85a0b1e32ed35e979fdb35c2bd09f7434a3b92505197fc919020df84",
                "md5": "befdbfc87c77cf6fc9f113c23deca671",
                "sha256": "efca016aca59eb1bf783cc77607d83fe3869ee00d2906e9f1f046f5c6b06ae5e"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "befdbfc87c77cf6fc9f113c23deca671",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 358427,
            "upload_time": "2024-11-18T11:38:11",
            "upload_time_iso_8601": "2024-11-18T11:38:11.862281Z",
            "url": "https://files.pythonhosted.org/packages/53/e6/05bc85a0b1e32ed35e979fdb35c2bd09f7434a3b92505197fc919020df84/pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac55c705df7a4d6844172e2541dd9413d8a9d186cdf86286137187eeaa9c5c13",
                "md5": "e1fc415a090909e1ee1bc4afdb1e91b1",
                "sha256": "68be16e387dfeb737199db4582fb735e1dd2373a483d1178cd4e1f1e3a206ac2"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e1fc415a090909e1ee1bc4afdb1e91b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 362175,
            "upload_time": "2024-11-18T11:38:35",
            "upload_time_iso_8601": "2024-11-18T11:38:35.402756Z",
            "url": "https://files.pythonhosted.org/packages/ac/55/c705df7a4d6844172e2541dd9413d8a9d186cdf86286137187eeaa9c5c13/pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97bbbe13773085a35e3048043977a2b777c8cdf2877cfc58fe052d77b673ebc2",
                "md5": "482d62cba9ee9b7a4099138b26416ad4",
                "sha256": "65c80fcc9e85871b630add34b1f6aab782d111de86aafe2bcf29188f900afdc7"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "482d62cba9ee9b7a4099138b26416ad4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 410715,
            "upload_time": "2024-11-18T11:39:27",
            "upload_time_iso_8601": "2024-11-18T11:39:27.162024Z",
            "url": "https://files.pythonhosted.org/packages/97/bb/be13773085a35e3048043977a2b777c8cdf2877cfc58fe052d77b673ebc2/pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fddf2071db07cf04a0eb559c47765fc10052e3eb2e035505c2157a20c00d95a7",
                "md5": "25a7445c0a3bd1a713f9275955ceb745",
                "sha256": "ed3339c0687545e0544dfd69acba4cbc94f98cffc061437d5eadc2c2fa826c77"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "25a7445c0a3bd1a713f9275955ceb745",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 416610,
            "upload_time": "2024-11-18T11:39:17",
            "upload_time_iso_8601": "2024-11-18T11:39:17.159373Z",
            "url": "https://files.pythonhosted.org/packages/fd/df/2071db07cf04a0eb559c47765fc10052e3eb2e035505c2157a20c00d95a7/pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9be761d1076659885317b3c4bdc5ab59ee27ff60403650b58870edc2702c21ac",
                "md5": "025dc86b15142e736623091d148995ae",
                "sha256": "532a4719253d0ba0751cdfa85c239ad413c1855027b5b9b69fefb20322cd92d0"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "025dc86b15142e736623091d148995ae",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 519132,
            "upload_time": "2024-11-18T11:39:36",
            "upload_time_iso_8601": "2024-11-18T11:39:36.934964Z",
            "url": "https://files.pythonhosted.org/packages/9b/e7/61d1076659885317b3c4bdc5ab59ee27ff60403650b58870edc2702c21ac/pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc508d5b8d5e8b78bcbdeee6623d3ec8ca3d98b3e19e388c32dbd85abd2b1f14",
                "md5": "67e7eb53261a3531aa10c0e6372d4e0a",
                "sha256": "eab3cd9f07875bdfc736851e738acff8f016735fbeab9a65c134202de4deb469"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67e7eb53261a3531aa10c0e6372d4e0a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 380852,
            "upload_time": "2024-11-18T11:39:49",
            "upload_time_iso_8601": "2024-11-18T11:39:49.153815Z",
            "url": "https://files.pythonhosted.org/packages/fc/50/8d5b8d5e8b78bcbdeee6623d3ec8ca3d98b3e19e388c32dbd85abd2b1f14/pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27d04b422945c56bf85af896db7f5d0831ab8adbab6a919791a9df7b51868e61",
                "md5": "13fc711beec16dc4081bddf523a6339d",
                "sha256": "ba6197593b9181fdd8f0676c03f602a5ac83d36d8424c5735effe803d269cc33"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "13fc711beec16dc4081bddf523a6339d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 380680,
            "upload_time": "2024-11-18T11:38:57",
            "upload_time_iso_8601": "2024-11-18T11:38:57.068056Z",
            "url": "https://files.pythonhosted.org/packages/27/d0/4b422945c56bf85af896db7f5d0831ab8adbab6a919791a9df7b51868e61/pyromark-0.6.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0a47bc0500707f418a5a083d66338ff766727c3bbefa9ad5499e4cbb22f5113",
                "md5": "bcf096846f7b9d046a9e7e7d4ae78f16",
                "sha256": "ecc8ef53c48ce706f1db21be6cd5fcf6873b54f6b0a28b3951014b9cb5eae5f5"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bcf096846f7b9d046a9e7e7d4ae78f16",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 537010,
            "upload_time": "2024-11-18T11:38:23",
            "upload_time_iso_8601": "2024-11-18T11:38:23.472667Z",
            "url": "https://files.pythonhosted.org/packages/a0/a4/7bc0500707f418a5a083d66338ff766727c3bbefa9ad5499e4cbb22f5113/pyromark-0.6.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0599c55b0c884460f5caee50a5df9438b34dd0547e338026ca340f08c893b237",
                "md5": "021efc01dd696d31d501c3649c6094c3",
                "sha256": "78d834c47033f28fca464e7085e7dab3c71765a768e9f3e3adffc2bebc07a696"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "021efc01dd696d31d501c3649c6094c3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 618493,
            "upload_time": "2024-11-18T11:38:45",
            "upload_time_iso_8601": "2024-11-18T11:38:45.911389Z",
            "url": "https://files.pythonhosted.org/packages/05/99/c55b0c884460f5caee50a5df9438b34dd0547e338026ca340f08c893b237/pyromark-0.6.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f87b1a66c361119c2a3270c260686554f256acebfa6f77a7978099487c54de56",
                "md5": "2547aefd4ed4668ccdc0d974dc07093f",
                "sha256": "d80602c0937c114265a2b66e58b5d9c6b752e6e0bb3c85e74aa354ac83858335"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2547aefd4ed4668ccdc0d974dc07093f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 552325,
            "upload_time": "2024-11-18T11:39:06",
            "upload_time_iso_8601": "2024-11-18T11:39:06.943068Z",
            "url": "https://files.pythonhosted.org/packages/f8/7b/1a66c361119c2a3270c260686554f256acebfa6f77a7978099487c54de56/pyromark-0.6.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0583ea5238375d565d4db702bf4e9017fe4116036cfc040b36db22eb68074719",
                "md5": "ddeb4776620252f04d9f48cfae340297",
                "sha256": "7e617f208cbeb4f3ca676209164eb50856e743b33e0ebbf9804a6daf16a7949f"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ddeb4776620252f04d9f48cfae340297",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 549537,
            "upload_time": "2024-11-18T11:39:59",
            "upload_time_iso_8601": "2024-11-18T11:39:59.433780Z",
            "url": "https://files.pythonhosted.org/packages/05/83/ea5238375d565d4db702bf4e9017fe4116036cfc040b36db22eb68074719/pyromark-0.6.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "572a9a355ed2838ba909b2f1746aa754ff3deaf073ffe42c3120606108672b0c",
                "md5": "077a07c1f925fd1f2e074892808e08fe",
                "sha256": "b302a951f4ec98ba9f6aa14f9158e1f7eb97580f9eb6060e64896c58917cfd7c"
            },
            "downloads": -1,
            "filename": "pyromark-0.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "077a07c1f925fd1f2e074892808e08fe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 9489,
            "upload_time": "2024-11-18T11:40:20",
            "upload_time_iso_8601": "2024-11-18T11:40:20.984898Z",
            "url": "https://files.pythonhosted.org/packages/57/2a/9a355ed2838ba909b2f1746aa754ff3deaf073ffe42c3120606108672b0c/pyromark-0.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-18 11:40:20",
    "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: 0.38968s