comrak-ext


Namecomrak-ext JSON
Version 0.1.1 PyPI version JSON
download
home_pageNone
SummaryExtended Python bindings for the Comrak Rust library, a fast CommonMark/GFM parser
upload_time2025-09-08 13:44:42
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords markdown html rust commonmark gfm parser
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # comrak-ext

<!-- [![downloads](https://static.pepy.tech/badge/comrak-ext/month)](https://pepy.tech/project/comrak-ext) -->
[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
[![pdm-managed](https://img.shields.io/badge/pdm-managed-blueviolet)](https://pdm.fming.dev)
[![PyPI](https://img.shields.io/pypi/v/comrak-ext.svg)](https://pypi.org/project/comrak-ext)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/comrak-ext.svg)](https://pypi.org/project/comrak-ext)
[![License](https://img.shields.io/pypi/l/comrak-ext.svg)](https://pypi.python.org/pypi/comrak-ext)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/Martin005/comrak-ext/master.svg)](https://results.pre-commit.ci/latest/github/Martin005/comrak-ext/master)

Extended Python bindings for the Comrak Rust library, a fast CommonMark/GFM parser. Fork of [lmmx/comrak](https://github.com/lmmx/comrak).

## Installation

```bash
pip install comrak-ext
```

### Requirements

- Python 3.9+

## Features

Fast Markdown to HTML parser in Rust, shipped for Python via PyO3.

## API

### `markdown_to_html`

Render Markdown to HTML:

```python
from comrak import ExtensionOptions, markdown_to_html
extension_options = ExtensionOptions()
markdown_to_html("foo :smile:", extension_options)
# '<p>foo :smile:</p>\n'

extension_options.shortcodes = True
markdown_to_html("foo :smile:", extension_options)
# '<p>foo 😄</p>\n'
```

### `markdown_to_commonmark`

Render Markdown to CommonMark:

```python
from comrak import RenderOptions, ListStyleType, markdown_to_commonmark

render_options = RenderOptions()
markdown_to_commonmark("- one\n- two\n- three", render_options=render_options)

# '- one\n- two\n- three\n' – default is Dash
render_options.list_style = ListStyleType.Plus
markdown_to_commonmark("- one\n- two\n- three", render_options=render_options)
# '+ one\n+ two\n+ three\n'
```

### `parse_document`

Parse Markdown into an abstract syntax tree (AST):

```python
from comrak import ExtensionOptions, Document, Text, Paragraph, parse_document

extension_options = ExtensionOptions(front_matter_delimiter = "---")

md_content = """---
This is a text in FrontMatter
---

Hello, Markdown!
"""

x = parse_document(md_content, extension_options)
assert isinstance(x.node_value, Document)
assert not hasattr(x.node_value, "value")
assert len(x.children) == 2

assert isinstance(x.children[0].node_value, FrontMatter)
assert isinstance(x.children[0].node_value.value, str)
assert x.children[0].node_value.value.strip() == "---\nThis is a text in FrontMatter\n---"

assert isinstance(x.children[1].node_value, Paragraph)
assert len(x.children[1].children) == 1
assert isinstance(x.children[1].children[0].node_value, Text)
assert isinstance(x.children[1].children[0].node_value.value, str)
assert x.children[1].children[0].node_value.value == "Hello, Markdown!"
```

### Options

All options are exposed in a simple manner and can be used with `markdown_to_html`, `markdown_to_commonmark`, and `parse_document`.

Refer to the [Comrak docs](https://docs.rs/comrak/latest/comrak/struct.Options.html) for all available options.

## Benchmarks

Tested with small (8 lines) and medium (1200 lines) markdown strings

- vs. [markdown](https://pypi.org/project/markdown): 15x faster (S/M)
- vs. [markdown2](https://pypi.org/project/markdown2): 20x (S) - 60x (M) faster

## Contributing

Maintained by [Martin005](https://github.com/Martin005). Contributions welcome!

1. **Issues & Discussions**: Please open a GitHub issue or discussion for bugs, feature requests, or questions.
2. **Pull Requests**: PRs are welcome!
   - Install the dev extra (e.g. with [uv](https://docs.astral.sh/uv/): `uv pip install -e .[dev]`)
   - Run tests (when available) and include updates to docs or examples if relevant.
   - If reporting a bug, please include the version and the error message/traceback if available.

## License

Licensed under the 2-Clause BSD License. See [LICENSE](https://github.com/Martin005/comrak-ext/blob/master/LICENSE) for all the details.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "comrak-ext",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "markdown, html, rust, commonmark, gfm, parser",
    "author": null,
    "author_email": "Martin Chr\u00e1stek <chrastek12@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/cf/51/cedb8e4afc0417cc34b3b68325273ef37ed3b814d48989f651f57fdb6116/comrak_ext-0.1.1.tar.gz",
    "platform": null,
    "description": "# comrak-ext\n\n<!-- [![downloads](https://static.pepy.tech/badge/comrak-ext/month)](https://pepy.tech/project/comrak-ext) -->\n[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)\n[![pdm-managed](https://img.shields.io/badge/pdm-managed-blueviolet)](https://pdm.fming.dev)\n[![PyPI](https://img.shields.io/pypi/v/comrak-ext.svg)](https://pypi.org/project/comrak-ext)\n[![Supported Python versions](https://img.shields.io/pypi/pyversions/comrak-ext.svg)](https://pypi.org/project/comrak-ext)\n[![License](https://img.shields.io/pypi/l/comrak-ext.svg)](https://pypi.python.org/pypi/comrak-ext)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/Martin005/comrak-ext/master.svg)](https://results.pre-commit.ci/latest/github/Martin005/comrak-ext/master)\n\nExtended Python bindings for the Comrak Rust library, a fast CommonMark/GFM parser. Fork of [lmmx/comrak](https://github.com/lmmx/comrak).\n\n## Installation\n\n```bash\npip install comrak-ext\n```\n\n### Requirements\n\n- Python 3.9+\n\n## Features\n\nFast Markdown to HTML parser in Rust, shipped for Python via PyO3.\n\n## API\n\n### `markdown_to_html`\n\nRender Markdown to HTML:\n\n```python\nfrom comrak import ExtensionOptions, markdown_to_html\nextension_options = ExtensionOptions()\nmarkdown_to_html(\"foo :smile:\", extension_options)\n# '<p>foo :smile:</p>\\n'\n\nextension_options.shortcodes = True\nmarkdown_to_html(\"foo :smile:\", extension_options)\n# '<p>foo \ud83d\ude04</p>\\n'\n```\n\n### `markdown_to_commonmark`\n\nRender Markdown to CommonMark:\n\n```python\nfrom comrak import RenderOptions, ListStyleType, markdown_to_commonmark\n\nrender_options = RenderOptions()\nmarkdown_to_commonmark(\"- one\\n- two\\n- three\", render_options=render_options)\n\n# '- one\\n- two\\n- three\\n' \u2013 default is Dash\nrender_options.list_style = ListStyleType.Plus\nmarkdown_to_commonmark(\"- one\\n- two\\n- three\", render_options=render_options)\n# '+ one\\n+ two\\n+ three\\n'\n```\n\n### `parse_document`\n\nParse Markdown into an abstract syntax tree (AST):\n\n```python\nfrom comrak import ExtensionOptions, Document, Text, Paragraph, parse_document\n\nextension_options = ExtensionOptions(front_matter_delimiter = \"---\")\n\nmd_content = \"\"\"---\nThis is a text in FrontMatter\n---\n\nHello, Markdown!\n\"\"\"\n\nx = parse_document(md_content, extension_options)\nassert isinstance(x.node_value, Document)\nassert not hasattr(x.node_value, \"value\")\nassert len(x.children) == 2\n\nassert isinstance(x.children[0].node_value, FrontMatter)\nassert isinstance(x.children[0].node_value.value, str)\nassert x.children[0].node_value.value.strip() == \"---\\nThis is a text in FrontMatter\\n---\"\n\nassert isinstance(x.children[1].node_value, Paragraph)\nassert len(x.children[1].children) == 1\nassert isinstance(x.children[1].children[0].node_value, Text)\nassert isinstance(x.children[1].children[0].node_value.value, str)\nassert x.children[1].children[0].node_value.value == \"Hello, Markdown!\"\n```\n\n### Options\n\nAll options are exposed in a simple manner and can be used with `markdown_to_html`, `markdown_to_commonmark`, and `parse_document`.\n\nRefer to the [Comrak docs](https://docs.rs/comrak/latest/comrak/struct.Options.html) for all available options.\n\n## Benchmarks\n\nTested with small (8 lines) and medium (1200 lines) markdown strings\n\n- vs. [markdown](https://pypi.org/project/markdown): 15x faster (S/M)\n- vs. [markdown2](https://pypi.org/project/markdown2): 20x (S) - 60x (M) faster\n\n## Contributing\n\nMaintained by [Martin005](https://github.com/Martin005). Contributions welcome!\n\n1. **Issues & Discussions**: Please open a GitHub issue or discussion for bugs, feature requests, or questions.\n2. **Pull Requests**: PRs are welcome!\n   - Install the dev extra (e.g. with [uv](https://docs.astral.sh/uv/): `uv pip install -e .[dev]`)\n   - Run tests (when available) and include updates to docs or examples if relevant.\n   - If reporting a bug, please include the version and the error message/traceback if available.\n\n## License\n\nLicensed under the 2-Clause BSD License. See [LICENSE](https://github.com/Martin005/comrak-ext/blob/master/LICENSE) for all the details.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Extended Python bindings for the Comrak Rust library, a fast CommonMark/GFM parser",
    "version": "0.1.1",
    "project_urls": {
        "Homepage": "https://github.com/Martin005/comrak-ext",
        "Repository": "https://github.com/Martin005/comrak-ext.git"
    },
    "split_keywords": [
        "markdown",
        " html",
        " rust",
        " commonmark",
        " gfm",
        " parser"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eeb385169792a42c24e83cd2bfe85d376f14f98888ef5cf8d7c25de00459723b",
                "md5": "e0a3cc3985348d8fcaac00356865f28c",
                "sha256": "930f84d10ae845078f4e484b1c70997495d88c4c0a19c4523048e40bfb098f48"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e0a3cc3985348d8fcaac00356865f28c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 683795,
            "upload_time": "2025-09-08T13:42:38",
            "upload_time_iso_8601": "2025-09-08T13:42:38.898394Z",
            "url": "https://files.pythonhosted.org/packages/ee/b3/85169792a42c24e83cd2bfe85d376f14f98888ef5cf8d7c25de00459723b/comrak_ext-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bd4bf03e54690ee68918fe7408733243c88f564a768b5a242190de7ad9f5635",
                "md5": "0f200befc2e3326e199c3cdf0f9f4637",
                "sha256": "1d80876623badccd9e31c35bd5842bff83e750d4a7e9aab547439beea59e5070"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0f200befc2e3326e199c3cdf0f9f4637",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 645802,
            "upload_time": "2025-09-08T13:42:51",
            "upload_time_iso_8601": "2025-09-08T13:42:51.580367Z",
            "url": "https://files.pythonhosted.org/packages/7b/d4/bf03e54690ee68918fe7408733243c88f564a768b5a242190de7ad9f5635/comrak_ext-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "808ae87f5d324cc9317c4d733944c9a0580d91f857e100982dac64a1c0f80894",
                "md5": "8257cbdd2fee2fa47811222a24d3e004",
                "sha256": "5049d93b654d9ab9f606539e42703fa774d01a8c992a87b1eb532d63fcd7867c"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8257cbdd2fee2fa47811222a24d3e004",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 761428,
            "upload_time": "2025-09-08T13:43:12",
            "upload_time_iso_8601": "2025-09-08T13:43:12.901952Z",
            "url": "https://files.pythonhosted.org/packages/80/8a/e87f5d324cc9317c4d733944c9a0580d91f857e100982dac64a1c0f80894/comrak_ext-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6105bb11304dab6f950977acdb3d8e9c1e153240a15edabf3f6dcb55843f4a56",
                "md5": "e89e6638d6ba9011e51270e8ae09a14a",
                "sha256": "1b1111fd78c379184c36d7c2a86ebc0aa08b1b17950611692f9ebef8b07eef09"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e89e6638d6ba9011e51270e8ae09a14a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 830824,
            "upload_time": "2025-09-08T13:43:26",
            "upload_time_iso_8601": "2025-09-08T13:43:26.038973Z",
            "url": "https://files.pythonhosted.org/packages/61/05/bb11304dab6f950977acdb3d8e9c1e153240a15edabf3f6dcb55843f4a56/comrak_ext-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bdd5467d8b4f054fab4f8dcf4f1c9fd6b1a4263e19e9cdb94099955528ef5121",
                "md5": "1fc218cdb5152a8e2fe65505f71aa740",
                "sha256": "6cbdfae69b4bce36c4e7b2fbe09ae312f839879c24f5e9a022bf538efc37e3ff"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1fc218cdb5152a8e2fe65505f71aa740",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 726716,
            "upload_time": "2025-09-08T13:43:37",
            "upload_time_iso_8601": "2025-09-08T13:43:37.281040Z",
            "url": "https://files.pythonhosted.org/packages/bd/d5/467d8b4f054fab4f8dcf4f1c9fd6b1a4263e19e9cdb94099955528ef5121/comrak_ext-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2b62e4c4e7d6050f26284f50634cfc297cd389091fccea0080f063f87206632",
                "md5": "cf0b067c0997acfb58f0a811d99fc68c",
                "sha256": "476b095edf85e3ef267fe9d3fbb84c2e43f4b4c9945b9d593c69b08d6d12e2d6"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "cf0b067c0997acfb58f0a811d99fc68c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 692740,
            "upload_time": "2025-09-08T13:43:03",
            "upload_time_iso_8601": "2025-09-08T13:43:03.096814Z",
            "url": "https://files.pythonhosted.org/packages/b2/b6/2e4c4e7d6050f26284f50634cfc297cd389091fccea0080f063f87206632/comrak_ext-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "958bd6d3343abd5e925bf8c76d4df87738193ca5a04083c17388aba25ba2115c",
                "md5": "377ce004f6dccca6f077c7e8b2a2ce3f",
                "sha256": "7471567fbe770caf2be489cbb69c9ac9425676073deed1fbcc3ca75ee9231ddc"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "377ce004f6dccca6f077c7e8b2a2ce3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 865273,
            "upload_time": "2025-09-08T13:43:53",
            "upload_time_iso_8601": "2025-09-08T13:43:53.729003Z",
            "url": "https://files.pythonhosted.org/packages/95/8b/d6d3343abd5e925bf8c76d4df87738193ca5a04083c17388aba25ba2115c/comrak_ext-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0045fc6a6743daaf94be7bdf9d06b71ca3903b3f9c80126caef14f1fedf5ffe4",
                "md5": "84073024cd807b27fc422786b7f340e7",
                "sha256": "35e18c26616208e019e8b528c2208b7dce47466ff9faeb52bbfdd916cdc44905"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "84073024cd807b27fc422786b7f340e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 911443,
            "upload_time": "2025-09-08T13:44:06",
            "upload_time_iso_8601": "2025-09-08T13:44:06.346620Z",
            "url": "https://files.pythonhosted.org/packages/00/45/fc6a6743daaf94be7bdf9d06b71ca3903b3f9c80126caef14f1fedf5ffe4/comrak_ext-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3484869517fff5c7d199146796682bf12e61da59071c34f7025ad6547f25fbad",
                "md5": "fa324d5d74df2bded0f7984c439f2a7c",
                "sha256": "78582aa0540d0ec9fbeae0508dd6a91943dbbb6e5d9943d7141efb68a45e2cae"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "fa324d5d74df2bded0f7984c439f2a7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 859131,
            "upload_time": "2025-09-08T13:44:17",
            "upload_time_iso_8601": "2025-09-08T13:44:17.868664Z",
            "url": "https://files.pythonhosted.org/packages/34/84/869517fff5c7d199146796682bf12e61da59071c34f7025ad6547f25fbad/comrak_ext-0.1.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "963eda25eb6ea38a32199c7ab0970ff6a9aa522fb5dbc9c00604d983893337c5",
                "md5": "93600e4416fa34f6da02bd94c700c8db",
                "sha256": "81aca24bf0bbd7a5c5def4c82fc2001759c4963ebc5f96e67a0aac62e03f0905"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93600e4416fa34f6da02bd94c700c8db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 898174,
            "upload_time": "2025-09-08T13:44:30",
            "upload_time_iso_8601": "2025-09-08T13:44:30.423165Z",
            "url": "https://files.pythonhosted.org/packages/96/3e/da25eb6ea38a32199c7ab0970ff6a9aa522fb5dbc9c00604d983893337c5/comrak_ext-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37c110eecba0f5fd073bd097bbfd91247a8ae64e0440acf9536e1611a0eec15e",
                "md5": "f19aecd5aa75fdcb9104773997c9fe07",
                "sha256": "f78afa71a8fe6573d0b0f4c34a140c102777e722b29aa7c7b1167c03d7ede4ee"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f19aecd5aa75fdcb9104773997c9fe07",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 545154,
            "upload_time": "2025-09-08T13:44:43",
            "upload_time_iso_8601": "2025-09-08T13:44:43.280031Z",
            "url": "https://files.pythonhosted.org/packages/37/c1/10eecba0f5fd073bd097bbfd91247a8ae64e0440acf9536e1611a0eec15e/comrak_ext-0.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a301e04fde9e16baf2cac585d85a97cea880dce781baafbabfba42af82605c68",
                "md5": "075ba2cbc62ee020065e07e493def0be",
                "sha256": "4f55916eb8fc7446eefc0252b5eb3698f0ece11800b4a52fc48c07557de6a382"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "075ba2cbc62ee020065e07e493def0be",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 614603,
            "upload_time": "2025-09-08T13:43:49",
            "upload_time_iso_8601": "2025-09-08T13:43:49.874604Z",
            "url": "https://files.pythonhosted.org/packages/a3/01/e04fde9e16baf2cac585d85a97cea880dce781baafbabfba42af82605c68/comrak_ext-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d29772ff90387ec74ada50c3f6a4518e98a5b8abe900427e3e7474443df29522",
                "md5": "ef43a33ce7aa549845be1d1b409ffb55",
                "sha256": "3454eff782b000b14e1eae45cda5956cfd81643f6571b9562c6a3bacc5e1cedc"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ef43a33ce7aa549845be1d1b409ffb55",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 580792,
            "upload_time": "2025-09-08T13:43:46",
            "upload_time_iso_8601": "2025-09-08T13:43:46.085424Z",
            "url": "https://files.pythonhosted.org/packages/d2/97/72ff90387ec74ada50c3f6a4518e98a5b8abe900427e3e7474443df29522/comrak_ext-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dec44da6ad08f2f573cc612b1b4634703a6173d400b4b11dc35593f05b8c7b10",
                "md5": "88154b6512980267adb75b2068e9a06a",
                "sha256": "6377372e817cb23573d2039873ff8fb9e49e509db1eae6e47bbe16539a462073"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "88154b6512980267adb75b2068e9a06a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 683844,
            "upload_time": "2025-09-08T13:42:40",
            "upload_time_iso_8601": "2025-09-08T13:42:40.286503Z",
            "url": "https://files.pythonhosted.org/packages/de/c4/4da6ad08f2f573cc612b1b4634703a6173d400b4b11dc35593f05b8c7b10/comrak_ext-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce7694fa3ef19ae848a44a12a0a48b0ec283fa05e5584fa967e45edaa73f7b1d",
                "md5": "a7f302609e81005a220e2a3e3bc7a8f6",
                "sha256": "fc53f9e0fea92143fdc7ce794a99e580fbd4de451c27211ac1efce95ac75b108"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a7f302609e81005a220e2a3e3bc7a8f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 645776,
            "upload_time": "2025-09-08T13:42:52",
            "upload_time_iso_8601": "2025-09-08T13:42:52.709912Z",
            "url": "https://files.pythonhosted.org/packages/ce/76/94fa3ef19ae848a44a12a0a48b0ec283fa05e5584fa967e45edaa73f7b1d/comrak_ext-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "61f07d62f84e8854fb7ca5251e33d5989628cf78f3db4fac29b4c3e2b24ea0f6",
                "md5": "502852058200f7976d370b28e7134b09",
                "sha256": "c2c14c2e7fba2293a0d0663c8ee5c1c2f3225a8b175343ef0a83d22ea9ac4020"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "502852058200f7976d370b28e7134b09",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 761365,
            "upload_time": "2025-09-08T13:43:14",
            "upload_time_iso_8601": "2025-09-08T13:43:14.264655Z",
            "url": "https://files.pythonhosted.org/packages/61/f0/7d62f84e8854fb7ca5251e33d5989628cf78f3db4fac29b4c3e2b24ea0f6/comrak_ext-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd19c1b212358c182b17bca39e2d2cdce4967451f50703e1b41478aa23eb308c",
                "md5": "50dbc712cbab00a8d2a941ea7d5e1d4e",
                "sha256": "d950a82ebec638762488a92df90c52c1fb0366fda5d58b7180f7f8c521cded59"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "50dbc712cbab00a8d2a941ea7d5e1d4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 830923,
            "upload_time": "2025-09-08T13:43:27",
            "upload_time_iso_8601": "2025-09-08T13:43:27.256144Z",
            "url": "https://files.pythonhosted.org/packages/bd/19/c1b212358c182b17bca39e2d2cdce4967451f50703e1b41478aa23eb308c/comrak_ext-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d375e7f13d4aa0ece46e0b218e059a5b12a1b4183344119854ab0ae864261678",
                "md5": "8f7eb7b22cd4a1f6ca209eb2cd547eef",
                "sha256": "c87e22895d366a3994c46b8f2581b5eedb4cc45696df361625160df41cd6b50b"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f7eb7b22cd4a1f6ca209eb2cd547eef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 726623,
            "upload_time": "2025-09-08T13:43:38",
            "upload_time_iso_8601": "2025-09-08T13:43:38.519165Z",
            "url": "https://files.pythonhosted.org/packages/d3/75/e7f13d4aa0ece46e0b218e059a5b12a1b4183344119854ab0ae864261678/comrak_ext-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c641a019ea725a029c25e24435c861c7b5c47931b3d649d51ee9a7aae405ba8c",
                "md5": "89118924ab337f5e30d5258430bc34ef",
                "sha256": "ab5e33320db2e7e196a92e244db35f8eb53a3833efb704284c2f4c872586db56"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "89118924ab337f5e30d5258430bc34ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 692716,
            "upload_time": "2025-09-08T13:43:04",
            "upload_time_iso_8601": "2025-09-08T13:43:04.239779Z",
            "url": "https://files.pythonhosted.org/packages/c6/41/a019ea725a029c25e24435c861c7b5c47931b3d649d51ee9a7aae405ba8c/comrak_ext-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "787baba792b077e37575e3ebcec3bdb2c1712828f379e86893668d6b16e5567d",
                "md5": "08344b7638b6dfd2c7bba768a7e46bef",
                "sha256": "d22dc7e26def26a7242e63a574a0355931d34c724efdd9d9ed897f8edc8c8dae"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "08344b7638b6dfd2c7bba768a7e46bef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 865260,
            "upload_time": "2025-09-08T13:43:55",
            "upload_time_iso_8601": "2025-09-08T13:43:55.352881Z",
            "url": "https://files.pythonhosted.org/packages/78/7b/aba792b077e37575e3ebcec3bdb2c1712828f379e86893668d6b16e5567d/comrak_ext-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88f975b26b42c9204a822c5998efaa33cc12cf03076c63a5c9b8c95a9e2c0ea5",
                "md5": "77dd2800d6024f11aa8a29630138942b",
                "sha256": "fd7145afbbd816789d8830cf1eb14f558cac01408f558afa63119474321f04c1"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "77dd2800d6024f11aa8a29630138942b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 911257,
            "upload_time": "2025-09-08T13:44:07",
            "upload_time_iso_8601": "2025-09-08T13:44:07.558314Z",
            "url": "https://files.pythonhosted.org/packages/88/f9/75b26b42c9204a822c5998efaa33cc12cf03076c63a5c9b8c95a9e2c0ea5/comrak_ext-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee23ed22894c25ae637b0b203adcb49f69d5be1de8125f04443a3ffbf9c06dae",
                "md5": "4cfc593e58926b9c34e6df8b724e2b44",
                "sha256": "91eb51c79e9a2e7264c5cffa22a590cc3edd454fb812f90f355e1378273169f6"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4cfc593e58926b9c34e6df8b724e2b44",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 858914,
            "upload_time": "2025-09-08T13:44:19",
            "upload_time_iso_8601": "2025-09-08T13:44:19.112037Z",
            "url": "https://files.pythonhosted.org/packages/ee/23/ed22894c25ae637b0b203adcb49f69d5be1de8125f04443a3ffbf9c06dae/comrak_ext-0.1.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0be6e5562698499e95e66d06df5b25956165614eee41fd5ea76364a7cde884c0",
                "md5": "df658e64488bcb30abf981838ee70a78",
                "sha256": "c6d2a7a2d6d38a84b9a063c8b6144e6d357c590699cfc0892b2a84e395ad6061"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df658e64488bcb30abf981838ee70a78",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 898305,
            "upload_time": "2025-09-08T13:44:31",
            "upload_time_iso_8601": "2025-09-08T13:44:31.684346Z",
            "url": "https://files.pythonhosted.org/packages/0b/e6/e5562698499e95e66d06df5b25956165614eee41fd5ea76364a7cde884c0/comrak_ext-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2208303b164f797f2af9b5416d477127feb1522818bc825d4ded92648f211887",
                "md5": "638393d47fa28b76fbcc8425014734d3",
                "sha256": "29d40fbfd99928e0085354df863775381acab6ea9b456bd821993e00e3183469"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "638393d47fa28b76fbcc8425014734d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 544930,
            "upload_time": "2025-09-08T13:44:44",
            "upload_time_iso_8601": "2025-09-08T13:44:44.872325Z",
            "url": "https://files.pythonhosted.org/packages/22/08/303b164f797f2af9b5416d477127feb1522818bc825d4ded92648f211887/comrak_ext-0.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00bfaf6ad9987230beb0e061f21e4d4fc1ccb1ad0c5012fa60600a642531b11e",
                "md5": "c298f4c3dc92198ed488c695c79a91f1",
                "sha256": "efd1d8c534d4403b6860a93dcf90ee350eb04dd0b2def810e8cc7c8cb81380eb"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c298f4c3dc92198ed488c695c79a91f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 611958,
            "upload_time": "2025-09-08T13:43:51",
            "upload_time_iso_8601": "2025-09-08T13:43:51.352422Z",
            "url": "https://files.pythonhosted.org/packages/00/bf/af6ad9987230beb0e061f21e4d4fc1ccb1ad0c5012fa60600a642531b11e/comrak_ext-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a068d77a80a396dc429418371a19fa3be3216e216ca23521c21c7dcaaacba722",
                "md5": "b73d6c2ab35bd7d88f8e23354e0eba1f",
                "sha256": "6a7f72c1883ac193bdb1179ea98c0e4ea380185f7691773bd170ab05394b2de0"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b73d6c2ab35bd7d88f8e23354e0eba1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 577287,
            "upload_time": "2025-09-08T13:43:47",
            "upload_time_iso_8601": "2025-09-08T13:43:47.562736Z",
            "url": "https://files.pythonhosted.org/packages/a0/68/d77a80a396dc429418371a19fa3be3216e216ca23521c21c7dcaaacba722/comrak_ext-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23b1ff136166cacd57175aea9ed5913a4eb814fcc834e68bf640b48a77911d92",
                "md5": "cae445f46c06e8608c0ba5e1026ecaa8",
                "sha256": "10c9af501e7906e43ca5c3ddb60cbe097d927d5c0fe2d098402aa7b638a2b3bf"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cae445f46c06e8608c0ba5e1026ecaa8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 681698,
            "upload_time": "2025-09-08T13:42:41",
            "upload_time_iso_8601": "2025-09-08T13:42:41.494407Z",
            "url": "https://files.pythonhosted.org/packages/23/b1/ff136166cacd57175aea9ed5913a4eb814fcc834e68bf640b48a77911d92/comrak_ext-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c127af32a539225de8b4a358ffcf1c6899a37ba708a30742bf3848cc84431ce5",
                "md5": "d9f3084e6396fe587aa80673517d6bac",
                "sha256": "e2287ae3ac1bd01212d27ce8e72d67382a36c8f29f37dbd3d1952023520248c5"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d9f3084e6396fe587aa80673517d6bac",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 644866,
            "upload_time": "2025-09-08T13:42:53",
            "upload_time_iso_8601": "2025-09-08T13:42:53.972078Z",
            "url": "https://files.pythonhosted.org/packages/c1/27/af32a539225de8b4a358ffcf1c6899a37ba708a30742bf3848cc84431ce5/comrak_ext-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "282814556efaf676167bc78d1be20fd8a8c8e9c033ed471ca3cfc34b0a3896df",
                "md5": "29caa571bb65eb69838bbc724d35ba2a",
                "sha256": "99aaa6b4a2c109f765f954a98691cc7df46f6daf1e3fdce65e21d08d8c950fdb"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "29caa571bb65eb69838bbc724d35ba2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 756887,
            "upload_time": "2025-09-08T13:43:15",
            "upload_time_iso_8601": "2025-09-08T13:43:15.579908Z",
            "url": "https://files.pythonhosted.org/packages/28/28/14556efaf676167bc78d1be20fd8a8c8e9c033ed471ca3cfc34b0a3896df/comrak_ext-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "388b3f94678cb89e594f1987c32cfbe3084c3bc647b2ffb256037076e7fc536c",
                "md5": "86644ecc7308654beed0aa9b79a86734",
                "sha256": "200f5c2957800a538799f554f77dd965c388d65980eb937723132f2a56e33103"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "86644ecc7308654beed0aa9b79a86734",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 833841,
            "upload_time": "2025-09-08T13:43:28",
            "upload_time_iso_8601": "2025-09-08T13:43:28.811246Z",
            "url": "https://files.pythonhosted.org/packages/38/8b/3f94678cb89e594f1987c32cfbe3084c3bc647b2ffb256037076e7fc536c/comrak_ext-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75a1cd3bab342f43076c94931206e1e3c93204ba67e48b2c9753e7f4b69636b0",
                "md5": "aa9de489a9360793cf85ba2c6d7c504d",
                "sha256": "0733a364e5aa5d436919835ae43a5503534a6aabc091cd3dda6ab6e749ecf1ae"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa9de489a9360793cf85ba2c6d7c504d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 723071,
            "upload_time": "2025-09-08T13:43:39",
            "upload_time_iso_8601": "2025-09-08T13:43:39.835403Z",
            "url": "https://files.pythonhosted.org/packages/75/a1/cd3bab342f43076c94931206e1e3c93204ba67e48b2c9753e7f4b69636b0/comrak_ext-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4fcdbad9a17683d719f275a3f42a925bc9bf4e4bbb86b311e339d531794a8255",
                "md5": "efe4b0eb1afa91ff231e65ff5bc97021",
                "sha256": "ca82884bfae3e32cd5c328fbf49a3880e1883e563f0eaab9a6ab799964ae58f4"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "efe4b0eb1afa91ff231e65ff5bc97021",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 689575,
            "upload_time": "2025-09-08T13:43:06",
            "upload_time_iso_8601": "2025-09-08T13:43:06.766649Z",
            "url": "https://files.pythonhosted.org/packages/4f/cd/bad9a17683d719f275a3f42a925bc9bf4e4bbb86b311e339d531794a8255/comrak_ext-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c28f2091687c892b09ee830cf25798ad55f540f3ecc88a6f942882536495b22",
                "md5": "9e612199f9c8d93965a6b496609073f9",
                "sha256": "11ebb62964c7736e306e1b5a3a2ee454ec680bc0b24cd63a4b8e6834249a3734"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9e612199f9c8d93965a6b496609073f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 862511,
            "upload_time": "2025-09-08T13:43:56",
            "upload_time_iso_8601": "2025-09-08T13:43:56.615690Z",
            "url": "https://files.pythonhosted.org/packages/7c/28/f2091687c892b09ee830cf25798ad55f540f3ecc88a6f942882536495b22/comrak_ext-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ffa330ae02ea343c3275f2dfaede0442449517195b3bbafb19ae4ce2e68a257",
                "md5": "521b13ad6a7f3baef436974633248f5c",
                "sha256": "19f83037a19e93cc22e1f930da8f51f1a928e54bb99394f819aff62e3906a255"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "521b13ad6a7f3baef436974633248f5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 910599,
            "upload_time": "2025-09-08T13:44:08",
            "upload_time_iso_8601": "2025-09-08T13:44:08.867207Z",
            "url": "https://files.pythonhosted.org/packages/0f/fa/330ae02ea343c3275f2dfaede0442449517195b3bbafb19ae4ce2e68a257/comrak_ext-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbbfb9e320316182521fd3b69f2d9446263286ced457c5c4cfbb9c62136b4ac5",
                "md5": "329474f9253df5a83ebae9407281d075",
                "sha256": "fe375f2b781f7b8a6952f2726771b1b113f8904d4f294cde883e2c3999424829"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "329474f9253df5a83ebae9407281d075",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 855412,
            "upload_time": "2025-09-08T13:44:20",
            "upload_time_iso_8601": "2025-09-08T13:44:20.587652Z",
            "url": "https://files.pythonhosted.org/packages/cb/bf/b9e320316182521fd3b69f2d9446263286ced457c5c4cfbb9c62136b4ac5/comrak_ext-0.1.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b7a1b863675c1364d85fce3009a3082ff977c1585b3fc2f782cb69fa8655e15",
                "md5": "e194877d1ac657d03d3357bc47518c88",
                "sha256": "d66390307563935b0e48e8d3b785b6e58495c19100914dfc844409c7b9692766"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e194877d1ac657d03d3357bc47518c88",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 895079,
            "upload_time": "2025-09-08T13:44:33",
            "upload_time_iso_8601": "2025-09-08T13:44:33.072091Z",
            "url": "https://files.pythonhosted.org/packages/4b/7a/1b863675c1364d85fce3009a3082ff977c1585b3fc2f782cb69fa8655e15/comrak_ext-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3563e34457628e1c9b7e2c3b6bfceec9765fa25cd6e60aabd154991039456a3",
                "md5": "d91b505cb75c7159b16511c2cc15fea2",
                "sha256": "96f8f9b3d6e3d36d935dc744e89a48c5486f708cfe898bbfccdcc61c1fe8d218"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d91b505cb75c7159b16511c2cc15fea2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 541810,
            "upload_time": "2025-09-08T13:44:46",
            "upload_time_iso_8601": "2025-09-08T13:44:46.053121Z",
            "url": "https://files.pythonhosted.org/packages/e3/56/3e34457628e1c9b7e2c3b6bfceec9765fa25cd6e60aabd154991039456a3/comrak_ext-0.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fd6d5b5495a13bef0bfa2d92b2d935cf723802de62e659185658b677426c315",
                "md5": "e929fed8425937ce94f662a2ad33b52b",
                "sha256": "45f3c1f0a3846a46d4dfb18a198bca4618eab8371c512fbcc89de45b45c8385f"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e929fed8425937ce94f662a2ad33b52b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 611725,
            "upload_time": "2025-09-08T13:43:52",
            "upload_time_iso_8601": "2025-09-08T13:43:52.548888Z",
            "url": "https://files.pythonhosted.org/packages/9f/d6/d5b5495a13bef0bfa2d92b2d935cf723802de62e659185658b677426c315/comrak_ext-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b5d5b8148de2f7875228720c23b6a49c91580b191aea69513ca04d530fbdb95",
                "md5": "7ee58420005293460b4fc8a6b5157b9c",
                "sha256": "2e809619cf505045d182e8e2e1002ceec9c497df89b6d81144f149c8f388fcee"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7ee58420005293460b4fc8a6b5157b9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 577156,
            "upload_time": "2025-09-08T13:43:48",
            "upload_time_iso_8601": "2025-09-08T13:43:48.748174Z",
            "url": "https://files.pythonhosted.org/packages/2b/5d/5b8148de2f7875228720c23b6a49c91580b191aea69513ca04d530fbdb95/comrak_ext-0.1.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b6b0a6635a24beaba718b5aca15a6d154503adc43c2d2f22001e97fb77cd852",
                "md5": "6808f6a264a1f52e3d9be7ab2b8265db",
                "sha256": "7996cae586b78ecc083d19fd8e14c52085c23d992d2881f5373d532b6d3ed340"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6808f6a264a1f52e3d9be7ab2b8265db",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 681702,
            "upload_time": "2025-09-08T13:42:43",
            "upload_time_iso_8601": "2025-09-08T13:42:43.034662Z",
            "url": "https://files.pythonhosted.org/packages/2b/6b/0a6635a24beaba718b5aca15a6d154503adc43c2d2f22001e97fb77cd852/comrak_ext-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e175574f47f6c44e8a3efe75c7bbba2eb40efb40718c672fb10673de56a9f31b",
                "md5": "9d6f88d1ce1b114453522437c092aa2c",
                "sha256": "fc365217f5e1de939ae85f73cb64d688678089ff527e54d06528fcd3d651607d"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9d6f88d1ce1b114453522437c092aa2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 644734,
            "upload_time": "2025-09-08T13:42:55",
            "upload_time_iso_8601": "2025-09-08T13:42:55.258946Z",
            "url": "https://files.pythonhosted.org/packages/e1/75/574f47f6c44e8a3efe75c7bbba2eb40efb40718c672fb10673de56a9f31b/comrak_ext-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcfca8c2dbb758ce05f5d0a38b4f6e5e7fbe27f8fd15c0fe4ecdf79a1fbbf31c",
                "md5": "1145d7c749f078ae78e48a3d0a24be35",
                "sha256": "86aa88b0a4159bdc9bf7a348cbbde2ecee48aedb8366d36c07e76bfc2f7db8a0"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1145d7c749f078ae78e48a3d0a24be35",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 756528,
            "upload_time": "2025-09-08T13:43:16",
            "upload_time_iso_8601": "2025-09-08T13:43:16.794750Z",
            "url": "https://files.pythonhosted.org/packages/bc/fc/a8c2dbb758ce05f5d0a38b4f6e5e7fbe27f8fd15c0fe4ecdf79a1fbbf31c/comrak_ext-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a73df84152e794f2aedb636de24dc6da82ff0e5bcac97144f962579a01ce7909",
                "md5": "63c110af3d4088e1a786527fb3f5d992",
                "sha256": "ba205a8d56780bb4a4432477ec1c5d0b6d917c1bce5e9ddff11e5cfc82d2d9be"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "63c110af3d4088e1a786527fb3f5d992",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 831534,
            "upload_time": "2025-09-08T13:43:29",
            "upload_time_iso_8601": "2025-09-08T13:43:29.950987Z",
            "url": "https://files.pythonhosted.org/packages/a7/3d/f84152e794f2aedb636de24dc6da82ff0e5bcac97144f962579a01ce7909/comrak_ext-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "707db0ce75f43a8311024432f2e62bee45af1721a71a786dcde3c3e2fe6f8932",
                "md5": "03b394468f7b679eef3d2401c31608d7",
                "sha256": "5534909117422a24341759b8dc4349b3dc2ddb3eb9f813666d4d03c8ee1c6dc8"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03b394468f7b679eef3d2401c31608d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 722760,
            "upload_time": "2025-09-08T13:43:41",
            "upload_time_iso_8601": "2025-09-08T13:43:41.109317Z",
            "url": "https://files.pythonhosted.org/packages/70/7d/b0ce75f43a8311024432f2e62bee45af1721a71a786dcde3c3e2fe6f8932/comrak_ext-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bdbf6040c628182be2e257165dbebcfd99bf74e49c178e145a92379e3b4b88ca",
                "md5": "3ec9200ac0078e89809a39e93aa641f4",
                "sha256": "77d461e1175de99bfa1033f531dff1496c982910e2a02a6c2c900c743669d6fe"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3ec9200ac0078e89809a39e93aa641f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 689349,
            "upload_time": "2025-09-08T13:43:07",
            "upload_time_iso_8601": "2025-09-08T13:43:07.914840Z",
            "url": "https://files.pythonhosted.org/packages/bd/bf/6040c628182be2e257165dbebcfd99bf74e49c178e145a92379e3b4b88ca/comrak_ext-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8783987e77f64635c7512b669446e7df30c65ec1a6e50b147d63ffba3c685273",
                "md5": "7c5141595cfa581d0e71deb90af229c5",
                "sha256": "1b1ecfdf469b42fd5c69df1cfea0e91f96ee672f592c2cb5aec210746c97561b"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7c5141595cfa581d0e71deb90af229c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 862364,
            "upload_time": "2025-09-08T13:43:57",
            "upload_time_iso_8601": "2025-09-08T13:43:57.888204Z",
            "url": "https://files.pythonhosted.org/packages/87/83/987e77f64635c7512b669446e7df30c65ec1a6e50b147d63ffba3c685273/comrak_ext-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31062d5eb03a4625aa225cdc8b088c3549a18a413b20ba13023dd85d14be79f0",
                "md5": "b5369a03cf56bf8cd5fdc0440960d66d",
                "sha256": "d952b4491031c13a829daedd5731d082f5eca101c69bf1c13559a45fa32e7e2f"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b5369a03cf56bf8cd5fdc0440960d66d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 910487,
            "upload_time": "2025-09-08T13:44:10",
            "upload_time_iso_8601": "2025-09-08T13:44:10.064094Z",
            "url": "https://files.pythonhosted.org/packages/31/06/2d5eb03a4625aa225cdc8b088c3549a18a413b20ba13023dd85d14be79f0/comrak_ext-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b62daa9e0b78182850fdfed136c1caa179602a0612cc3d6ddeb18f4f2d07945",
                "md5": "c5a8929ade28ecd2c41362cc61b3945d",
                "sha256": "65f79e6873ff070130017e239d556f1b35ae2c97b2d72cc477220ae5e8225a1b"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c5a8929ade28ecd2c41362cc61b3945d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 855281,
            "upload_time": "2025-09-08T13:44:21",
            "upload_time_iso_8601": "2025-09-08T13:44:21.854267Z",
            "url": "https://files.pythonhosted.org/packages/9b/62/daa9e0b78182850fdfed136c1caa179602a0612cc3d6ddeb18f4f2d07945/comrak_ext-0.1.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d27b0e959cf6c3f086030f0b708e40efe267215b3bf0395754d9573a3051d5b",
                "md5": "4f90edf3b2eb3add0340e5cdcc65cc3d",
                "sha256": "2e01e1cb4ce09485620b85cfb4c92a723557d9b4cf052fe82151a5b954a35583"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f90edf3b2eb3add0340e5cdcc65cc3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 894881,
            "upload_time": "2025-09-08T13:44:34",
            "upload_time_iso_8601": "2025-09-08T13:44:34.797416Z",
            "url": "https://files.pythonhosted.org/packages/0d/27/b0e959cf6c3f086030f0b708e40efe267215b3bf0395754d9573a3051d5b/comrak_ext-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46d6588eec4e38ada75eaefa87a53ad1de0ff061fc9223d8cf4934184a3fbde1",
                "md5": "a0644a132e64b851ac0f98aac2228469",
                "sha256": "a5f4138dcc6faac5f6a4c22a34c5e87134945405ef23bd6a5cf83e804eced60a"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a0644a132e64b851ac0f98aac2228469",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 681547,
            "upload_time": "2025-09-08T13:42:44",
            "upload_time_iso_8601": "2025-09-08T13:42:44.286284Z",
            "url": "https://files.pythonhosted.org/packages/46/d6/588eec4e38ada75eaefa87a53ad1de0ff061fc9223d8cf4934184a3fbde1/comrak_ext-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a4c8cfdf6b86520ea7f9d6f6f9c9251e0336263233507fec223f070cd09e6ad",
                "md5": "8620525a1ede115deb256a3a03e22277",
                "sha256": "5e3ad590f8a359d72edf9f6ad15af59fc49cdfccc4e7114f2f37a559383675ec"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8620525a1ede115deb256a3a03e22277",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 643264,
            "upload_time": "2025-09-08T13:42:56",
            "upload_time_iso_8601": "2025-09-08T13:42:56.794175Z",
            "url": "https://files.pythonhosted.org/packages/5a/4c/8cfdf6b86520ea7f9d6f6f9c9251e0336263233507fec223f070cd09e6ad/comrak_ext-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "545e9cabafeb15049a47924f813eb3e7001a4b7d15499b28b8f1757e886479f9",
                "md5": "5276f596a26ddfa922216f4f5fbff9d2",
                "sha256": "9c6afae170b909f77cd68527dfd5eefef542186abdee556854bdc36cc8e45b30"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5276f596a26ddfa922216f4f5fbff9d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 756839,
            "upload_time": "2025-09-08T13:43:18",
            "upload_time_iso_8601": "2025-09-08T13:43:18.080205Z",
            "url": "https://files.pythonhosted.org/packages/54/5e/9cabafeb15049a47924f813eb3e7001a4b7d15499b28b8f1757e886479f9/comrak_ext-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "258aaf71cba787913da3875e49d456a087b94d6d50de198bcfa12b13712d48eb",
                "md5": "25172c892203ab8eea82c498fbf8c309",
                "sha256": "ef0761fe7766f53c963508af5d9ad6839930825fd1854e14c68c2c9e140b61ce"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "25172c892203ab8eea82c498fbf8c309",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 831520,
            "upload_time": "2025-09-08T13:43:31",
            "upload_time_iso_8601": "2025-09-08T13:43:31.168386Z",
            "url": "https://files.pythonhosted.org/packages/25/8a/af71cba787913da3875e49d456a087b94d6d50de198bcfa12b13712d48eb/comrak_ext-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0667a14e8e63d7dfe17f8337b51c5706c39dc5a6344bee39df39cf708e5b111d",
                "md5": "0a5f6460317e61b5e8787a5c30c7d839",
                "sha256": "d4c6c7a9596a35e179461395f7c63771a2edc57fda09b9a107ab70692b384e68"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0a5f6460317e61b5e8787a5c30c7d839",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 862500,
            "upload_time": "2025-09-08T13:43:59",
            "upload_time_iso_8601": "2025-09-08T13:43:59.264090Z",
            "url": "https://files.pythonhosted.org/packages/06/67/a14e8e63d7dfe17f8337b51c5706c39dc5a6344bee39df39cf708e5b111d/comrak_ext-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2296ff26d5c1946a2ab10fdde24e565ebea28dc5a0c554753df72b481241dd2d",
                "md5": "da522ff64cd6cc6746e3e6245303226d",
                "sha256": "8f63d447f24f0cc356a2c49e003fc20f264005d5b918185c9ca1000e6904532c"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "da522ff64cd6cc6746e3e6245303226d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 909093,
            "upload_time": "2025-09-08T13:44:11",
            "upload_time_iso_8601": "2025-09-08T13:44:11.332236Z",
            "url": "https://files.pythonhosted.org/packages/22/96/ff26d5c1946a2ab10fdde24e565ebea28dc5a0c554753df72b481241dd2d/comrak_ext-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e163b5f3f791ec53891f5d600c4325858ab7f03ccb64b33e2f79998acfd0717",
                "md5": "a52ecb4571429f14824bdecdc56e0e3e",
                "sha256": "2ebcc89b58b4df270e88bd7e0b68391e02525eedd83cf06f50083d83036c4db8"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a52ecb4571429f14824bdecdc56e0e3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 855915,
            "upload_time": "2025-09-08T13:44:23",
            "upload_time_iso_8601": "2025-09-08T13:44:23.447576Z",
            "url": "https://files.pythonhosted.org/packages/5e/16/3b5f3f791ec53891f5d600c4325858ab7f03ccb64b33e2f79998acfd0717/comrak_ext-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15916e01659c12e24cfc42c5203a039589ed2c4855b5039aeb7e84e9ef6bcd17",
                "md5": "4e38ea410fbd64b98d832d0f4bf764be",
                "sha256": "4c5db2d8a9f0c74fe2eee1dd7f84ede0db01798205e973d267a2662553d31ea7"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e38ea410fbd64b98d832d0f4bf764be",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 893187,
            "upload_time": "2025-09-08T13:44:36",
            "upload_time_iso_8601": "2025-09-08T13:44:36.039619Z",
            "url": "https://files.pythonhosted.org/packages/15/91/6e01659c12e24cfc42c5203a039589ed2c4855b5039aeb7e84e9ef6bcd17/comrak_ext-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0e6b814e76e53d2405183d981665615d42bdfad6a6739dee447a090b2316e1f",
                "md5": "a59a1127214dfc179c57751920077b83",
                "sha256": "dc2a0a010c5e6fa8df84e7eee362d5f74d6ea62774cfad13666d1546c802178e"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "a59a1127214dfc179c57751920077b83",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 526673,
            "upload_time": "2025-09-08T13:44:50",
            "upload_time_iso_8601": "2025-09-08T13:44:50.003828Z",
            "url": "https://files.pythonhosted.org/packages/a0/e6/b814e76e53d2405183d981665615d42bdfad6a6739dee447a090b2316e1f/comrak_ext-0.1.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1c746095eddada140676a24b147eda0ca97570648abd58d1261ee084f840178",
                "md5": "f0a81fdf5af1744a510270783c80a432",
                "sha256": "d9a70c2b3aa4257d4b3f106de17744124ac7e1c8681e82190eeda1e073d0905d"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f0a81fdf5af1744a510270783c80a432",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 541454,
            "upload_time": "2025-09-08T13:44:47",
            "upload_time_iso_8601": "2025-09-08T13:44:47.256808Z",
            "url": "https://files.pythonhosted.org/packages/c1/c7/46095eddada140676a24b147eda0ca97570648abd58d1261ee084f840178/comrak_ext-0.1.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d41116091a0187aacb2f6cc33402690f0444561a880db9dd07d8d87e65e6d5b",
                "md5": "4e6cd672600433fee818fda2ea436a7d",
                "sha256": "8679a862e946572525f5e4acfe03d2cdfaab26eb3731360350c74b42e54a1af4"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4e6cd672600433fee818fda2ea436a7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 684134,
            "upload_time": "2025-09-08T13:42:45",
            "upload_time_iso_8601": "2025-09-08T13:42:45.474809Z",
            "url": "https://files.pythonhosted.org/packages/2d/41/116091a0187aacb2f6cc33402690f0444561a880db9dd07d8d87e65e6d5b/comrak_ext-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4adf1d88ed80911ac1de5928289f59526e5033d807f2178353708d97f7bfe300",
                "md5": "de1791ba61c85fb7be07231beaaf171f",
                "sha256": "63c542ab6fe40a880e0d0f3913e6bc8a2a8899caa509ada1d8cd8de827a3589b"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "de1791ba61c85fb7be07231beaaf171f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 645949,
            "upload_time": "2025-09-08T13:42:58",
            "upload_time_iso_8601": "2025-09-08T13:42:58.017399Z",
            "url": "https://files.pythonhosted.org/packages/4a/df/1d88ed80911ac1de5928289f59526e5033d807f2178353708d97f7bfe300/comrak_ext-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52df50c9333c48c9a6187ee1411f8c5a4ad9625ce1cc143055c35d2646f26b54",
                "md5": "cc806d7c50760e83edb3e950e21c451f",
                "sha256": "8271c87e1058647ae0feb8e7fa0ac56f8175e99dfbf7112220af23deb47257d5"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "cc806d7c50760e83edb3e950e21c451f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 762102,
            "upload_time": "2025-09-08T13:43:19",
            "upload_time_iso_8601": "2025-09-08T13:43:19.986191Z",
            "url": "https://files.pythonhosted.org/packages/52/df/50c9333c48c9a6187ee1411f8c5a4ad9625ce1cc143055c35d2646f26b54/comrak_ext-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ae01d24124b29d113fa75ffef89b1e0ac0aa9e2ff2e4da385929f618ad36b8a",
                "md5": "2408691b3d41ddc6d8f1501f3e62f59c",
                "sha256": "ae8716bbc4b33593d79934ef0337f38a2d55d56de9fa5c943a9358f03119d713"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2408691b3d41ddc6d8f1501f3e62f59c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 833500,
            "upload_time": "2025-09-08T13:43:32",
            "upload_time_iso_8601": "2025-09-08T13:43:32.434316Z",
            "url": "https://files.pythonhosted.org/packages/6a/e0/1d24124b29d113fa75ffef89b1e0ac0aa9e2ff2e4da385929f618ad36b8a/comrak_ext-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f1df9d5b9719505805f597c23962d94c4b3e37405686647900816a228c5b603",
                "md5": "0777b05a5489c8f550864fc6f2973489",
                "sha256": "1b70cc9b17529746428101d6c6651af03e72409f7b1d4366f827fad4061e3bfc"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0777b05a5489c8f550864fc6f2973489",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 727334,
            "upload_time": "2025-09-08T13:43:42",
            "upload_time_iso_8601": "2025-09-08T13:43:42.248072Z",
            "url": "https://files.pythonhosted.org/packages/5f/1d/f9d5b9719505805f597c23962d94c4b3e37405686647900816a228c5b603/comrak_ext-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9aa8178e9b3a52af69074bc9390cf12fa3e03e53ab73989d244386e7b6e9b62b",
                "md5": "1af2f2b0e6a23edb407690419d5ace39",
                "sha256": "2e5353bf3e0447a74eb240c9128d6e9e1bffd53a676ddb41de72e556b8a30fa6"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1af2f2b0e6a23edb407690419d5ace39",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 692992,
            "upload_time": "2025-09-08T13:43:09",
            "upload_time_iso_8601": "2025-09-08T13:43:09.235980Z",
            "url": "https://files.pythonhosted.org/packages/9a/a8/178e9b3a52af69074bc9390cf12fa3e03e53ab73989d244386e7b6e9b62b/comrak_ext-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1a5abc8925fe200c7b825c99c4554a831e62453c24ceea912e7b1c1b1ed2393",
                "md5": "fddd82bb8af3fb05fc023edbb72ea387",
                "sha256": "874d7ca93c6d688f8567a6cd3f1c3137c1433167793ed9e8f152f34fae6a9feb"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fddd82bb8af3fb05fc023edbb72ea387",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 865747,
            "upload_time": "2025-09-08T13:44:00",
            "upload_time_iso_8601": "2025-09-08T13:44:00.839929Z",
            "url": "https://files.pythonhosted.org/packages/f1/a5/abc8925fe200c7b825c99c4554a831e62453c24ceea912e7b1c1b1ed2393/comrak_ext-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40cc39750148a84bb8687c7a68d98fc04c16ebeee6c0cf68b82a2495a677b889",
                "md5": "2937bef348fc4c10541bd4e2d2c2ba33",
                "sha256": "a1f9d90aeaddc100097ca8f7cb63c3175bcc80e7b82180fc887fcfb3de2ba9cd"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2937bef348fc4c10541bd4e2d2c2ba33",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 911603,
            "upload_time": "2025-09-08T13:44:12",
            "upload_time_iso_8601": "2025-09-08T13:44:12.982106Z",
            "url": "https://files.pythonhosted.org/packages/40/cc/39750148a84bb8687c7a68d98fc04c16ebeee6c0cf68b82a2495a677b889/comrak_ext-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f148a7ffc0da35e1124a647047ff6a5ba7493e92e05f20a9e595d5a84033c5a",
                "md5": "3ef222f9525bcaec2af71f3d8f59b41c",
                "sha256": "1c1d6c8ef150c76d5b90b73ba48a8289e63164a82fbd022c755a77ff97e9efe5"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3ef222f9525bcaec2af71f3d8f59b41c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 859445,
            "upload_time": "2025-09-08T13:44:24",
            "upload_time_iso_8601": "2025-09-08T13:44:24.849758Z",
            "url": "https://files.pythonhosted.org/packages/2f/14/8a7ffc0da35e1124a647047ff6a5ba7493e92e05f20a9e595d5a84033c5a/comrak_ext-0.1.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcbcea785a04c92c172ce1ab3a3e5a2fde2e739eb2d011bc2167ee3ed5836a05",
                "md5": "9b072e39deb164a64387ced77f0c6861",
                "sha256": "9174137586e12a1daa89bbe9f8caade23311f2f50a4fb7eea6f20371a3f971dc"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b072e39deb164a64387ced77f0c6861",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 899024,
            "upload_time": "2025-09-08T13:44:37",
            "upload_time_iso_8601": "2025-09-08T13:44:37.306913Z",
            "url": "https://files.pythonhosted.org/packages/bc/bc/ea785a04c92c172ce1ab3a3e5a2fde2e739eb2d011bc2167ee3ed5836a05/comrak_ext-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbdd3288808a0059e1cc6306e1238d58a3e7c42a5c3bd3936b7c00a96cce6c48",
                "md5": "1908c6a624615180f4715f6edb2a405e",
                "sha256": "fe03e346de828b02300ca7edf7ecc0cbae8de519218a389075434230d41c9dcb"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1908c6a624615180f4715f6edb2a405e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 545341,
            "upload_time": "2025-09-08T13:44:48",
            "upload_time_iso_8601": "2025-09-08T13:44:48.818968Z",
            "url": "https://files.pythonhosted.org/packages/bb/dd/3288808a0059e1cc6306e1238d58a3e7c42a5c3bd3936b7c00a96cce6c48/comrak_ext-0.1.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a599232ebfdc51b18bb5ab92ede8064341e1a451d4d849f12bedadb5cb0449b7",
                "md5": "dd92823d0cc8161df5438e88b042cc7a",
                "sha256": "0b7e82900e00b18343a33b104829eca1f162adf5f8eda06fedd27bcdf2864abf"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dd92823d0cc8161df5438e88b042cc7a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 684282,
            "upload_time": "2025-09-08T13:42:47",
            "upload_time_iso_8601": "2025-09-08T13:42:47.021829Z",
            "url": "https://files.pythonhosted.org/packages/a5/99/232ebfdc51b18bb5ab92ede8064341e1a451d4d849f12bedadb5cb0449b7/comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "276b5d78bc2d74e2f755cf74de3e9e079495d0962866fde3afa3423019482c37",
                "md5": "8f36aef969687551dfd54310abe6a9ad",
                "sha256": "5b1d34134e9378d2095de001da4eda33386fda0c2cbf75e4ca8d18bf04661915"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8f36aef969687551dfd54310abe6a9ad",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 645951,
            "upload_time": "2025-09-08T13:42:59",
            "upload_time_iso_8601": "2025-09-08T13:42:59.307480Z",
            "url": "https://files.pythonhosted.org/packages/27/6b/5d78bc2d74e2f755cf74de3e9e079495d0962866fde3afa3423019482c37/comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e6b4afa5ea1db255be3b67e004c7b6a2e5dca76fb83b80509844ace07c6647e",
                "md5": "61e9d56568ef061c188b2343a1bea762",
                "sha256": "ffef93c0b0572318fe194c8238b4fa8e23e833814c6a15b23477997b0853b1b0"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "61e9d56568ef061c188b2343a1bea762",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 761598,
            "upload_time": "2025-09-08T13:43:21",
            "upload_time_iso_8601": "2025-09-08T13:43:21.278922Z",
            "url": "https://files.pythonhosted.org/packages/6e/6b/4afa5ea1db255be3b67e004c7b6a2e5dca76fb83b80509844ace07c6647e/comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc9e37621bfc3e57626a6b4b908106abde6b9b0ebea8ef953bd52b49ec7f9030",
                "md5": "995265b26cba97309ca519c788a04e89",
                "sha256": "ed41c40746b6eb12c987cfad6cc434574cc5613b142bc2566c50d323eb47a9e4"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "995265b26cba97309ca519c788a04e89",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 831326,
            "upload_time": "2025-09-08T13:43:33",
            "upload_time_iso_8601": "2025-09-08T13:43:33.617625Z",
            "url": "https://files.pythonhosted.org/packages/cc/9e/37621bfc3e57626a6b4b908106abde6b9b0ebea8ef953bd52b49ec7f9030/comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e7f760794d115f44ada283cff937fb6e43997ab1f80cd090a0ab815881b298f",
                "md5": "cdd816ba3bc8870699c47d202c7f2a65",
                "sha256": "e36decce29feeec1b13b3d2827926cb1b15a7972b59819d9b4c4eda55308561e"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cdd816ba3bc8870699c47d202c7f2a65",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 726505,
            "upload_time": "2025-09-08T13:43:43",
            "upload_time_iso_8601": "2025-09-08T13:43:43.453538Z",
            "url": "https://files.pythonhosted.org/packages/8e/7f/760794d115f44ada283cff937fb6e43997ab1f80cd090a0ab815881b298f/comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb26105eb4a0c169d6ca2739e526e287061d01f50b5854e591fed2cc1c817ba1",
                "md5": "21f487a712f1916d14c7e0bb08f48dbd",
                "sha256": "07ad77cb86e6cd0075ef1b0e01dd2a0a058a7442de80c7f77df6704ab0a7f60d"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "21f487a712f1916d14c7e0bb08f48dbd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 692727,
            "upload_time": "2025-09-08T13:43:10",
            "upload_time_iso_8601": "2025-09-08T13:43:10.457994Z",
            "url": "https://files.pythonhosted.org/packages/fb/26/105eb4a0c169d6ca2739e526e287061d01f50b5854e591fed2cc1c817ba1/comrak_ext-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62aec6e94f01a5b824014077a616d1347ca89b7b2f7a98ecc3172a279423cd15",
                "md5": "15d237e7769076c4016283662fc57650",
                "sha256": "abedff6adb5466058c32944157a524a9120984b6ab212bea9f1dcd4f5210504f"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "15d237e7769076c4016283662fc57650",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 865455,
            "upload_time": "2025-09-08T13:44:02",
            "upload_time_iso_8601": "2025-09-08T13:44:02.116914Z",
            "url": "https://files.pythonhosted.org/packages/62/ae/c6e94f01a5b824014077a616d1347ca89b7b2f7a98ecc3172a279423cd15/comrak_ext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8041534d66d846aad7eb52f9d55815eb9ec8482ff640d3bbb0b56e5f8d2fa70",
                "md5": "3ee08d78050a6380a28b63c7b5cfdf8a",
                "sha256": "e3ab03bd3c2581bb47f3846d46b5830e357c132270fe1f6219466e112901dee7"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3ee08d78050a6380a28b63c7b5cfdf8a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 911490,
            "upload_time": "2025-09-08T13:44:14",
            "upload_time_iso_8601": "2025-09-08T13:44:14.176138Z",
            "url": "https://files.pythonhosted.org/packages/b8/04/1534d66d846aad7eb52f9d55815eb9ec8482ff640d3bbb0b56e5f8d2fa70/comrak_ext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42ceb16d907b28e39829997e17f3197b1d93b05ab2b920a59cc3ead0b5415547",
                "md5": "2a0a91712bf106e73b5f1aec9adfec10",
                "sha256": "de655b04d46f28584969edc39bfe8b3463bd4d58d2e1dd210b2289eeae30982d"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2a0a91712bf106e73b5f1aec9adfec10",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 859316,
            "upload_time": "2025-09-08T13:44:26",
            "upload_time_iso_8601": "2025-09-08T13:44:26.239609Z",
            "url": "https://files.pythonhosted.org/packages/42/ce/b16d907b28e39829997e17f3197b1d93b05ab2b920a59cc3ead0b5415547/comrak_ext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f22fd82401bb217e54506954337b14bbfcd9ee3ef2ccaac5d6b7a4ce53bf5e2",
                "md5": "49581f9db4169d24d3a1795bf267e19c",
                "sha256": "4cb616c67950388c755966f6a14dd220b38f743c3cb3e6026dcac890f7946552"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49581f9db4169d24d3a1795bf267e19c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 898469,
            "upload_time": "2025-09-08T13:44:38",
            "upload_time_iso_8601": "2025-09-08T13:44:38.600235Z",
            "url": "https://files.pythonhosted.org/packages/0f/22/fd82401bb217e54506954337b14bbfcd9ee3ef2ccaac5d6b7a4ce53bf5e2/comrak_ext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6dbed4eb1b8a7ec5f151d648868bec4e545e52ea031c9bd711d64a0c5fecb5bc",
                "md5": "55baed1d4561357fd181da34407d5b63",
                "sha256": "b916e3554b6f08370e1c739d20c71b8f71f8bf15e86180fbe6c585605e8deab3"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "55baed1d4561357fd181da34407d5b63",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 684112,
            "upload_time": "2025-09-08T13:42:48",
            "upload_time_iso_8601": "2025-09-08T13:42:48.278903Z",
            "url": "https://files.pythonhosted.org/packages/6d/be/d4eb1b8a7ec5f151d648868bec4e545e52ea031c9bd711d64a0c5fecb5bc/comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8b209e5f87220c4ee214ff12f85e377139f7e2f76c52578f0eb72ecb4ba081d",
                "md5": "ecd21eb934adac69c08b1071834dedd6",
                "sha256": "91fb22f514ba946b5cf3801fcd8290a058249cf4c2eddebbd55c2caded363fea"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ecd21eb934adac69c08b1071834dedd6",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 645892,
            "upload_time": "2025-09-08T13:43:00",
            "upload_time_iso_8601": "2025-09-08T13:43:00.565201Z",
            "url": "https://files.pythonhosted.org/packages/a8/b2/09e5f87220c4ee214ff12f85e377139f7e2f76c52578f0eb72ecb4ba081d/comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "230d0061b5a6db822f3d7d5b0b4a8e611c967e69f9c36ed567ab85167deba785",
                "md5": "854a8e34416dc8ece16e3be1d425a146",
                "sha256": "5f3804d5d9beddbf8b197fffb3c1406ad6d10ce36902b5befdd36157d0ccd619"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "854a8e34416dc8ece16e3be1d425a146",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 761458,
            "upload_time": "2025-09-08T13:43:22",
            "upload_time_iso_8601": "2025-09-08T13:43:22.621618Z",
            "url": "https://files.pythonhosted.org/packages/23/0d/0061b5a6db822f3d7d5b0b4a8e611c967e69f9c36ed567ab85167deba785/comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9bf14fe7d9c8cf4ff8bb51348ebfb62767db516eeec15c4206ec708bb20f134a",
                "md5": "d2dc12da4352f0c58ae3c651dc045625",
                "sha256": "66b6f42b859e60e9fea6b5459561cfb66e0b5ef17014aed951fe7b4cb51c05bc"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d2dc12da4352f0c58ae3c651dc045625",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 829912,
            "upload_time": "2025-09-08T13:43:34",
            "upload_time_iso_8601": "2025-09-08T13:43:34.853380Z",
            "url": "https://files.pythonhosted.org/packages/9b/f1/4fe7d9c8cf4ff8bb51348ebfb62767db516eeec15c4206ec708bb20f134a/comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58ae22b767127520fbcdc23ad5cb6142a0e093c3c1cd2f34d73fecf1d0a249d0",
                "md5": "570ae48a6f3a0c2e042dbb21ff1085ae",
                "sha256": "535b8e75f4bc5a183a5c8503e80c00d8d9dd672fec0dd6d73e6886279585ba1c"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "570ae48a6f3a0c2e042dbb21ff1085ae",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 726473,
            "upload_time": "2025-09-08T13:43:44",
            "upload_time_iso_8601": "2025-09-08T13:43:44.997734Z",
            "url": "https://files.pythonhosted.org/packages/58/ae/22b767127520fbcdc23ad5cb6142a0e093c3c1cd2f34d73fecf1d0a249d0/comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d53e21420771c78268b0a1766fadeb2a206fcc1a11414b801222a8b8c9bb1e87",
                "md5": "f34741381d634c7964e4d601aacbf630",
                "sha256": "f9b0db4a3930ff8fe930105c04b17cf5d83b6541a2b37705dd500eecf639123d"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f34741381d634c7964e4d601aacbf630",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 692718,
            "upload_time": "2025-09-08T13:43:11",
            "upload_time_iso_8601": "2025-09-08T13:43:11.687634Z",
            "url": "https://files.pythonhosted.org/packages/d5/3e/21420771c78268b0a1766fadeb2a206fcc1a11414b801222a8b8c9bb1e87/comrak_ext-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26e7493429eee9d0b8b97cd70a2231b76138b1cbff240f3b361b2cda43021429",
                "md5": "753df24e728f8c4061240ed503914bb2",
                "sha256": "8ec6911251fee5096d50a3f11e1db335419aca98e47db38ee05bb324df41004c"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "753df24e728f8c4061240ed503914bb2",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 865455,
            "upload_time": "2025-09-08T13:44:03",
            "upload_time_iso_8601": "2025-09-08T13:44:03.727644Z",
            "url": "https://files.pythonhosted.org/packages/26/e7/493429eee9d0b8b97cd70a2231b76138b1cbff240f3b361b2cda43021429/comrak_ext-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc7932bd700edd3bde62394dd349b5edbe77021d3f7664748553156a96205495",
                "md5": "a251fe39496884c76b1c03655101ec9b",
                "sha256": "5244bda6e56c9e3f48b9bf7dedca6cc28f5c4040fef39c5a9119625ae156afdb"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a251fe39496884c76b1c03655101ec9b",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 911385,
            "upload_time": "2025-09-08T13:44:15",
            "upload_time_iso_8601": "2025-09-08T13:44:15.406384Z",
            "url": "https://files.pythonhosted.org/packages/cc/79/32bd700edd3bde62394dd349b5edbe77021d3f7664748553156a96205495/comrak_ext-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07b57ce9a9afd0bab9a3f457381e85f1887bf124be7c96726e7171750076c5f0",
                "md5": "6f67bbff83c6fd701d4128e0c8de5dcb",
                "sha256": "9d373d3fc4f1e95df96160d93cddbf3e2af4a180315b33cc65c4aa4b842d663e"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6f67bbff83c6fd701d4128e0c8de5dcb",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 859148,
            "upload_time": "2025-09-08T13:44:27",
            "upload_time_iso_8601": "2025-09-08T13:44:27.762946Z",
            "url": "https://files.pythonhosted.org/packages/07/b5/7ce9a9afd0bab9a3f457381e85f1887bf124be7c96726e7171750076c5f0/comrak_ext-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd7e1290aac7221640eca8409cef89d15c177aff6177c695cfe4ccca43011398",
                "md5": "74a973a8f789d03690720d995b940b15",
                "sha256": "745f70e3f81096f7a58cb92d7806921b7eef1fe5856e933449eb2d144911165f"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74a973a8f789d03690720d995b940b15",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 898392,
            "upload_time": "2025-09-08T13:44:39",
            "upload_time_iso_8601": "2025-09-08T13:44:39.845662Z",
            "url": "https://files.pythonhosted.org/packages/fd/7e/1290aac7221640eca8409cef89d15c177aff6177c695cfe4ccca43011398/comrak_ext-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79abb0778a9cd108d6f4055aa36171f38f916836dc2bcef2cf3e6b2f3c74a484",
                "md5": "162e00a9877443f6d5a9d562955da33d",
                "sha256": "2253b792387ab7dfac7e344cd6f900ae2b811fc224e1f60f74e5ae5f336bcb8e"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "162e00a9877443f6d5a9d562955da33d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 684407,
            "upload_time": "2025-09-08T13:42:49",
            "upload_time_iso_8601": "2025-09-08T13:42:49.530796Z",
            "url": "https://files.pythonhosted.org/packages/79/ab/b0778a9cd108d6f4055aa36171f38f916836dc2bcef2cf3e6b2f3c74a484/comrak_ext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55eec9d76fb3a326b2be535cff14821ce7fe02b54b6b8835cbbb2513cf13960e",
                "md5": "1671c485b9fa740e56e3029aa95f135c",
                "sha256": "4d4032ee3fab62bb42b618710064a7b61abd1d8c4b3ddf5b6c4b3a5035db8e40"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1671c485b9fa740e56e3029aa95f135c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 645973,
            "upload_time": "2025-09-08T13:43:01",
            "upload_time_iso_8601": "2025-09-08T13:43:01.856255Z",
            "url": "https://files.pythonhosted.org/packages/55/ee/c9d76fb3a326b2be535cff14821ce7fe02b54b6b8835cbbb2513cf13960e/comrak_ext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b73fda3024c56a1218fbed783dfcc5dfffdab145a477dd3acc5d5a6dc52da69",
                "md5": "e7db23100dac10ac5c894f3929ebdbff",
                "sha256": "c244fd1faa43658e3c692074c738218bef0c568aa58bd1d5526a19a0eb407678"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e7db23100dac10ac5c894f3929ebdbff",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 762320,
            "upload_time": "2025-09-08T13:43:24",
            "upload_time_iso_8601": "2025-09-08T13:43:24.010353Z",
            "url": "https://files.pythonhosted.org/packages/7b/73/fda3024c56a1218fbed783dfcc5dfffdab145a477dd3acc5d5a6dc52da69/comrak_ext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a93c248456a03086fcfeb6213adf56e9e86835521cfd4f6008e484621652385",
                "md5": "21c885eac66df7ed70df8dbb2061f924",
                "sha256": "6398e880741349d509e1ff30df9449c1aa262f597ea4e8ecebf2263f93e0394e"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "21c885eac66df7ed70df8dbb2061f924",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 831809,
            "upload_time": "2025-09-08T13:43:36",
            "upload_time_iso_8601": "2025-09-08T13:43:36.023581Z",
            "url": "https://files.pythonhosted.org/packages/6a/93/c248456a03086fcfeb6213adf56e9e86835521cfd4f6008e484621652385/comrak_ext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb283ddbfdfbeb65422f1ee10e4dedf847082215a2c13d57574835a8a0409f19",
                "md5": "ae8116db13bf31177b274d74acfa44a5",
                "sha256": "e7f2e6578b0740bc2aafe4db5459e52ff883eb701e4a0b34e70c4eee7cba8fae"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ae8116db13bf31177b274d74acfa44a5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 865733,
            "upload_time": "2025-09-08T13:44:04",
            "upload_time_iso_8601": "2025-09-08T13:44:04.947028Z",
            "url": "https://files.pythonhosted.org/packages/bb/28/3ddbfdfbeb65422f1ee10e4dedf847082215a2c13d57574835a8a0409f19/comrak_ext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00682e1eeee0e2237438061ea64f9b5507654478ab5837d6156c2e0cdad3ffdf",
                "md5": "bd9fee5dd4dcd2b016c272e857ddcd72",
                "sha256": "53a93c79e0966236fffdc9ee3640b5899e034e9b634923e6d4f61752a4aded77"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bd9fee5dd4dcd2b016c272e857ddcd72",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 911667,
            "upload_time": "2025-09-08T13:44:16",
            "upload_time_iso_8601": "2025-09-08T13:44:16.636003Z",
            "url": "https://files.pythonhosted.org/packages/00/68/2e1eeee0e2237438061ea64f9b5507654478ab5837d6156c2e0cdad3ffdf/comrak_ext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb2a6c8ed4b797dd90e8bf51cb3e63c4c9523985369202ffdd1e15e09ce566d7",
                "md5": "ae41733cf5e5f3a9f4d2c83abe48a25b",
                "sha256": "530d4192de3a113c744692f8640ebe536514be2f01c8ba728039a7b6a3036693"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ae41733cf5e5f3a9f4d2c83abe48a25b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 859347,
            "upload_time": "2025-09-08T13:44:29",
            "upload_time_iso_8601": "2025-09-08T13:44:29.072130Z",
            "url": "https://files.pythonhosted.org/packages/cb/2a/6c8ed4b797dd90e8bf51cb3e63c4c9523985369202ffdd1e15e09ce566d7/comrak_ext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6383ba74f0ed340d0b2aa0b1dafb9f0d658521425978843d44ca225fb8ffdff0",
                "md5": "5d1b8bbc93bd8ba5b5fb40bbaa4fb7cd",
                "sha256": "5eeb632e98b5ede0373c6f7e1db75962f87c2764d8543c92b01164df004dc385"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d1b8bbc93bd8ba5b5fb40bbaa4fb7cd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 898804,
            "upload_time": "2025-09-08T13:44:41",
            "upload_time_iso_8601": "2025-09-08T13:44:41.155984Z",
            "url": "https://files.pythonhosted.org/packages/63/83/ba74f0ed340d0b2aa0b1dafb9f0d658521425978843d44ca225fb8ffdff0/comrak_ext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf51cedb8e4afc0417cc34b3b68325273ef37ed3b814d48989f651f57fdb6116",
                "md5": "5cdd2d360f172ece992d55f4b61cdf40",
                "sha256": "539ec0b4008befeba0d35967f010e90f47559b4409d7829c06fb8e8327e1558b"
            },
            "downloads": -1,
            "filename": "comrak_ext-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "5cdd2d360f172ece992d55f4b61cdf40",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 53595,
            "upload_time": "2025-09-08T13:44:42",
            "upload_time_iso_8601": "2025-09-08T13:44:42.351822Z",
            "url": "https://files.pythonhosted.org/packages/cf/51/cedb8e4afc0417cc34b3b68325273ef37ed3b814d48989f651f57fdb6116/comrak_ext-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-08 13:44:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Martin005",
    "github_project": "comrak-ext",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "comrak-ext"
}
        
Elapsed time: 0.65646s