pyromark


Namepyromark JSON
Version 0.7.1 PyPI version JSON
download
home_pageNone
SummaryBlazingly fast Markdown parser
upload_time2024-12-24 12:43:09
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/2a/e3/b22937e10a54c5b9ffe8695c9bac356ed591faa6f95e580184445b13aa7c/pyromark-0.7.1.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.7.1",
    "project_urls": {
        "documentation": "https://pyromark.readthedocs.io",
        "repository": "https://github.com/monosans/pyromark"
    },
    "split_keywords": [
        "converter",
        " html"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "937905d61157a50efa04eaa762eb1ba1c2b6bf332745f3d4d8c59afce8f28ec5",
                "md5": "5a1e0ad945e452da5d3b472a19a361ff",
                "sha256": "d4a0930acb572e33bc2f4b88cd29627ea67ef28815f25b0c120e1539360eb598"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a1e0ad945e452da5d3b472a19a361ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 336417,
            "upload_time": "2024-12-24T12:42:56",
            "upload_time_iso_8601": "2024-12-24T12:42:56.936055Z",
            "url": "https://files.pythonhosted.org/packages/93/79/05d61157a50efa04eaa762eb1ba1c2b6bf332745f3d4d8c59afce8f28ec5/pyromark-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "525aa41b496920516a90d481db08e9383973018b132f0c9f7f478d7425c57970",
                "md5": "640b9efefa7027cf25bf0a8b2beb943f",
                "sha256": "8e9705de3837a4e7ddba94e1811d7599f3a98ff646b21178d8000ff7b002a87d"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "640b9efefa7027cf25bf0a8b2beb943f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 319552,
            "upload_time": "2024-12-24T12:42:46",
            "upload_time_iso_8601": "2024-12-24T12:42:46.941796Z",
            "url": "https://files.pythonhosted.org/packages/52/5a/a41b496920516a90d481db08e9383973018b132f0c9f7f478d7425c57970/pyromark-0.7.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8aa9a409e44638eb5b591282b2ab332cee67c9e837353b5f528eb6693687964",
                "md5": "7d5a3357b5d6684791ff4de4fcad21d6",
                "sha256": "c0a320fd091cadba996bda783aad70105bfe23430a5d3371fd5ab6d6c496b835"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7d5a3357b5d6684791ff4de4fcad21d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 351696,
            "upload_time": "2024-12-24T12:40:23",
            "upload_time_iso_8601": "2024-12-24T12:40:23.337346Z",
            "url": "https://files.pythonhosted.org/packages/d8/aa/9a409e44638eb5b591282b2ab332cee67c9e837353b5f528eb6693687964/pyromark-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ebf9821556f7505a6fd7180532e257312a513a3e0483c7a22cd8e5c074430a1",
                "md5": "24a46719cd37ae0cd63d33fd6bd8b54d",
                "sha256": "c94b5d880be4c475ea29061c4ca4f9007a722d09e4eb26bdf86842e9a1f4329c"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "24a46719cd37ae0cd63d33fd6bd8b54d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 355102,
            "upload_time": "2024-12-24T12:40:51",
            "upload_time_iso_8601": "2024-12-24T12:40:51.303281Z",
            "url": "https://files.pythonhosted.org/packages/7e/bf/9821556f7505a6fd7180532e257312a513a3e0483c7a22cd8e5c074430a1/pyromark-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7e53b1e8c9c5c5c91378f8c2e5a4d0c06a8d44de1bdfe65cc32a63306c8249b",
                "md5": "2b5d9011eafed7fb6daaa7e86f597666",
                "sha256": "4d2b110f58f8ff5a97fd757ab0e176fd78a33ff2c6e4a444a8ef84cadbaf299d"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2b5d9011eafed7fb6daaa7e86f597666",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 402562,
            "upload_time": "2024-12-24T12:41:57",
            "upload_time_iso_8601": "2024-12-24T12:41:57.890234Z",
            "url": "https://files.pythonhosted.org/packages/d7/e5/3b1e8c9c5c5c91378f8c2e5a4d0c06a8d44de1bdfe65cc32a63306c8249b/pyromark-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d153d5f151fe54c0741cce87cbaf7db056085178f0e9c6f204f97fa0d82dbac0",
                "md5": "0b18287bd0d851124dff6f5c30d2da39",
                "sha256": "bc4ef74af76c321bea0949968da9bc732c9b60cede39758c28a8f4ac321b4f65"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "0b18287bd0d851124dff6f5c30d2da39",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 409401,
            "upload_time": "2024-12-24T12:41:47",
            "upload_time_iso_8601": "2024-12-24T12:41:47.527044Z",
            "url": "https://files.pythonhosted.org/packages/d1/53/d5f151fe54c0741cce87cbaf7db056085178f0e9c6f204f97fa0d82dbac0/pyromark-0.7.1-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9153cf3e168e069f1a02996afc48eeb50de1b433efaba9a68cf8f6367a05e92",
                "md5": "ac0fa8f53b88e29ea17f4c705419da67",
                "sha256": "1ca5804f040ba8266adf459ccf50cfb4a17967dd9c6e4abe923a0f426740088b"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ac0fa8f53b88e29ea17f4c705419da67",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 512272,
            "upload_time": "2024-12-24T12:42:08",
            "upload_time_iso_8601": "2024-12-24T12:42:08.282748Z",
            "url": "https://files.pythonhosted.org/packages/e9/15/3cf3e168e069f1a02996afc48eeb50de1b433efaba9a68cf8f6367a05e92/pyromark-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b7bdef84297a466fc05390c6537672a081a72d8505ed70f13a443ef1b3d0cf1",
                "md5": "1b26db014640a992726cb2f918b2672b",
                "sha256": "8c9993daf810e6721492fa8b4b8ac7a1e864a0b31e1791e8c9281913a48a4282"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b26db014640a992726cb2f918b2672b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 373888,
            "upload_time": "2024-12-24T12:42:20",
            "upload_time_iso_8601": "2024-12-24T12:42:20.227925Z",
            "url": "https://files.pythonhosted.org/packages/3b/7b/def84297a466fc05390c6537672a081a72d8505ed70f13a443ef1b3d0cf1/pyromark-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee04109a844909f870b31f16bf57bff2ee1994e8e905d6a93fd462481da43a94",
                "md5": "748d3a7b703f4a09cb4c7d4a45b4b607",
                "sha256": "7ef909fe4cd15691c8f5fc744ae3458972c267b988588c0f5516651a1a131baa"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "748d3a7b703f4a09cb4c7d4a45b4b607",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 376178,
            "upload_time": "2024-12-24T12:41:19",
            "upload_time_iso_8601": "2024-12-24T12:41:19.744535Z",
            "url": "https://files.pythonhosted.org/packages/ee/04/109a844909f870b31f16bf57bff2ee1994e8e905d6a93fd462481da43a94/pyromark-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82272b3714b9fd5b3e114e54050a81efbb4cc3a89fccd851e8eab38415434873",
                "md5": "437f29ff758991beda35497ae3d2b32d",
                "sha256": "4e8eaac523b32405a961bdca581966a62e207a9bf4d68e532736673bd070897f"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "437f29ff758991beda35497ae3d2b32d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 532433,
            "upload_time": "2024-12-24T12:40:41",
            "upload_time_iso_8601": "2024-12-24T12:40:41.428450Z",
            "url": "https://files.pythonhosted.org/packages/82/27/2b3714b9fd5b3e114e54050a81efbb4cc3a89fccd851e8eab38415434873/pyromark-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4eaabd4898474f5d02b195f7c58d672f4af8f7c1a784aec8ffecaf1497d5446d",
                "md5": "f4423c4a7959ab5dfca343ee739e0dd5",
                "sha256": "c75725aea1b0b60f82973b63816e084802191cf5b28170e0253a989bfa5f554f"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f4423c4a7959ab5dfca343ee739e0dd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 618805,
            "upload_time": "2024-12-24T12:41:04",
            "upload_time_iso_8601": "2024-12-24T12:41:04.144047Z",
            "url": "https://files.pythonhosted.org/packages/4e/aa/bd4898474f5d02b195f7c58d672f4af8f7c1a784aec8ffecaf1497d5446d/pyromark-0.7.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75010638c67a679ef3cb413d1eab474d40316e10b30952c0394f8f9f64482a9c",
                "md5": "2841e5972d561b81ed28c17d9f400ef7",
                "sha256": "94018c64cb7ddd0a8b42036f12c6e683610802f0e720f35284531dbbd14b204f"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2841e5972d561b81ed28c17d9f400ef7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 553649,
            "upload_time": "2024-12-24T12:41:36",
            "upload_time_iso_8601": "2024-12-24T12:41:36.813051Z",
            "url": "https://files.pythonhosted.org/packages/75/01/0638c67a679ef3cb413d1eab474d40316e10b30952c0394f8f9f64482a9c/pyromark-0.7.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efbca9590a5c8baa2d856aa16352b63078b495c808f7270cd0050a49a055a882",
                "md5": "8139258c23f776b7e1aefe261b67f332",
                "sha256": "b9b36f68886a7f39494cec7a73743bd8aa203d2fec7e47d0a3882e7ae83215fa"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8139258c23f776b7e1aefe261b67f332",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 546042,
            "upload_time": "2024-12-24T12:42:33",
            "upload_time_iso_8601": "2024-12-24T12:42:33.258172Z",
            "url": "https://files.pythonhosted.org/packages/ef/bc/a9590a5c8baa2d856aa16352b63078b495c808f7270cd0050a49a055a882/pyromark-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8286886c71ebcc682a6115c92b413de242a0a15280ec9ff7402a9c055ddb122",
                "md5": "0270a82e7b52ed847bc03044c2ae9371",
                "sha256": "dde4e39dd6701f6759935e0a762052ee56d60778b86b4e685643544e118269bb"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "0270a82e7b52ed847bc03044c2ae9371",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 256460,
            "upload_time": "2024-12-24T12:43:11",
            "upload_time_iso_8601": "2024-12-24T12:43:11.737904Z",
            "url": "https://files.pythonhosted.org/packages/f8/28/6886c71ebcc682a6115c92b413de242a0a15280ec9ff7402a9c055ddb122/pyromark-0.7.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abfc93608c816312dda0da8544279d191f54207f04dfc6895d67a724cd7c13e3",
                "md5": "abc8eb0ee7d8a42d9e463ffe71769d1a",
                "sha256": "c4bf4c86a876358ad3bfb52f4f88b03ad5f21628563841fe3fa1eb839b6c469c"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "abc8eb0ee7d8a42d9e463ffe71769d1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 267871,
            "upload_time": "2024-12-24T12:43:20",
            "upload_time_iso_8601": "2024-12-24T12:43:20.031052Z",
            "url": "https://files.pythonhosted.org/packages/ab/fc/93608c816312dda0da8544279d191f54207f04dfc6895d67a724cd7c13e3/pyromark-0.7.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dff0a189eaa015696398e5e1676a386785f78b92bc65ae5c1cf74f54571de2df",
                "md5": "940dee95c2f5e0789672b993b5cde41a",
                "sha256": "da89249a78d0d7521017316e28b3b50f4cb5db079637351e4afdda3cecb1ff0f"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "940dee95c2f5e0789672b993b5cde41a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 336604,
            "upload_time": "2024-12-24T12:42:58",
            "upload_time_iso_8601": "2024-12-24T12:42:58.245633Z",
            "url": "https://files.pythonhosted.org/packages/df/f0/a189eaa015696398e5e1676a386785f78b92bc65ae5c1cf74f54571de2df/pyromark-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb83d7e8e04989996f2cda9d0b8dfa5ba0b5d5f5dfb0c2cd23484ef96fc36776",
                "md5": "30a209a0254c3efc6a36ecad2d41ba8b",
                "sha256": "cb7ccdcd3229942dbef1675d2caaedacbcab47c03c37b95ef5e75df8dddd8cb4"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "30a209a0254c3efc6a36ecad2d41ba8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 319668,
            "upload_time": "2024-12-24T12:42:49",
            "upload_time_iso_8601": "2024-12-24T12:42:49.037917Z",
            "url": "https://files.pythonhosted.org/packages/cb/83/d7e8e04989996f2cda9d0b8dfa5ba0b5d5f5dfb0c2cd23484ef96fc36776/pyromark-0.7.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f4e53dec486684b1c0038af498801d12a7d56eec8e93eb5f8e30bb7e2338841",
                "md5": "702d432b75b58fb2d6c386cc3a7a69ef",
                "sha256": "ec2e09c576aea44372f3b9db71291aa5809d507f2602ad480ba8155c372b51bf"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "702d432b75b58fb2d6c386cc3a7a69ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 351728,
            "upload_time": "2024-12-24T12:40:25",
            "upload_time_iso_8601": "2024-12-24T12:40:25.864892Z",
            "url": "https://files.pythonhosted.org/packages/0f/4e/53dec486684b1c0038af498801d12a7d56eec8e93eb5f8e30bb7e2338841/pyromark-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ac18223a56f92df1022269b6cf1a5afbb057e5265ebd90fcd5e993e21f7380e",
                "md5": "02e6b212adb49cb8471337146d25f065",
                "sha256": "d397f8817fbc1805b0d4eaf9964f9a731d920c925ffb3c0f494571d77d85a964"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "02e6b212adb49cb8471337146d25f065",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 355262,
            "upload_time": "2024-12-24T12:40:52",
            "upload_time_iso_8601": "2024-12-24T12:40:52.806114Z",
            "url": "https://files.pythonhosted.org/packages/4a/c1/8223a56f92df1022269b6cf1a5afbb057e5265ebd90fcd5e993e21f7380e/pyromark-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "590192a42086f9f5703e81b39c852e8bb9bf595b881c5dfbf5f42af78afa14d7",
                "md5": "e9f9d0322d9ae3a78a05d9595e0f908a",
                "sha256": "37f8dfd22fcc2b3f168f91f8c677c38218ba488fdb7e3edbdb9809ee843f030b"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e9f9d0322d9ae3a78a05d9595e0f908a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 402738,
            "upload_time": "2024-12-24T12:41:59",
            "upload_time_iso_8601": "2024-12-24T12:41:59.213165Z",
            "url": "https://files.pythonhosted.org/packages/59/01/92a42086f9f5703e81b39c852e8bb9bf595b881c5dfbf5f42af78afa14d7/pyromark-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "396ceafc5618e71097c540da81d4936777560ca0a9e5e64ec395c48ccd47bb51",
                "md5": "e2feb9d0afc4723bf0dc10261fc26937",
                "sha256": "975a25272e83c6e53b73856ec75d63c58b03f4c66fba039cdaef9ec7a46a5e38"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "e2feb9d0afc4723bf0dc10261fc26937",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 409528,
            "upload_time": "2024-12-24T12:41:48",
            "upload_time_iso_8601": "2024-12-24T12:41:48.753375Z",
            "url": "https://files.pythonhosted.org/packages/39/6c/eafc5618e71097c540da81d4936777560ca0a9e5e64ec395c48ccd47bb51/pyromark-0.7.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a89da3790869cc851bb0926efc581647c539b256bec8848d61e0c127e2bf978",
                "md5": "5517dec50ac523179587dfd35f1973c7",
                "sha256": "938f57d2d7fcfc31c3a68bfff5b626eb5dcb118181f7288b5f1b5044b333f754"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5517dec50ac523179587dfd35f1973c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 511668,
            "upload_time": "2024-12-24T12:42:09",
            "upload_time_iso_8601": "2024-12-24T12:42:09.774541Z",
            "url": "https://files.pythonhosted.org/packages/9a/89/da3790869cc851bb0926efc581647c539b256bec8848d61e0c127e2bf978/pyromark-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be62d6ec346a7dfe6e9ee4cd35efc164ab6a89af2fbc13a4a6cd0ceb81ec8a69",
                "md5": "fb269aacd8d85baa0d5ef8ca682b23d4",
                "sha256": "c613f0d23e3afbc59c948f949d81a6f7d38ea8c7b1812469007f432ac6d37790"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb269aacd8d85baa0d5ef8ca682b23d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 373843,
            "upload_time": "2024-12-24T12:42:22",
            "upload_time_iso_8601": "2024-12-24T12:42:22.701944Z",
            "url": "https://files.pythonhosted.org/packages/be/62/d6ec346a7dfe6e9ee4cd35efc164ab6a89af2fbc13a4a6cd0ceb81ec8a69/pyromark-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5aafd035bd8a54083cdf308c8e326b9383c9c20eccd88cd48012d1ad30a351e7",
                "md5": "990f31c8b092eb0316436a3458b323dd",
                "sha256": "22c16daec14035ad1cd969bc60b992d8a888afa6a86810045141ae994bd82c02"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "990f31c8b092eb0316436a3458b323dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 376293,
            "upload_time": "2024-12-24T12:41:22",
            "upload_time_iso_8601": "2024-12-24T12:41:22.354946Z",
            "url": "https://files.pythonhosted.org/packages/5a/af/d035bd8a54083cdf308c8e326b9383c9c20eccd88cd48012d1ad30a351e7/pyromark-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37666dc477b03cbf5e46fa797fe42a58cbb776a57d2100d9b0433d1269300e04",
                "md5": "55f5c915a81d1d55f8207d21a37695f1",
                "sha256": "e39f05910806b93b93d8499f940c8ccf1c60d7c4f749aece5693a73e4a992da3"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "55f5c915a81d1d55f8207d21a37695f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 532418,
            "upload_time": "2024-12-24T12:40:42",
            "upload_time_iso_8601": "2024-12-24T12:40:42.697369Z",
            "url": "https://files.pythonhosted.org/packages/37/66/6dc477b03cbf5e46fa797fe42a58cbb776a57d2100d9b0433d1269300e04/pyromark-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ed5697864f873d5665205b67d33232d7ab86e5d2f710a9741409994aec43699",
                "md5": "592eddce0c848a4ebbab79af5a6427e0",
                "sha256": "4a02490a1ebe14bcc37ecf4317945a6a55ef0fc33cf8850593b882f4f24479f8"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "592eddce0c848a4ebbab79af5a6427e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 618973,
            "upload_time": "2024-12-24T12:41:05",
            "upload_time_iso_8601": "2024-12-24T12:41:05.615320Z",
            "url": "https://files.pythonhosted.org/packages/8e/d5/697864f873d5665205b67d33232d7ab86e5d2f710a9741409994aec43699/pyromark-0.7.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8edbcf86bc601dcf53e56b7802aba86863ebdef57e189a68e1d28cad5c93d222",
                "md5": "5e4eb454e190b3d2ed74472660abfaa2",
                "sha256": "91758032363f0220f18a81a4138b49cfe1ef3af4b9e83e8e0bef798ee0701c31"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5e4eb454e190b3d2ed74472660abfaa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 553957,
            "upload_time": "2024-12-24T12:41:38",
            "upload_time_iso_8601": "2024-12-24T12:41:38.171350Z",
            "url": "https://files.pythonhosted.org/packages/8e/db/cf86bc601dcf53e56b7802aba86863ebdef57e189a68e1d28cad5c93d222/pyromark-0.7.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edf74cca7d73a40d198500cf8f44366cb2e8ff073027588a2e051f728f5661e1",
                "md5": "86118dc8e5f5bdd9cc6da02bd502904f",
                "sha256": "7be93b29c817bd82704838b1d8dc74ddcfe86ab1c893e994a31b285eb2031c30"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86118dc8e5f5bdd9cc6da02bd502904f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 546012,
            "upload_time": "2024-12-24T12:42:36",
            "upload_time_iso_8601": "2024-12-24T12:42:36.077500Z",
            "url": "https://files.pythonhosted.org/packages/ed/f7/4cca7d73a40d198500cf8f44366cb2e8ff073027588a2e051f728f5661e1/pyromark-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf938886aa5fac89cf26d26d11e369895ea7e21cbdd0010e2517641fc0879076",
                "md5": "762fd1f40d8335d4ffb062bf25339c28",
                "sha256": "0d9cd8ee86e0af1366583e838005ce21491790ce9bba70791db8dd91993d9404"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "762fd1f40d8335d4ffb062bf25339c28",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 256713,
            "upload_time": "2024-12-24T12:43:14",
            "upload_time_iso_8601": "2024-12-24T12:43:14.332246Z",
            "url": "https://files.pythonhosted.org/packages/cf/93/8886aa5fac89cf26d26d11e369895ea7e21cbdd0010e2517641fc0879076/pyromark-0.7.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e296585e4480cd9882a359d4d7b8419cbaa3841c5e3638b8f0f41449f95a894c",
                "md5": "60a55375971a0066d5db3b976dc1ee9e",
                "sha256": "90b2ac402842e055932e01b14d09f71d76fe3b123893d67b607df45767576f17"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "60a55375971a0066d5db3b976dc1ee9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 267975,
            "upload_time": "2024-12-24T12:43:22",
            "upload_time_iso_8601": "2024-12-24T12:43:22.389484Z",
            "url": "https://files.pythonhosted.org/packages/e2/96/585e4480cd9882a359d4d7b8419cbaa3841c5e3638b8f0f41449f95a894c/pyromark-0.7.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eec44be234e0b18b2789d280875db2b47207770623683b54f942928fd78bf6a9",
                "md5": "ac1080bbff3a855442a1b971548584ba",
                "sha256": "2a8df147ad2d2073d4f4cf97cdf8bcbe862e3bd0754838de0b95845b58d14aba"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac1080bbff3a855442a1b971548584ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 335367,
            "upload_time": "2024-12-24T12:43:00",
            "upload_time_iso_8601": "2024-12-24T12:43:00.855085Z",
            "url": "https://files.pythonhosted.org/packages/ee/c4/4be234e0b18b2789d280875db2b47207770623683b54f942928fd78bf6a9/pyromark-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87ead369ec380d31a37b43c09b27be967371c0ef8b70a80f76c3dd86c670c77c",
                "md5": "66e134044f2792fab0b6d9db7bdbda8f",
                "sha256": "2015cf1b792680b95adb1349ffc6f4160e0f3c410c675c7170fa24464970ce20"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "66e134044f2792fab0b6d9db7bdbda8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 317896,
            "upload_time": "2024-12-24T12:42:50",
            "upload_time_iso_8601": "2024-12-24T12:42:50.271448Z",
            "url": "https://files.pythonhosted.org/packages/87/ea/d369ec380d31a37b43c09b27be967371c0ef8b70a80f76c3dd86c670c77c/pyromark-0.7.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ee200baffdbe90f51c72926fcc8f2da0cec069e2146e1462261c468bafd4d66",
                "md5": "622fd63b8868c5e289666b27fab52623",
                "sha256": "0ddd14c5d99212dcba16036c96ed08e18071cb9b9d5e7f8566428c2c9634c110"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "622fd63b8868c5e289666b27fab52623",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 349937,
            "upload_time": "2024-12-24T12:40:29",
            "upload_time_iso_8601": "2024-12-24T12:40:29.438641Z",
            "url": "https://files.pythonhosted.org/packages/3e/e2/00baffdbe90f51c72926fcc8f2da0cec069e2146e1462261c468bafd4d66/pyromark-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43cf62665372e72f88a311dc4a629632d9fec1a5b3b197942cc110e9d1413d2e",
                "md5": "948f8397dad4d39c66141011fb540fe3",
                "sha256": "58f09e58ad090f2b271f18f139e604aa5a1d3a12c23dc7191789ebea20416133"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "948f8397dad4d39c66141011fb540fe3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 353910,
            "upload_time": "2024-12-24T12:40:55",
            "upload_time_iso_8601": "2024-12-24T12:40:55.512544Z",
            "url": "https://files.pythonhosted.org/packages/43/cf/62665372e72f88a311dc4a629632d9fec1a5b3b197942cc110e9d1413d2e/pyromark-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30633fd5a8c31867b3776cec3d9299b3bb83327e6b560e10b4075f64788ba65d",
                "md5": "e639d896c6c7fbc136b37b819b997260",
                "sha256": "520b256f0e58878360f229fdf6a8e207d03858e4281d1e8cadef3cc907acca10"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e639d896c6c7fbc136b37b819b997260",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 400505,
            "upload_time": "2024-12-24T12:42:00",
            "upload_time_iso_8601": "2024-12-24T12:42:00.544487Z",
            "url": "https://files.pythonhosted.org/packages/30/63/3fd5a8c31867b3776cec3d9299b3bb83327e6b560e10b4075f64788ba65d/pyromark-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "088533194af990cb9b8f41c9f760661d43a8be3ccc570becdaf1715b2e819514",
                "md5": "1692bb4b04455ccb5f157a98eb3499e3",
                "sha256": "48f857c4feee08edc50f93af1823db968cc7be9572a30fea3b7eea19db626280"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "1692bb4b04455ccb5f157a98eb3499e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 408376,
            "upload_time": "2024-12-24T12:41:50",
            "upload_time_iso_8601": "2024-12-24T12:41:50.105837Z",
            "url": "https://files.pythonhosted.org/packages/08/85/33194af990cb9b8f41c9f760661d43a8be3ccc570becdaf1715b2e819514/pyromark-0.7.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80ebe589ffb3691622548eef8e736f5c727de4ab35146c7fad0b1d64e17b7d52",
                "md5": "f6085bc0d2cc3aad171563b039b9e12d",
                "sha256": "991047f54c25f99a6defa9e0b116d84af3fa7686448b7011eb62e7ab89662f70"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f6085bc0d2cc3aad171563b039b9e12d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 507582,
            "upload_time": "2024-12-24T12:42:11",
            "upload_time_iso_8601": "2024-12-24T12:42:11.070681Z",
            "url": "https://files.pythonhosted.org/packages/80/eb/e589ffb3691622548eef8e736f5c727de4ab35146c7fad0b1d64e17b7d52/pyromark-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23cb1fa066d656c050ebd3e7af9193d49fd6242f1140dee05cfbce7001651c51",
                "md5": "b08377f4db7a6082e115ec064ece187f",
                "sha256": "bb51e68534cc7dbea372be02871d3fc11eb0bf8271e3aa80dac8d5a5061921eb"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b08377f4db7a6082e115ec064ece187f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 372166,
            "upload_time": "2024-12-24T12:42:23",
            "upload_time_iso_8601": "2024-12-24T12:42:23.932420Z",
            "url": "https://files.pythonhosted.org/packages/23/cb/1fa066d656c050ebd3e7af9193d49fd6242f1140dee05cfbce7001651c51/pyromark-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "698d5a48c24702f7681b755d631aac5481b9e41c668ebc808386fc06ff238d0a",
                "md5": "f2a3a9d10a58955badd61a56a57cbd2d",
                "sha256": "a8c7003869f78365d30afa9219bfcffc44f2ef191c5a4f2563bcd97a91db5062"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f2a3a9d10a58955badd61a56a57cbd2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 374804,
            "upload_time": "2024-12-24T12:41:23",
            "upload_time_iso_8601": "2024-12-24T12:41:23.612964Z",
            "url": "https://files.pythonhosted.org/packages/69/8d/5a48c24702f7681b755d631aac5481b9e41c668ebc808386fc06ff238d0a/pyromark-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "02e00c2951f615fe10b262a422ba4caf2819d26b619afbd5488d8b8296af7e49",
                "md5": "37b022385d1b92b62704b17591839065",
                "sha256": "02f41847b73feeb7286be61fcc0c22aac40606721784a181d034307d2b642370"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "37b022385d1b92b62704b17591839065",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 530650,
            "upload_time": "2024-12-24T12:40:44",
            "upload_time_iso_8601": "2024-12-24T12:40:44.226944Z",
            "url": "https://files.pythonhosted.org/packages/02/e0/0c2951f615fe10b262a422ba4caf2819d26b619afbd5488d8b8296af7e49/pyromark-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91e2b4d9323c0cfc300e1b662ce10d04ae9bb820b413089758577bf5fd0fdb38",
                "md5": "51e88c8e8885a41a8e01108b02856eb6",
                "sha256": "0dcaa67eefcef5095e8468ee04915660c59f1a1eff5f01988835cea48e74d3bf"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "51e88c8e8885a41a8e01108b02856eb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 617543,
            "upload_time": "2024-12-24T12:41:07",
            "upload_time_iso_8601": "2024-12-24T12:41:07.160183Z",
            "url": "https://files.pythonhosted.org/packages/91/e2/b4d9323c0cfc300e1b662ce10d04ae9bb820b413089758577bf5fd0fdb38/pyromark-0.7.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "991586bf6ae4eebf8c87f325e69717e5660658a6510298fa5ddba83244aa8c18",
                "md5": "3ea9c7ff3f1a85c9b886bdbc33789f7f",
                "sha256": "74807d9e38f87c7cb807c88e85ab44fd554cbe35686bc0fad49d7cff6318228e"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3ea9c7ff3f1a85c9b886bdbc33789f7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 551742,
            "upload_time": "2024-12-24T12:41:40",
            "upload_time_iso_8601": "2024-12-24T12:41:40.838468Z",
            "url": "https://files.pythonhosted.org/packages/99/15/86bf6ae4eebf8c87f325e69717e5660658a6510298fa5ddba83244aa8c18/pyromark-0.7.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3aeefab4ed7b90ec257093a93ff27b7da0cf05a940acafe260add6404ca3776",
                "md5": "ac913ce9d6681d8a51b546b0f09d65cb",
                "sha256": "ebac06656e634bc0bc5eb36d7af53b41ea5cfac1cd53f25a9c0476e30a350601"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac913ce9d6681d8a51b546b0f09d65cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 544294,
            "upload_time": "2024-12-24T12:42:37",
            "upload_time_iso_8601": "2024-12-24T12:42:37.430089Z",
            "url": "https://files.pythonhosted.org/packages/f3/ae/efab4ed7b90ec257093a93ff27b7da0cf05a940acafe260add6404ca3776/pyromark-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "288cdf7015fa74e0e71bd05ebc460e133a347f052391769d66ca98dc65889dc4",
                "md5": "4ca5508dee9efe7312754d1280e51d35",
                "sha256": "dad6eff89424da500e7b161da4c4680c92fc01d3651562bdfcdbee4eed2df9fa"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "4ca5508dee9efe7312754d1280e51d35",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 256824,
            "upload_time": "2024-12-24T12:43:15",
            "upload_time_iso_8601": "2024-12-24T12:43:15.763743Z",
            "url": "https://files.pythonhosted.org/packages/28/8c/df7015fa74e0e71bd05ebc460e133a347f052391769d66ca98dc65889dc4/pyromark-0.7.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7528e71af00cabe1ab97cab2e4d5e2d9ae97195d7588765d971fe3f1952580bb",
                "md5": "84c9ac4e0c13e0a03038f671142e9789",
                "sha256": "7b035e10e414d85f681f1abc618c1c528c587f424d8b0396bc77e3cd1dbcab25"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "84c9ac4e0c13e0a03038f671142e9789",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 268324,
            "upload_time": "2024-12-24T12:43:23",
            "upload_time_iso_8601": "2024-12-24T12:43:23.738843Z",
            "url": "https://files.pythonhosted.org/packages/75/28/e71af00cabe1ab97cab2e4d5e2d9ae97195d7588765d971fe3f1952580bb/pyromark-0.7.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3e23eafe44a5898737f348bc18be7dae444e101698d0b0b035edba8f67ced64",
                "md5": "a47e64fc4a1953b2117baeb21419b48a",
                "sha256": "6f6235503669abfb4996562bb56e9b0635b317556e665397f643e3a5b2951db2"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a47e64fc4a1953b2117baeb21419b48a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 335140,
            "upload_time": "2024-12-24T12:43:02",
            "upload_time_iso_8601": "2024-12-24T12:43:02.188539Z",
            "url": "https://files.pythonhosted.org/packages/d3/e2/3eafe44a5898737f348bc18be7dae444e101698d0b0b035edba8f67ced64/pyromark-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "335651d79e718a450d2f653a96932456ec372386dd53e47001366b1400de99cb",
                "md5": "9659c613105bf8adc2b12ae55ecb8e50",
                "sha256": "0263a2f348e2bedd8775cf358980e98491d6648f39d4bc25b18fa5b49e024e42"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9659c613105bf8adc2b12ae55ecb8e50",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 317786,
            "upload_time": "2024-12-24T12:42:51",
            "upload_time_iso_8601": "2024-12-24T12:42:51.623208Z",
            "url": "https://files.pythonhosted.org/packages/33/56/51d79e718a450d2f653a96932456ec372386dd53e47001366b1400de99cb/pyromark-0.7.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae61119282172dbb8f5bc70cc99dbb9975be22022e212cf325b253f475743320",
                "md5": "12fcb9d504b43ed465c818963cbae5b3",
                "sha256": "745e54e50afc85700febb872c743cb5e15a36a036fcf915987df33cd9a2fdef9"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "12fcb9d504b43ed465c818963cbae5b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 349603,
            "upload_time": "2024-12-24T12:40:33",
            "upload_time_iso_8601": "2024-12-24T12:40:33.791060Z",
            "url": "https://files.pythonhosted.org/packages/ae/61/119282172dbb8f5bc70cc99dbb9975be22022e212cf325b253f475743320/pyromark-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4457a67666b8cafa1028382c652444c612d6475c167288cb22de2a608654eb50",
                "md5": "c2849f6bc035c1d458d9753c181624d8",
                "sha256": "af9226525224d08440f720d7d26b132032ad82226f0863d9bccc1f1699c9b4cb"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c2849f6bc035c1d458d9753c181624d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 353516,
            "upload_time": "2024-12-24T12:40:56",
            "upload_time_iso_8601": "2024-12-24T12:40:56.654955Z",
            "url": "https://files.pythonhosted.org/packages/44/57/a67666b8cafa1028382c652444c612d6475c167288cb22de2a608654eb50/pyromark-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbd41305ad93788b440fce63aea256d00ba81ee9ad0f31a1cd15f8e54010d7c7",
                "md5": "a825671055a2c250a14061d5c994bb24",
                "sha256": "66f8ad28a5a983e6b8314bdb4dd86a2fee9dcc2af30d7d2cbd23f5b694bbdb25"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a825671055a2c250a14061d5c994bb24",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 399931,
            "upload_time": "2024-12-24T12:42:01",
            "upload_time_iso_8601": "2024-12-24T12:42:01.848775Z",
            "url": "https://files.pythonhosted.org/packages/bb/d4/1305ad93788b440fce63aea256d00ba81ee9ad0f31a1cd15f8e54010d7c7/pyromark-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ec2a36752963796f4d92b726b093b6046e8daea11eac69ce5f875deffa41f82",
                "md5": "89990b4131df859c67522f2011b62024",
                "sha256": "15c6f1b423977fd028225f8ca49fa8983a294cd76c9694463e54169481f71cf8"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "89990b4131df859c67522f2011b62024",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 407307,
            "upload_time": "2024-12-24T12:41:51",
            "upload_time_iso_8601": "2024-12-24T12:41:51.418329Z",
            "url": "https://files.pythonhosted.org/packages/9e/c2/a36752963796f4d92b726b093b6046e8daea11eac69ce5f875deffa41f82/pyromark-0.7.1-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dca18bff3b7a4727dc6058cb3432eb78232ce317e190b78e57d706ba4ec9a611",
                "md5": "f01e8b4ab1fdf113084f530b8ad60cd8",
                "sha256": "88d35aff40c54a697beb4072d872b2b48e5baac937e804e475c18beff21a673b"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f01e8b4ab1fdf113084f530b8ad60cd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 507378,
            "upload_time": "2024-12-24T12:42:13",
            "upload_time_iso_8601": "2024-12-24T12:42:13.041311Z",
            "url": "https://files.pythonhosted.org/packages/dc/a1/8bff3b7a4727dc6058cb3432eb78232ce317e190b78e57d706ba4ec9a611/pyromark-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a9f70d45556698b5e16734dc7be2bc6b6333806a0b97fb8ac20c47c506d4920",
                "md5": "25c1afa40152be399f23de1d5b75feb7",
                "sha256": "8940425bc2bf799fb97b35a35cb46691d48ac317333a61bed11d47c6c25bea26"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25c1afa40152be399f23de1d5b75feb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 371705,
            "upload_time": "2024-12-24T12:42:26",
            "upload_time_iso_8601": "2024-12-24T12:42:26.028773Z",
            "url": "https://files.pythonhosted.org/packages/6a/9f/70d45556698b5e16734dc7be2bc6b6333806a0b97fb8ac20c47c506d4920/pyromark-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04ba64de64c509bb6077fdcdf1a1c605de9bdba7f5722d256485955d03400268",
                "md5": "ae0909999e0d9d8570367d24daab6036",
                "sha256": "243ef867b3e9f26ccda76c09043228558a26b964f6329d966df0c2ca583b3147"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ae0909999e0d9d8570367d24daab6036",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 374462,
            "upload_time": "2024-12-24T12:41:25",
            "upload_time_iso_8601": "2024-12-24T12:41:25.023960Z",
            "url": "https://files.pythonhosted.org/packages/04/ba/64de64c509bb6077fdcdf1a1c605de9bdba7f5722d256485955d03400268/pyromark-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d6aaa31e38ff1b13dde288b3807cfc0e033038ab4bb4fb806fa1787b593935f",
                "md5": "a59e2027d97a878c15bdafc9c3f70aa7",
                "sha256": "06cbcefe3f5114998eed991856a6d46555f8213517264aba188a81b202017a4c"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a59e2027d97a878c15bdafc9c3f70aa7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 530275,
            "upload_time": "2024-12-24T12:40:45",
            "upload_time_iso_8601": "2024-12-24T12:40:45.650863Z",
            "url": "https://files.pythonhosted.org/packages/8d/6a/aa31e38ff1b13dde288b3807cfc0e033038ab4bb4fb806fa1787b593935f/pyromark-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13bb43c1c74e4e921c5b0d24a2edc2fb35a3ed06eb38e9756d6c1dd4d3217728",
                "md5": "2ab04cf88d8125098d4aace150269be9",
                "sha256": "ecd05409f5b9156f5b5719abd3f9f6e55f29dce21830bdb3d67cb01536ac40c6"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2ab04cf88d8125098d4aace150269be9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 617060,
            "upload_time": "2024-12-24T12:41:08",
            "upload_time_iso_8601": "2024-12-24T12:41:08.381721Z",
            "url": "https://files.pythonhosted.org/packages/13/bb/43c1c74e4e921c5b0d24a2edc2fb35a3ed06eb38e9756d6c1dd4d3217728/pyromark-0.7.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19f59b35123a1ad82a0008e995dc1e941380eed974b3bb1e66edd72235be3c1e",
                "md5": "8a09b79755e775a9e6919b2befb97521",
                "sha256": "b3b008274b49de2a084d771c2a37032be4cd796a34518de53ea62eb919d28ae0"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8a09b79755e775a9e6919b2befb97521",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 551337,
            "upload_time": "2024-12-24T12:41:42",
            "upload_time_iso_8601": "2024-12-24T12:41:42.144879Z",
            "url": "https://files.pythonhosted.org/packages/19/f5/9b35123a1ad82a0008e995dc1e941380eed974b3bb1e66edd72235be3c1e/pyromark-0.7.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd9350b5ea35020ad098267a9a3a28e8eb3535916d187cb74b402d2e832c5493",
                "md5": "eb022b55cb428cd7a0dee9224df32b40",
                "sha256": "a794b8224224763278f57df5ef489ece2b25e5aa239b543c5939cee1ba77e126"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb022b55cb428cd7a0dee9224df32b40",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 543849,
            "upload_time": "2024-12-24T12:42:41",
            "upload_time_iso_8601": "2024-12-24T12:42:41.367699Z",
            "url": "https://files.pythonhosted.org/packages/dd/93/50b5ea35020ad098267a9a3a28e8eb3535916d187cb74b402d2e832c5493/pyromark-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6da5e32615b6773052f50a4f5e884897230e47ca0f477f4fdb60017b44dcf46e",
                "md5": "ede955b4d7a6f6eaf8a570e21270c018",
                "sha256": "b7ddd3e156981fb32e26d3606843f9a3dac6e86ee058746f2ccb847a2c5f349d"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "ede955b4d7a6f6eaf8a570e21270c018",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 256616,
            "upload_time": "2024-12-24T12:43:17",
            "upload_time_iso_8601": "2024-12-24T12:43:17.246890Z",
            "url": "https://files.pythonhosted.org/packages/6d/a5/e32615b6773052f50a4f5e884897230e47ca0f477f4fdb60017b44dcf46e/pyromark-0.7.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd4db90f717067c9ce81418050309b777244b074f07eb05c765b44f22be5f91c",
                "md5": "bcbe38fe4a0ec9e6c3bc41f8a2c632a6",
                "sha256": "304579a85965934e4bbd8f2a3b3b40f51cce57d396adb3757bbaad28ae2a25af"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bcbe38fe4a0ec9e6c3bc41f8a2c632a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 268031,
            "upload_time": "2024-12-24T12:43:24",
            "upload_time_iso_8601": "2024-12-24T12:43:24.990949Z",
            "url": "https://files.pythonhosted.org/packages/bd/4d/b90f717067c9ce81418050309b777244b074f07eb05c765b44f22be5f91c/pyromark-0.7.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79d8fc43e80f37f27681a31de4b19cd12774ef6424059c26a2d9e50d7368b22f",
                "md5": "c23195413bc7ffed95ef001e740733ae",
                "sha256": "ac2ef4d0c3b9f9630a896cc09a7a2eb475eba6c91f97ab14ab22446aaa88265b"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c23195413bc7ffed95ef001e740733ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 336860,
            "upload_time": "2024-12-24T12:43:03",
            "upload_time_iso_8601": "2024-12-24T12:43:03.700198Z",
            "url": "https://files.pythonhosted.org/packages/79/d8/fc43e80f37f27681a31de4b19cd12774ef6424059c26a2d9e50d7368b22f/pyromark-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a326f112b4b36109c07916f4d26e8494c1e44ec37a70eef9fc13f46737618f0d",
                "md5": "2c5824221962d63ecfde9aef71354a67",
                "sha256": "4999fa6c2bd8c859277b0492c97780eacf415481286f8e793fcbda583be04314"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2c5824221962d63ecfde9aef71354a67",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 320245,
            "upload_time": "2024-12-24T12:42:53",
            "upload_time_iso_8601": "2024-12-24T12:42:53.048607Z",
            "url": "https://files.pythonhosted.org/packages/a3/26/f112b4b36109c07916f4d26e8494c1e44ec37a70eef9fc13f46737618f0d/pyromark-0.7.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0895a65a1fdbba7d687311f69282b298292a87a3b6b76e644356eccf75850d8",
                "md5": "9f67ec37bf68f8b3825ed82262de5ce7",
                "sha256": "26c26087614e1567dd89fafdc28c939be8d060cc0a257095dbeb44a0887923a0"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9f67ec37bf68f8b3825ed82262de5ce7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 352370,
            "upload_time": "2024-12-24T12:40:36",
            "upload_time_iso_8601": "2024-12-24T12:40:36.284214Z",
            "url": "https://files.pythonhosted.org/packages/a0/89/5a65a1fdbba7d687311f69282b298292a87a3b6b76e644356eccf75850d8/pyromark-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1996897797270b5659860fc7f85f74cdbaf1b3d08a138dcc681dbc798ffc820b",
                "md5": "0f76003035bf42771ef15ba9464aea5a",
                "sha256": "1dd6288e84c4903ab2fe55b13bcfe351b55cbda7ebd86e5c8f6c8152212e9fa2"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0f76003035bf42771ef15ba9464aea5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 355299,
            "upload_time": "2024-12-24T12:40:59",
            "upload_time_iso_8601": "2024-12-24T12:40:59.021900Z",
            "url": "https://files.pythonhosted.org/packages/19/96/897797270b5659860fc7f85f74cdbaf1b3d08a138dcc681dbc798ffc820b/pyromark-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "595ed1a2f603f97574cfae658828603414cd8833fe09f46b141bbe5a8e91877a",
                "md5": "798c01d0bec02fc73f7b68113d6fc594",
                "sha256": "c047419f416b1fcb3853f5fc609ef662440d12b114be95ae4f847f49c815dd0d"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "798c01d0bec02fc73f7b68113d6fc594",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 403040,
            "upload_time": "2024-12-24T12:42:04",
            "upload_time_iso_8601": "2024-12-24T12:42:04.369010Z",
            "url": "https://files.pythonhosted.org/packages/59/5e/d1a2f603f97574cfae658828603414cd8833fe09f46b141bbe5a8e91877a/pyromark-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "139b623cd4ecb54205d99ee2b83a7543c864d4394f2e9674527fec9fa47d1eb7",
                "md5": "781767e6fc781c62a3cf39d89eee29ec",
                "sha256": "8657bee5c220c83f687e6ba271fa50e37e47db581d6c5332d376092c132cf1bc"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "781767e6fc781c62a3cf39d89eee29ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 410704,
            "upload_time": "2024-12-24T12:41:54",
            "upload_time_iso_8601": "2024-12-24T12:41:54.010137Z",
            "url": "https://files.pythonhosted.org/packages/13/9b/623cd4ecb54205d99ee2b83a7543c864d4394f2e9674527fec9fa47d1eb7/pyromark-0.7.1-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba7e605c32696ce39a478a21b1287a5398122b1683e933236f14e91841ebf452",
                "md5": "8943baea507a4d6a02d0f60ad534c424",
                "sha256": "92eb546becfded98fde02ffe601d401f0a5be6b6a411a523003f268cd9428fc7"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8943baea507a4d6a02d0f60ad534c424",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 512861,
            "upload_time": "2024-12-24T12:42:14",
            "upload_time_iso_8601": "2024-12-24T12:42:14.456680Z",
            "url": "https://files.pythonhosted.org/packages/ba/7e/605c32696ce39a478a21b1287a5398122b1683e933236f14e91841ebf452/pyromark-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bf79a5676d9b7e7e1ba4e30ea6596fb2a17d4e699b9ba580c437181917c9a7d",
                "md5": "37648ab77066d394b4d8b397924ff962",
                "sha256": "601118630b3bad6d07a3651f28c0f7024323f2d1204ff49b6289db597bfe82a7"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37648ab77066d394b4d8b397924ff962",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 374403,
            "upload_time": "2024-12-24T12:42:27",
            "upload_time_iso_8601": "2024-12-24T12:42:27.356139Z",
            "url": "https://files.pythonhosted.org/packages/6b/f7/9a5676d9b7e7e1ba4e30ea6596fb2a17d4e699b9ba580c437181917c9a7d/pyromark-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f34c54c80cbc16dcbbfcf726100f56c1924b2e1bef40de6c99ccba95454b3a60",
                "md5": "156a104a7081afabc4f7639dd6602255",
                "sha256": "8f27f1e5dca86da10d245e203283b75354be6e595573025be985c83f783423cb"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "156a104a7081afabc4f7639dd6602255",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 376447,
            "upload_time": "2024-12-24T12:41:28",
            "upload_time_iso_8601": "2024-12-24T12:41:28.041320Z",
            "url": "https://files.pythonhosted.org/packages/f3/4c/54c80cbc16dcbbfcf726100f56c1924b2e1bef40de6c99ccba95454b3a60/pyromark-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3a2f1462f5aaa6e0c7c1575e6f51ed8d85673a3d61ccba0787b24d52cb278cb",
                "md5": "971001e7cdd01125b6abc001980f50a1",
                "sha256": "4c050d4bfc0a81c58add5b4da4e1954a17cba6ee70b2ca939cfa762da6028217"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "971001e7cdd01125b6abc001980f50a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 532989,
            "upload_time": "2024-12-24T12:40:47",
            "upload_time_iso_8601": "2024-12-24T12:40:47.334839Z",
            "url": "https://files.pythonhosted.org/packages/a3/a2/f1462f5aaa6e0c7c1575e6f51ed8d85673a3d61ccba0787b24d52cb278cb/pyromark-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "264b8631f3d25436f3b492bebe0628a2d2d844cc4a132e35c1c3af439eb0320b",
                "md5": "943acd7b3f0f71e10fa000c87fa371c4",
                "sha256": "d6a2219072be17cc9da17db59e626f70e8d3e3c6d5e5abbe9eb68987b5a1a648"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "943acd7b3f0f71e10fa000c87fa371c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 618941,
            "upload_time": "2024-12-24T12:41:10",
            "upload_time_iso_8601": "2024-12-24T12:41:10.272433Z",
            "url": "https://files.pythonhosted.org/packages/26/4b/8631f3d25436f3b492bebe0628a2d2d844cc4a132e35c1c3af439eb0320b/pyromark-0.7.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdffa8ceb9a09b31c98e07db253c6abed872aaed4ddb9b2e8c5408405f60d6f4",
                "md5": "3230aa8dd09c96f86367304bfc85ea2e",
                "sha256": "f0a3d8c24e262ff0abc9051b67d2dc05ba4e4e05aabb285fae81b2824f1a5529"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3230aa8dd09c96f86367304bfc85ea2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 553959,
            "upload_time": "2024-12-24T12:41:43",
            "upload_time_iso_8601": "2024-12-24T12:41:43.378001Z",
            "url": "https://files.pythonhosted.org/packages/cd/ff/a8ceb9a09b31c98e07db253c6abed872aaed4ddb9b2e8c5408405f60d6f4/pyromark-0.7.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fab70bc1621346325a1f9b16ff96367e85111fe6324416b92cf508d804d33c1",
                "md5": "c5644acf7332d186fe33807bf34f66ac",
                "sha256": "6f6d353f78104cb61d8723cd34352f9706361d6ee75ddaea18e0d792f832f8d1"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5644acf7332d186fe33807bf34f66ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 546488,
            "upload_time": "2024-12-24T12:42:42",
            "upload_time_iso_8601": "2024-12-24T12:42:42.904648Z",
            "url": "https://files.pythonhosted.org/packages/7f/ab/70bc1621346325a1f9b16ff96367e85111fe6324416b92cf508d804d33c1/pyromark-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5196cd1ae0dbbc05874d9ced8d95c8aa74d7348579d28dc2aafef65dbf466ac4",
                "md5": "ee0bdcd890b28e77b52779e4e8252346",
                "sha256": "628d3e2fa4a7a8b42bfdae9f94e495636797be50a34e32cbe5783c83ca1bc91a"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ee0bdcd890b28e77b52779e4e8252346",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 256661,
            "upload_time": "2024-12-24T12:43:18",
            "upload_time_iso_8601": "2024-12-24T12:43:18.698232Z",
            "url": "https://files.pythonhosted.org/packages/51/96/cd1ae0dbbc05874d9ced8d95c8aa74d7348579d28dc2aafef65dbf466ac4/pyromark-0.7.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5d7a501240c376dedaa17d8055f277736abfadb6106d57567b31ea5c0e595fc",
                "md5": "db199e2a4998d93223b8dba3771e94f0",
                "sha256": "f75efa99d51e7e23c2a541a54fb974c313ec73e475b179eb43c9504b6af0d1d3"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "db199e2a4998d93223b8dba3771e94f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 268062,
            "upload_time": "2024-12-24T12:43:26",
            "upload_time_iso_8601": "2024-12-24T12:43:26.339985Z",
            "url": "https://files.pythonhosted.org/packages/d5/d7/a501240c376dedaa17d8055f277736abfadb6106d57567b31ea5c0e595fc/pyromark-0.7.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c7b743734ac1d5ac27cef539fd980f64168939e430255c8d86d0a7eccb2acbd",
                "md5": "23c99b495272804cc64978611ea8fb39",
                "sha256": "4804c2bc065050d03c0202534e9b796705f7591e1c5cd2ec9a4593c38c0d4575"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "23c99b495272804cc64978611ea8fb39",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 337056,
            "upload_time": "2024-12-24T12:43:04",
            "upload_time_iso_8601": "2024-12-24T12:43:04.981879Z",
            "url": "https://files.pythonhosted.org/packages/7c/7b/743734ac1d5ac27cef539fd980f64168939e430255c8d86d0a7eccb2acbd/pyromark-0.7.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad7186390cb655efde12d5ba28281f3b8dc48e818bc6b76fe5322d334cc50a7c",
                "md5": "8eb1a79fe61660e2153245eb6f2d5ed8",
                "sha256": "d2a86d5d9ad9bba47bf2ca85dbc0a9b1e9118405fffb6576de36eb8b5f1a98d4"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8eb1a79fe61660e2153245eb6f2d5ed8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 320251,
            "upload_time": "2024-12-24T12:42:54",
            "upload_time_iso_8601": "2024-12-24T12:42:54.381688Z",
            "url": "https://files.pythonhosted.org/packages/ad/71/86390cb655efde12d5ba28281f3b8dc48e818bc6b76fe5322d334cc50a7c/pyromark-0.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9f6a6160fb3e67b0d1f5aab57684ea8689e0680ba048aaea3fc219244320925",
                "md5": "b1f3b5dbd29caac7c351df4f15b9df2a",
                "sha256": "7561f4ce6c11e767d2df4c811a2705e9ff7cb43d6eb6b63426f2fdb7e3a01c40"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b1f3b5dbd29caac7c351df4f15b9df2a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 352316,
            "upload_time": "2024-12-24T12:40:38",
            "upload_time_iso_8601": "2024-12-24T12:40:38.799213Z",
            "url": "https://files.pythonhosted.org/packages/e9/f6/a6160fb3e67b0d1f5aab57684ea8689e0680ba048aaea3fc219244320925/pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2efcc27f101cc552859a9fd76c5f4fa628c36610eefa526a7e3b1d96a1b7ea76",
                "md5": "feef9496614e5c45d3b6b587a93cc974",
                "sha256": "d5a5d750ec770924e7398b90948dcce68ae487633ed1e9e46d77bf07e5a7e78f"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "feef9496614e5c45d3b6b587a93cc974",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 356107,
            "upload_time": "2024-12-24T12:41:01",
            "upload_time_iso_8601": "2024-12-24T12:41:01.676728Z",
            "url": "https://files.pythonhosted.org/packages/2e/fc/c27f101cc552859a9fd76c5f4fa628c36610eefa526a7e3b1d96a1b7ea76/pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76038b8fb7a4e29013144970df8384d9705af4f70eb868b755aec71c8f3435f7",
                "md5": "ee172db8652d5992fcdd9bac381ac9c9",
                "sha256": "9741c5714a7752af985889b69244afda2c100195d9bd30388f838754958c4764"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ee172db8652d5992fcdd9bac381ac9c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 403049,
            "upload_time": "2024-12-24T12:42:05",
            "upload_time_iso_8601": "2024-12-24T12:42:05.719703Z",
            "url": "https://files.pythonhosted.org/packages/76/03/8b8fb7a4e29013144970df8384d9705af4f70eb868b755aec71c8f3435f7/pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80baf57a25bf5234070694e2d2acff502246e923c1324d495f719b8ae305944b",
                "md5": "5adca524f09052ac18aa413695face4a",
                "sha256": "b7c7963517ff09b666b045654a3becb8a5da29323228e0d941a7f3afc4131103"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "5adca524f09052ac18aa413695face4a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 410867,
            "upload_time": "2024-12-24T12:41:55",
            "upload_time_iso_8601": "2024-12-24T12:41:55.396905Z",
            "url": "https://files.pythonhosted.org/packages/80/ba/f57a25bf5234070694e2d2acff502246e923c1324d495f719b8ae305944b/pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a31abd1a517719b62605ef260e4c2eef6a3e6502cbb70e6c7cc201085826928",
                "md5": "b2a1bb00ba19312e0507aa518fd1e3e6",
                "sha256": "7209ea8f2957ebdf53f555bf5b6c80da2d62577037424eae6b49560be808e290"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b2a1bb00ba19312e0507aa518fd1e3e6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 512462,
            "upload_time": "2024-12-24T12:42:15",
            "upload_time_iso_8601": "2024-12-24T12:42:15.765341Z",
            "url": "https://files.pythonhosted.org/packages/4a/31/abd1a517719b62605ef260e4c2eef6a3e6502cbb70e6c7cc201085826928/pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a70fbe444332bd4734c35c269c93dc8e1b2c6d8ad5402ddabf38753bcdc9cb07",
                "md5": "95f0d80491a9faf9780f1b1d6c8bb6b5",
                "sha256": "69aeef447e5f643c49689c26f92fc759489bda7a939f64fad439cb20805f022f"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95f0d80491a9faf9780f1b1d6c8bb6b5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 374447,
            "upload_time": "2024-12-24T12:42:28",
            "upload_time_iso_8601": "2024-12-24T12:42:28.918944Z",
            "url": "https://files.pythonhosted.org/packages/a7/0f/be444332bd4734c35c269c93dc8e1b2c6d8ad5402ddabf38753bcdc9cb07/pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d35ac2dda186ad1e03eaca857556262e0bbbefd90ff629fa4567e6ea9509a9b",
                "md5": "1ec1757734e502bde4e7ed8196dd3d7a",
                "sha256": "c216bff099161c1cd59ca376ab326bf8c1c2b5f9e3763b60b75119ed0d309605"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1ec1757734e502bde4e7ed8196dd3d7a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 377041,
            "upload_time": "2024-12-24T12:41:31",
            "upload_time_iso_8601": "2024-12-24T12:41:31.882632Z",
            "url": "https://files.pythonhosted.org/packages/5d/35/ac2dda186ad1e03eaca857556262e0bbbefd90ff629fa4567e6ea9509a9b/pyromark-0.7.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ef9239018a9210d8352570c46dfd24751d1b2bbc0cea8942808e5c2423cb82c",
                "md5": "1a64ab0521910d89b9e10a046bd970f9",
                "sha256": "0134c034dfad31ead1039b759213489a8a7f165e58bcead70d16402b225d57df"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1a64ab0521910d89b9e10a046bd970f9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 532915,
            "upload_time": "2024-12-24T12:40:48",
            "upload_time_iso_8601": "2024-12-24T12:40:48.602855Z",
            "url": "https://files.pythonhosted.org/packages/6e/f9/239018a9210d8352570c46dfd24751d1b2bbc0cea8942808e5c2423cb82c/pyromark-0.7.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47ec1579878613d6f77c32f0c1a8e5cbfc77dac2fd571aa996c4936b26a745b5",
                "md5": "4fbe0bb00898d5f7ffd77ec701bac431",
                "sha256": "8cabf92504f0e3de401a211db6b7389031def01d0a446310ee3e79578c2b5b5e"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4fbe0bb00898d5f7ffd77ec701bac431",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 619832,
            "upload_time": "2024-12-24T12:41:12",
            "upload_time_iso_8601": "2024-12-24T12:41:12.827373Z",
            "url": "https://files.pythonhosted.org/packages/47/ec/1579878613d6f77c32f0c1a8e5cbfc77dac2fd571aa996c4936b26a745b5/pyromark-0.7.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d338c3214e3fb87c601cb488e1b9f1055daf8001376db0de187ccec2d76c941",
                "md5": "5e9c12180bce912831f4ee0d6f923364",
                "sha256": "c5075131433a4366a21c2d289632c80f4bd4a90e29be907d67611ce9c51774ed"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5e9c12180bce912831f4ee0d6f923364",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 554482,
            "upload_time": "2024-12-24T12:41:44",
            "upload_time_iso_8601": "2024-12-24T12:41:44.958551Z",
            "url": "https://files.pythonhosted.org/packages/6d/33/8c3214e3fb87c601cb488e1b9f1055daf8001376db0de187ccec2d76c941/pyromark-0.7.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4463bc860024ab8ca9a7663ce2b0a99ae7771445ff56c1176ece002f5fde6698",
                "md5": "900e3e68fa1a8f0b317c688e276d6f65",
                "sha256": "f61424cf76325d23421eb5766d0da5ad53815b73a3a096a54f06a70154ad1898"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "900e3e68fa1a8f0b317c688e276d6f65",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 546660,
            "upload_time": "2024-12-24T12:42:44",
            "upload_time_iso_8601": "2024-12-24T12:42:44.192475Z",
            "url": "https://files.pythonhosted.org/packages/44/63/bc860024ab8ca9a7663ce2b0a99ae7771445ff56c1176ece002f5fde6698/pyromark-0.7.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7def82d3ec677f846db32d16946fbc66b8816cb35c467ac9448d39a9ab5938be",
                "md5": "3f244eaef1d06ae5eb7beea52f2bb9d7",
                "sha256": "7204b4026cff3ab5e473d9956c55d161365f2e10966641f07f51c4b00b119cd6"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f244eaef1d06ae5eb7beea52f2bb9d7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 337315,
            "upload_time": "2024-12-24T12:43:08",
            "upload_time_iso_8601": "2024-12-24T12:43:08.439902Z",
            "url": "https://files.pythonhosted.org/packages/7d/ef/82d3ec677f846db32d16946fbc66b8816cb35c467ac9448d39a9ab5938be/pyromark-0.7.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb6d03d851912ed1a3f36c4700c4c834953dffc642b684de2d6e03c0ee508eb5",
                "md5": "8476c2db1e7a804774a4d58714c5270c",
                "sha256": "b384c41ec79ec935b5049b2fe9147cd0e40ec445f17d761d14e90422d74735a5"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8476c2db1e7a804774a4d58714c5270c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 320535,
            "upload_time": "2024-12-24T12:42:55",
            "upload_time_iso_8601": "2024-12-24T12:42:55.645977Z",
            "url": "https://files.pythonhosted.org/packages/bb/6d/03d851912ed1a3f36c4700c4c834953dffc642b684de2d6e03c0ee508eb5/pyromark-0.7.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24230460ae9578ee41c68cec8fb42fb8576f8e600637e578bbf2ddb2c558d8e0",
                "md5": "6d6fd7b55380e3dfeb686d30c9c9b657",
                "sha256": "0b93c7eade88ea6e2eb721312eb3e276c1eacaf9768fb11fbf478bd6931a66a4"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d6fd7b55380e3dfeb686d30c9c9b657",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 352605,
            "upload_time": "2024-12-24T12:40:40",
            "upload_time_iso_8601": "2024-12-24T12:40:40.090984Z",
            "url": "https://files.pythonhosted.org/packages/24/23/0460ae9578ee41c68cec8fb42fb8576f8e600637e578bbf2ddb2c558d8e0/pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d83b1ba310281e1f2c3d1d430da0085411e2ec569b3221e556be690209f0e6a",
                "md5": "ab0495b340e6b631a75982c48ec92e75",
                "sha256": "7f2343504e0ae90f02b54d57c6f53cffde6f144e2d4c5d818fd82fad615a6b02"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ab0495b340e6b631a75982c48ec92e75",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 356099,
            "upload_time": "2024-12-24T12:41:02",
            "upload_time_iso_8601": "2024-12-24T12:41:02.928018Z",
            "url": "https://files.pythonhosted.org/packages/2d/83/b1ba310281e1f2c3d1d430da0085411e2ec569b3221e556be690209f0e6a/pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48859acbac059aec0929fe9995431963395ce0953d643071ba25e8ed0b4fd29f",
                "md5": "774e53005697436138472331a39e49b1",
                "sha256": "3f3dfda34dc7e0465416a855e3609fdcec6fc5b6abbe83aaf4bb340519d799be"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "774e53005697436138472331a39e49b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 403324,
            "upload_time": "2024-12-24T12:42:06",
            "upload_time_iso_8601": "2024-12-24T12:42:06.981750Z",
            "url": "https://files.pythonhosted.org/packages/48/85/9acbac059aec0929fe9995431963395ce0953d643071ba25e8ed0b4fd29f/pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "feb1e2dc4b867ab205a5529a206bcd207f876abf41307b8bf36e896b976e87c4",
                "md5": "85167d61a96516177c6fa6b6b5551c85",
                "sha256": "386fdd40ae27a700d46a5c046684ee179c9c4849b92260306e7fbfa4626dec8b"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "85167d61a96516177c6fa6b6b5551c85",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 411233,
            "upload_time": "2024-12-24T12:41:56",
            "upload_time_iso_8601": "2024-12-24T12:41:56.642805Z",
            "url": "https://files.pythonhosted.org/packages/fe/b1/e2dc4b867ab205a5529a206bcd207f876abf41307b8bf36e896b976e87c4/pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6083e2bc8ee0e13d15bd6840c9fa6a057b7d09b0137cc74e271f0abfcf2962e",
                "md5": "0052c8f7ea308cd474db1cec02b0f931",
                "sha256": "b24bef8a5a091303813d47a4bcb489858dab96d7445c64f0baf58d6bc7fda8d0"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0052c8f7ea308cd474db1cec02b0f931",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 512768,
            "upload_time": "2024-12-24T12:42:17",
            "upload_time_iso_8601": "2024-12-24T12:42:17.420173Z",
            "url": "https://files.pythonhosted.org/packages/b6/08/3e2bc8ee0e13d15bd6840c9fa6a057b7d09b0137cc74e271f0abfcf2962e/pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d07cdc2ebc097a5f88a6dc490166051065ca10ef30c9018163c76a9288850a9b",
                "md5": "557d8981b741891ce0a7ed33d305d812",
                "sha256": "58c07ddeffd287b5783539c0c1fc157b100bd7b55f7e97fbee2f4294ece17140"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "557d8981b741891ce0a7ed33d305d812",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 374757,
            "upload_time": "2024-12-24T12:42:31",
            "upload_time_iso_8601": "2024-12-24T12:42:31.571315Z",
            "url": "https://files.pythonhosted.org/packages/d0/7c/dc2ebc097a5f88a6dc490166051065ca10ef30c9018163c76a9288850a9b/pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91a38ee5cde057287d87191733ebec84c83255d4426345010b437340f3082050",
                "md5": "5eced22b384ebe8e0cb90b8b807a3b6d",
                "sha256": "7f04866c658845e5ba01089d62ac3547a9a8b88ec01e9d0e70daa09397935c10"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5eced22b384ebe8e0cb90b8b807a3b6d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 377039,
            "upload_time": "2024-12-24T12:41:34",
            "upload_time_iso_8601": "2024-12-24T12:41:34.536746Z",
            "url": "https://files.pythonhosted.org/packages/91/a3/8ee5cde057287d87191733ebec84c83255d4426345010b437340f3082050/pyromark-0.7.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc0a9c8a1debe50947df46c29f50976f665c2d493b9a92fe54eb46c61b3b3ce8",
                "md5": "5df9370f3dd965b9ebbdbdf6a1a7c603",
                "sha256": "2e1a7af49b81418f7e566e97d17349983111ad34e7eb929001ff0eda8385596c"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5df9370f3dd965b9ebbdbdf6a1a7c603",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 533259,
            "upload_time": "2024-12-24T12:40:49",
            "upload_time_iso_8601": "2024-12-24T12:40:49.862523Z",
            "url": "https://files.pythonhosted.org/packages/dc/0a/9c8a1debe50947df46c29f50976f665c2d493b9a92fe54eb46c61b3b3ce8/pyromark-0.7.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7deadba39d82b11346717712200de0861f0b9c3a8af717bdaa0f147535ed01d5",
                "md5": "082e453bab183c9614751abf4e1516e6",
                "sha256": "568b91f4efe395df01e0a5b2313881f4670ac5adec10d27181468fe40ff5c8bd"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "082e453bab183c9614751abf4e1516e6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 619799,
            "upload_time": "2024-12-24T12:41:16",
            "upload_time_iso_8601": "2024-12-24T12:41:16.411049Z",
            "url": "https://files.pythonhosted.org/packages/7d/ea/dba39d82b11346717712200de0861f0b9c3a8af717bdaa0f147535ed01d5/pyromark-0.7.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3fd5bc9328d74aa2998648b0c0c54b38066917ae49ea1c258c96fe1d3f80f0c",
                "md5": "33e15a6427e488b5dbdd43c060c0e2c2",
                "sha256": "5790cb8a2b5954695f1f780cd47619c713f7c0c716cdef11140d75e0fcaa8dbf"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "33e15a6427e488b5dbdd43c060c0e2c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 554455,
            "upload_time": "2024-12-24T12:41:46",
            "upload_time_iso_8601": "2024-12-24T12:41:46.219920Z",
            "url": "https://files.pythonhosted.org/packages/d3/fd/5bc9328d74aa2998648b0c0c54b38066917ae49ea1c258c96fe1d3f80f0c/pyromark-0.7.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b830eb25c79e85e35b132820c4202976773e9eb45dd7067ecd197da62d296a1",
                "md5": "28b6c3bd9e4036ed5ff2ed8962014dd0",
                "sha256": "931e2487f2b6681538fe7ee845ac4ea2c3b1b02040777a392dd0def1a9c0135f"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28b6c3bd9e4036ed5ff2ed8962014dd0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 546870,
            "upload_time": "2024-12-24T12:42:45",
            "upload_time_iso_8601": "2024-12-24T12:42:45.619900Z",
            "url": "https://files.pythonhosted.org/packages/0b/83/0eb25c79e85e35b132820c4202976773e9eb45dd7067ecd197da62d296a1/pyromark-0.7.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ae3b22937e10a54c5b9ffe8695c9bac356ed591faa6f95e580184445b13aa7c",
                "md5": "db681586fc4bd9a4b6f4928b69c95279",
                "sha256": "a0ff31bd1e277821cae39ee7d9f6c88ee02d34214fa23adab1a1e1f4a7af7bcb"
            },
            "downloads": -1,
            "filename": "pyromark-0.7.1.tar.gz",
            "has_sig": false,
            "md5_digest": "db681586fc4bd9a4b6f4928b69c95279",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 9220,
            "upload_time": "2024-12-24T12:43:09",
            "upload_time_iso_8601": "2024-12-24T12:43:09.661171Z",
            "url": "https://files.pythonhosted.org/packages/2a/e3/b22937e10a54c5b9ffe8695c9bac356ed591faa6f95e580184445b13aa7c/pyromark-0.7.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-24 12:43:09",
    "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: 4.87800s