Skip to main content

comrak

uv pdm-managed PyPI Supported Python versions License pre-commit.ci status

Python bindings for the Comrak Rust library, a fast CommonMark/GFM parser.

Currently tracking comrak 0.54.

Installation

pip install comrak

Requirements

  • Python 3.9+

Usage

>>> import comrak
>>> comrak.render_markdown("# Hello")
'<h1>Hello</h1>\n'

CommonMark output

render_commonmark renders Markdown back to normalized CommonMark instead of HTML. It takes the same extension_options/parse_options/render_options as render_markdown:

>>> comrak.render_commonmark("- one\n- two\n- three")
'- one\n- two\n- three\n'
>>> opts = comrak.RenderOptions()
>>> opts.list_style = comrak.ListStyle.Plus
>>> comrak.render_commonmark("- one\n- two\n- three", render_options=opts)
'+ one\n+ two\n+ three\n'

Options

Every option in comrak's Extension, Parse and Render structs is exposed, with the same name and the same default:

>>> opts = comrak.ExtensionOptions()
>>> comrak.render_markdown("foo :smile:", extension_options=opts)
'<p>foo :smile:</p>\n'
>>> opts.shortcodes = True
>>> comrak.render_markdown("foo :smile:", extension_options=opts)
'<p>foo 😄</p>\n'

The three option objects are independent and can be combined:

>>> ext = comrak.ExtensionOptions()
>>> ext.alerts = True
>>> render = comrak.RenderOptions()
>>> render.alert_style = comrak.AlertStyle.Semantic
>>> comrak.render_markdown("> [!note]\n> Note this!",
...                        extension_options=ext, render_options=render)
'<aside class="admonition note">\n...'

For what each option does, see comrak's own documentation. The field names match one-for-one:

Two options take enums rather than raw values: RenderOptions.alert_style (comrak.AlertStyle) and RenderOptions.list_style (comrak.ListStyle). Both compare equal to their integer discriminants.

The one naming difference from the Rust API is:

Rust Python
render.unsafe RenderOptions.unsafe_

ExtensionOptions.header_ids is a deprecated alias for header_id_prefix and raises a FutureWarning; it will be removed in a future release.

Not exposed

  • parse.broken_link_callbacksee tracking issue
  • extension.phoenix_heex — gated behind a comrak crate feature that isn't built here
  • Plugins (syntax highlighting, heading adapters)
  • XML output (comrak::markdown_to_commonmark_xml)

render_markdown renders to HTML. render_commonmark renders to normalized CommonMark. The options that solely affect the CommonMark formatter (width, list_style, prefer_fenced, ol_width, experimental_minimize_commonmark) have no effect on render_markdown's HTML output, only on render_commonmark.

Benchmarks

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

Contributing

Maintained by lmmx. Contributions welcome!

  1. Issues & Discussions: Please open a GitHub issue or discussion for bugs, feature requests, or questions.
  2. Pull Requests: PRs are welcome!
    • Set up with uv: uv sync
    • Build and test: uv run maturin develop && uv run pytest
    • If reporting a bug, please include the version and the error message/traceback if available.

New comrak options are caught at compile time by an exhaustiveness check in src/options.rs, and untested options are caught by TestOptionCoverage in tests/comrak_test.py. This was introduced to help keep track of new comrak features and their test coverage in this library.

License

Licensed under the 2-Clause BSD License. See LICENSE for all the details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

comrak-0.0.16.tar.gz (56.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (881.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_i686.whl (857.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (927.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (873.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (620.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (760.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (653.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (695.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (646.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

comrak-0.0.16-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (622.9 kB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ x86-64

comrak-0.0.16-cp315-abi3.abi3t-manylinux_2_5_i686.manylinux1_i686.whl (646.4 kB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.5+ i686

comrak-0.0.16-cp314-cp314t-musllinux_1_2_x86_64.whl (879.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

comrak-0.0.16-cp314-cp314t-musllinux_1_2_i686.whl (853.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

comrak-0.0.16-cp314-cp314t-musllinux_1_2_armv7l.whl (920.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

comrak-0.0.16-cp314-cp314t-musllinux_1_2_aarch64.whl (871.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

comrak-0.0.16-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

comrak-0.0.16-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (758.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

comrak-0.0.16-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (715.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

comrak-0.0.16-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

comrak-0.0.16-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (692.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

comrak-0.0.16-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (642.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

comrak-0.0.16-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

comrak-0.0.16-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (642.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

comrak-0.0.16-cp314-abi3-win_amd64.whl (430.9 kB view details)

Uploaded CPython 3.14+Windows x86-64

comrak-0.0.16-cp314-abi3-win32.whl (418.4 kB view details)

Uploaded CPython 3.14+Windows x86

comrak-0.0.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

comrak-0.0.16-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (642.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

comrak-0.0.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

comrak-0.0.16-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (642.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

comrak-0.0.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

comrak-0.0.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (644.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

comrak-0.0.16-cp311-abi3-macosx_11_0_arm64.whl (544.2 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

comrak-0.0.16-cp311-abi3-macosx_10_12_x86_64.whl (552.3 kB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

comrak-0.0.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (623.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

comrak-0.0.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (648.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

comrak-0.0.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

comrak-0.0.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (649.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

comrak-0.0.16-cp39-abi3-musllinux_1_2_x86_64.whl (885.7 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

comrak-0.0.16-cp39-abi3-musllinux_1_2_i686.whl (859.9 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

comrak-0.0.16-cp39-abi3-musllinux_1_2_armv7l.whl (930.7 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

comrak-0.0.16-cp39-abi3-musllinux_1_2_aarch64.whl (879.4 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

comrak-0.0.16-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (765.5 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

comrak-0.0.16-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (720.2 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

comrak-0.0.16-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (656.0 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

comrak-0.0.16-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (700.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

File details

Details for the file comrak-0.0.16.tar.gz.

File metadata

  • Download URL: comrak-0.0.16.tar.gz
  • Upload date:
  • Size: 56.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for comrak-0.0.16.tar.gz
Algorithm Hash digest
SHA256 a3a27e1f34c66572aa25c9df3d4e658b953e3d1c5113bfa7094ced53520bf9db
MD5 2229565a281696c9412d9b4a0616faf1
BLAKE2b-256 8f3272e4c506737a8a9eb040a6234e2b2e62fbaf1e2ce93ff93a17b9492811cd

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e609d77c10b0c010f0e1ec845a49375603a9b8a7f8e402eaca4001334012d84e
MD5 0df83e700b270a7bb77780ec5feced4c
BLAKE2b-256 a2ddb30dfda0242f56b34a9bad2da7b5627e6888c28b4656550af9b0df5c0425

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d765c9398f70648cf7cbccfcd64f96cf768f33e4441353951fd85bad686906c7
MD5 6b44c85e628138aa5fe31d1ed8eaa5c4
BLAKE2b-256 de10f5e9de633154a3c04e01cddaf8b74e919f7bb2ba33c83c0476278e227a69

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8e5a77283efe7656fbdf418a4ea530f1df234405ab0489b9772b60de0a499c5
MD5 7d960f24f86b1f25f9dc9f6000f3e28d
BLAKE2b-256 fba89fc9fd3ef22b4cfd6604c88c2e8ecf1ea874e5ad07144b847e827af5b2e2

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0530b214825fe1b754ffec06c181931ce174c2969c6cefeae84d0fed322fb3e
MD5 dbada58c38492d3b6181615905a84974
BLAKE2b-256 fcc430991ff1482e736b62178633b419f7014ce2a4587005a0ad216f24df2e84

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fcf7cb1151870a5390df7ca1659fb9f98dbf3bdde2fdd6c3d9bf00802965870
MD5 983d6ade62d612541a4de0492922d329
BLAKE2b-256 971ac2db8b17bb81ba186a02cda4e0a5a85e0162a5eb230c5a9404705ed38bf2

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f39d9b7b1bc3018ff34f4125e6a5b773e8830a0a26bb15401f3abcdf90ecc96d
MD5 9cf1b4df91605f766bc8f32a511af148
BLAKE2b-256 6c9576b09b1e8f691effbd1f6a9c7d1cbc22e2077e0e10433a3cddb9ba046a82

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2a96811ca48224d493c257427c8967d2f2c84041927dc8e37d89c5a2c6e790c
MD5 4d7c8954d703afffed10f7124f0328dd
BLAKE2b-256 873fef5401166af06d2946d87b42aedf4d3492f230a46cc2788238ad0fbb6855

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a41e4c11bf9ca9d08234e15bd42e95a40bff6780024eff9e5ac1b82ec92059c3
MD5 e44fd0ec299e7c050eb053dccdd8381d
BLAKE2b-256 8ed18abe4f94cdd33a1f8291f0e5d352146939741dc059d1777de30f3fa0828b

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bb98eb6ea3035c3f39914733fb764cfe98a8ea61c79fbbd6e9a8d92fd247a46
MD5 3424807bf04155387a739767276e1955
BLAKE2b-256 0e11a0c5cf3c53d679e41a97b7f01df44df2f03e0d2ce7df9860f2d8a47c4428

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9918c35ecccee7b207d4877520058a2169efeb347fb19e039f7b1c5902e94fca
MD5 e006ebb841819bf57c606c605e30c696
BLAKE2b-256 1e9e00888c6fce3e46a5f6d962067571d519eec40d366208f7904e14fc1ebb00

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53ce74a0052810be0ceb78ed2f0c7cdb92d66c6fd6d56c007ff7f6aab80daf32
MD5 71196dc91a6d7c7207da5cd45debc656
BLAKE2b-256 6bff07d345568060d2763b85715b68b045e33d4df2965b41e3d7a8743b5e0ea0

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp315-abi3.abi3t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp315-abi3.abi3t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa3d73ce79522a14893f640be088d033e7b949c5dd959cf92b303e7e8b8dba3d
MD5 43fbcd66c665cb8b7842c7e8cabb6f31
BLAKE2b-256 606b40fad6386d20690959f161fdc526bb99fcdf898ce8217349de7758656589

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d843c90a7ade87408fbf8b6d6a8bdd9a855b784086ecbce9d968e61d0208a32
MD5 905d52f8e6114869aaa7d5eab6d1467f
BLAKE2b-256 85165405057818bacab4a00068106136fb92663786674b166e0420f535fc3cd9

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 814ca7670771a9f17b062a4b25b7a86637ce2fc662eded75966d70850c0c644b
MD5 cf5e28fc45ad891d7712f986a1737e2c
BLAKE2b-256 8e83e636642bf9bc94292991f3c3551462ef072beb94920879cdf926a5a8ead0

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 921d306b5d42cb05831b857bd67bc49176ba2391b0df2ec5060d79be9b332d45
MD5 d84e8a751b94c5751adcb1526ceaca58
BLAKE2b-256 3e8f65862ed664bca8778966e13c9c3599b5703bed0413dcc091b069a0ea3f50

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bbf5572b2e963e0c535653bd7250bde91c08dd66a8487ac18c8bd01a06af37a
MD5 09d5fe5489d4d4a33806b4941d6059f7
BLAKE2b-256 67b64a4af10b0b104e3d3f5d3d287e967ff05e23b759add2ec7c51a66f754ffa

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bbe78fd008dc14a8e846d97043fe588d08fa05833ef6d9076e5b2b668710de0
MD5 86e1a5b66d6394cab5064f89e014b928
BLAKE2b-256 f69d8aeda708ca64864fc9185e476c5f2836e0e756eaa096044a78d011d9f6c8

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28c7387e337d9ac047744a2ea69cc2e1f154ccebaa1404b55d43cddf309be2dc
MD5 8ce7993184f8c1e7d55149ab9a286c84
BLAKE2b-256 eac2971badab285813271b19886c5a8ad9723df035b4522538e4fdbf00d062aa

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e778d26814fa537be2138b3e4613d0e93d0ca38fa1f8d23e3897bea3c7f52823
MD5 6820b24adc7661b008310a2081f4ce3e
BLAKE2b-256 bb5c3b7afc8e448cd7b4a1251e82bbd4d75f1fb3892522e59555cafc1d96ec66

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d296dfc3f655b376d24dd70532a91bf6921da9cddd473cc622b2082c05a408b8
MD5 268bbff6a5f4c092c644c9983318bb8b
BLAKE2b-256 05491aaeab553b877292e3e1bc165c6c7e88f374f6e7ea7633ad760bf6d275a2

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9790558f62dee76336258f86bcb5ff953d03e0fe7180480980774be950ebd6c1
MD5 1b6a6ca1b5f9a8235137e47fc00ac201
BLAKE2b-256 dab034369f2153440aeb9bb461f8ecd75a601f7cb6882440b52890043a565998

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 984cd36a060adbb7796e14675e26136d5cb9d29740e5e70ee269de91b419d3f3
MD5 ac7c753444e240a21bcf84fb2548dc8e
BLAKE2b-256 f64feabad4867b792f65af6c1ee052f504b0c7907c15e4e80f2d364df1d52e07

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98bed85aef13efa1f95c51a1284ef45b0902d2409bdb9d153f9f4b1f519a4007
MD5 1a388a53146ebabc3cd8db74b8350b4a
BLAKE2b-256 b02bec2a600fc5dc934a1659a5cb4a3b76bce1ae2849869b63b8ba3a44edc8a2

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c86c286387352ea6d3449961ca9674063d1ef07b048e5a234e0023f1b40a221b
MD5 59ceb10286e3881abaf303e1e1ee0318
BLAKE2b-256 2644285b4aa60cfc0182e862b1d1bf463aa8fec74a83feda9d02b232e7a3dc1f

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-abi3-win_amd64.whl.

File metadata

  • Download URL: comrak-0.0.16-cp314-abi3-win_amd64.whl
  • Upload date:
  • Size: 430.9 kB
  • Tags: CPython 3.14+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for comrak-0.0.16-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 48c73528cb5b0fbc46951cb72a6b7bf782ee50e5b8d58fa8195ea8b4d1d2f113
MD5 45da5b6890ae1292c3551ed00bd0b5c6
BLAKE2b-256 00b0f945f08d1fc65e9f34496e8d6e452bf0811e82e790f365340fe519dc27d2

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp314-abi3-win32.whl.

File metadata

  • Download URL: comrak-0.0.16-cp314-abi3-win32.whl
  • Upload date:
  • Size: 418.4 kB
  • Tags: CPython 3.14+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for comrak-0.0.16-cp314-abi3-win32.whl
Algorithm Hash digest
SHA256 fc4c4845dc32ee3998401740e0ed4af1ec9254a086387b070d3a68d9830795cb
MD5 06f623027cc02714ee9afa036be66da8
BLAKE2b-256 cdf9126bae8228c7ee561ee904e9211d816c10de638e825d6558d67eb48255e6

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e2e960b2188efcc58f34034906e2eacadea67780b6edc4d501c522835b3d15a
MD5 fb7e0a36653bc8cf5036d68b9b523c70
BLAKE2b-256 9a3b13f318ca81b7300c065e87e21ae29ddfdf47af64a022fbb8af96353f6584

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 34873dac10e07fdd5befae53ed95be947611224b6be60efa9e9e2aa0b5c99a5a
MD5 4188a9bef2f01d86a88c3310f494dca3
BLAKE2b-256 d0d190ee9534ef45409416a04beb166ea84c49c4506e409523070d0c352e766d

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a4f3dabc0e0242c5f8be9b33824b4020e894e0930ea16c2b6cb8ac4e8230274
MD5 397dc4cc1515010d3a93f4cf60e0d465
BLAKE2b-256 d1ddc1993bcebcc5963ce87da88a57860eb064e392032fabb7b87c899368b2c6

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3c59ac1edbd7b34addd4f35a352f0e4608bc851f552f9d48df1ba68a8be251d
MD5 32212895918326194928d27dd7ef1599
BLAKE2b-256 d116f9fb5dedaa410919e1839d2ede7f2d8b9e2b177c8447cf24eb41f23dfbf9

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16fd8458fc76a4dbf7473261e40fdff17e4af87f69133eb4d09ea8d40f61a2ef
MD5 78a91177cc163c2dd07907a4eb8e07cf
BLAKE2b-256 d5e08d9618ef72323b0a73c19bc2cae714f0a638be80324a413779616aee7f11

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f1009a6c09138a4c0769989fd3d8a9e1627930b0b7e50cafd43709a5789a526
MD5 1a8e94f09f7d0450d6521f6a9a40f2ca
BLAKE2b-256 f5cce5b1a8ee2a324beaa66397d6387b8d06fc5acbf455b4c74b96c3e09c87a0

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4439723a646898ce2f723bd62ef12b84a2fdf2b74f99c76721a9dda8398a1dc
MD5 4cf7b0a0aeb2a23c89f167506b74af14
BLAKE2b-256 e954c14d3ffb7cc63fc27304a9b847f596f4d045cc526f8c7276269a134f7347

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp311-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e527206db1dc313a807471a1c721575d3072fc11f3d02274b5b647b278b1cef
MD5 0a4e49346fb7e073864b1c5f5957937b
BLAKE2b-256 881bee3500701727a5e9be23a389c17646b92874518ae92c8b79927f729be962

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 064d86c3d3e7c3bc55a5c621b66c54f1f291e73b3c5dc2f8fc9a97a64a2ec50f
MD5 469b6b27bc5719c22324386a6c932bee
BLAKE2b-256 0a0dcc4220a1fbe0c64a10c2195d99a03fb91e52d02c30cc31435c2985ca622d

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b61b04fe3a584f9162a866d3478c7e594ebe28a1f7056672f4326fa6f960ebe
MD5 88990c34eec96c26998851c3d28ca677
BLAKE2b-256 96b7072dcab88f20270887ac0f611ac0fa4cc292a38cf7bb4def7b7624963fa2

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 032e53530822566cc5500c557ff0208afbf33f03d7c1b999bbd3f294ab828087
MD5 3d003bb641dfe4fe19bee6aabe0c6eca
BLAKE2b-256 c0d1502fea94ca250bfd176e97632f3748a878f0e9afab8261f304d2ba46be56

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c835bdb520b8672d7a2b12b5b37cd0fdb7d64e527e6263b38b779abecf1cc5ea
MD5 ab19e3a2933faf6d1a134fa9874fce9b
BLAKE2b-256 9860917df4aa5494b77b785e2bad30b26dc597fd75bf85e1c9d820877253b6df

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 187770273c74749746f7fda91313620851552fe6afd96c8601efac5e52563926
MD5 58ec019390e8bb828ee31d16c474a0a1
BLAKE2b-256 906969be44f0f986d3021a84ba363426c2f33e2b5c53e952b6acbd46ab2fdb97

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp39-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1a17fb510f6c82bba3daf6f24e259ceb73b3abf989b9b1d10546bfd0d1baa14
MD5 dbe5645f33814cc59941ac136cd06931
BLAKE2b-256 456ef8b5dfc3f891c74ae2028f0edbf5b5bd4a9c48fe4c57db7c1cb69263aa3e

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp39-abi3-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 065d31040abe7544f77a36709c75d7764255be5917eda108f1c930bf807777aa
MD5 429f98c0fd0550d05a0707b122f895f5
BLAKE2b-256 82670a87eae34bfd082106eb388b7708444ac51672016167d83268d0a2ec1ce0

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0142dbc052d15b60d144999c60683e8dae2490f1cdaab5f2f08a59028b550568
MD5 2968fc5aebc0a013a25890c07901c41e
BLAKE2b-256 f1426a34cefdb4ee6a3c90e7017c2d438304b1bd2bb0d262a412042eccb44210

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ee371ee417020dc53d7b1a57e191793710e1693605223cf9f38c0943275625cf
MD5 e3743586a721fa5d92c65ad09d3816e2
BLAKE2b-256 59c56bc10b3bdfe270ceaa8ea6f3334a4d74f403bd0f5a0db7051d2383c24e9d

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f61b86065916cabd8b003133b79b11cfc634bf8cf947aaa7f7972e87d2fa5ec7
MD5 8c5fbe103704903c8d62fd23a5713aad
BLAKE2b-256 7f66b2fbf6c82033add1ccab7413416ad19c7b879f4cac3963776d6e933308e1

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 87e4d62ef35a2073ae97d225895028c051c7ee573405b5fe5b99709f67b97eb4
MD5 2784cdd75c1454794f3ec2dd9926dc64
BLAKE2b-256 89534c2cb44824fb6b662f4f40c947c2a57cd2474c01dc3e164777d28431602f

See more details on using hashes here.

File details

Details for the file comrak-0.0.16-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for comrak-0.0.16-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 768faa7b1912b62ea454b89c5a3e22ccbe23f10d8662c53400ee1b3b7fa5c0bc
MD5 d6452e59c8e0c9dfdf104027ee3cd091
BLAKE2b-256 98fcb784c553f00013d0a31c7a2a6c12f0367dd31ad8f36be16be30ebae1f7fc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page