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'

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)

Only HTML output is available, via render_markdown. The options that solely affect comrak's CommonMark formatter (width, list_style, prefer_fenced, ol_width, experimental_minimize_commonmark) are settable for API parity but currently have no effect.

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.15.tar.gz (55.3 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.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (861.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

comrak-0.0.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl (837.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

comrak-0.0.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (905.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

comrak-0.0.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (854.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (601.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (739.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (695.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (632.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (676.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (625.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

comrak-0.0.15-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (604.2 kB view details)

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

comrak-0.0.15-cp315-abi3.abi3t-manylinux_2_5_i686.manylinux1_i686.whl (626.4 kB view details)

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

comrak-0.0.15-cp314-cp314t-musllinux_1_2_x86_64.whl (858.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

comrak-0.0.15-cp314-cp314t-musllinux_1_2_i686.whl (833.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

comrak-0.0.15-cp314-cp314t-musllinux_1_2_armv7l.whl (900.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

comrak-0.0.15-cp314-cp314t-musllinux_1_2_aarch64.whl (852.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

comrak-0.0.15-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (599.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

comrak-0.0.15-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (739.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

comrak-0.0.15-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (693.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

comrak-0.0.15-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (629.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

comrak-0.0.15-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (674.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

comrak-0.0.15-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (620.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

comrak-0.0.15-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (598.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

comrak-0.0.15-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (621.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

comrak-0.0.15-cp314-abi3-win_amd64.whl (411.5 kB view details)

Uploaded CPython 3.14+Windows x86-64

comrak-0.0.15-cp314-abi3-win32.whl (400.7 kB view details)

Uploaded CPython 3.14+Windows x86

comrak-0.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (598.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

comrak-0.0.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (621.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

comrak-0.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (599.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

comrak-0.0.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (621.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

comrak-0.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (599.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

comrak-0.0.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (623.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

comrak-0.0.15-cp311-abi3-macosx_11_0_arm64.whl (525.8 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

comrak-0.0.15-cp311-abi3-macosx_10_12_x86_64.whl (532.8 kB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

comrak-0.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (603.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

comrak-0.0.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (626.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

comrak-0.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (607.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

comrak-0.0.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (629.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

comrak-0.0.15-cp39-abi3-musllinux_1_2_x86_64.whl (866.3 kB view details)

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

comrak-0.0.15-cp39-abi3-musllinux_1_2_i686.whl (841.4 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

comrak-0.0.15-cp39-abi3-musllinux_1_2_armv7l.whl (910.8 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

comrak-0.0.15-cp39-abi3-musllinux_1_2_aarch64.whl (860.2 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

comrak-0.0.15-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (744.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

comrak-0.0.15-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.7 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

comrak-0.0.15-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (635.8 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

comrak-0.0.15-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (680.7 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for comrak-0.0.15.tar.gz
Algorithm Hash digest
SHA256 7cea5f1a271a450dba3300e21657abc9836761d827f56a163ea8e5efe1ba8381
MD5 1a16c5a6e688faf4e272234b71ad49d0
BLAKE2b-256 23cf8bbb5cad8d85a60da4a790d1599d0fd1e1702d69b7e7e6f9192d5d31bd69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37c2f8f0e93fc18eb4932053052f20b2995c3d60a3334b35136a4c0e56e0fec3
MD5 c7bdf0a57abeb45d75444b2e43f8bac1
BLAKE2b-256 1545f8d0110ce833df6bbf3d1bce370cfbee2b6b167a58e78f9e8e5388ce8702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63541cac54bae04d51a9020d1b448da0e6fa060266b2ab5d59b49cff411858ca
MD5 5bda904c840e1879eca80a0153713b06
BLAKE2b-256 1f41f6bcf46914232a15d2ddd70268ae9d80dbee8388e903a57e225f65f104bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb4931932a1bde0ec6144d25a2cad32917d48b241061ac78473472c2b212ea7f
MD5 d914e91b2c9cd54114d45d385053daa3
BLAKE2b-256 7bffcaf6b9f59079a3b0eae78a447203d7c7c76da1f726c91856f8471c355b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c13e368e9a63ffeb3968bb965daba914289f08ed08fb8c62b8aafe956289801e
MD5 b635c830efc75f186f2955963a1237b3
BLAKE2b-256 b6f5ea0c2dc4f07390a404db90176f285e00718dc23835d9b5f208e72ea03c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28d0d869c50d04c138107d763f57076826789c3f57a323bb12a0353ef83dfcdf
MD5 e4e89db57857f86f62173cc628c24335
BLAKE2b-256 2f6aeb7192227008421acddc7e17b6eeb40673b867118f709cd1d49d21d064fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f8f4a27facdf32b05c091920c0e65a3df13948b0d681bc50d2ba8ed75737bd7
MD5 5de1996aef83c4cdd1b61ec58bf06804
BLAKE2b-256 75791d9be9191fbb2993cfe4203ef757541b2e3ac2487b653a63bea6982e4437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8a7875da2ee8bcaaa19c2d02320aa9a2035c13735ac9b48876231e4ed583f1a
MD5 a0eab293ad2540edbd2ee5318b4db44f
BLAKE2b-256 7dff2562f89af5b32771cbdc93be2691a6c3a4a713df8fd252aa4accd59d9fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0affaa5f81ecbf035c564cbe976a3dd61ab658a406e6028612cbf77657c5e04b
MD5 dfa2bde39a23b908d27359f8ce9802ed
BLAKE2b-256 f49a1fd7a7cb36339e1cc8cd3392d8328de4240ef481ac5ac5fd68bad41c6185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32a7be22edfabb8f2170ef0c9a92e9932646a43677fe166013b8f3168d580031
MD5 8395479ef1519b1bb4510183ab49a090
BLAKE2b-256 9909e568c8d949d52274fb1315926e95d0fef334a918c8e2dec7f27ff4ce1dbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 51f9fd7774b3481820b9b8234ebf780c103a0951a599413240789ac275c11d7d
MD5 bdb79a59a1dd35df52bcbb25870ee9ea
BLAKE2b-256 990ecd9e027d2a6fcd361199c0b79557629121e19869a1f7347e7ed51aa92048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87fc53b26583cdd42f3229f46d900724d8e385742addb4eeda4240ed66d50a54
MD5 47d88aa84ecbe6db4b85a15d3a301c88
BLAKE2b-256 ea66eadda5d9fe72533731cbd62ba5d182a6e6a7a2280843f0691acfa63c3b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp315-abi3.abi3t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce8203f6b6d126a0408f1ca7ec46bf60fad6f81c5b1b07d41c61ef45b77c4de0
MD5 efb9717fa3eacd20781368584be9e49d
BLAKE2b-256 7f68f3a4b42c3fb39a4c57d3fd067faa56bb6a2e6f60f115b113b920d5173654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 236e63e7b68ae939c1691448e18b8785172580bb2176d962ba3a1c2775e20e3e
MD5 bb9f9553e2a5f39e61b1f2e0f2c5899b
BLAKE2b-256 23e1445f835187186da496c2a0fc39557dfb0631dcf3d4bdb4aecadefbcfc7b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0ebbf9d68c798b19528b7944a25ccd42dac390344ec126d79de0f78c6316738
MD5 37322ef214b55d552996ef7723b0d9ff
BLAKE2b-256 dc53e0254ecd3916f871645b04fac2b560bc830abc0774b494281f15f7a7ee10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61b8629baa1eaf3b2c979c0f26d312f2b9400d45920cf43813fbec1e53a8fba9
MD5 7eacbfbf47bb63172027f9cf8cf4885f
BLAKE2b-256 cd41c8e2771fd66979709428b81e3a3fbf2f8846bc4d4ebf423e2b19fa827566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83384f3794347c4718a53b564cd44d66dee4e0eb3fbc88d24392ef979e2aa2e4
MD5 0bc2829ee5fe2265a2fc360fb5674dc4
BLAKE2b-256 0723562b988a4e1abff8d9bb527ded4684bebec44ee7766bf1b0629b1ec854ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a4b1b384d96b4db977f35aebce8eff4ab561229ff8a568d8f1cf9b489fc5db5
MD5 1b73ab7cee8b28fe83b2cd410cb903fe
BLAKE2b-256 c24c03a01a6631095b76634ec06ba25ec160791a33ec2780a62e1336903404cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7db30668cc964f69b1a1509d844f1aecba9ea546a0c589b5f70e038c3a1a34b
MD5 87f2f0ee6900e085a3918eccfc07300a
BLAKE2b-256 8a54205e324cc97729f17ac28f72ddbca7f118167f5acdb420a90f576f82fb71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ca40fe376de30a0dd4a89c9a85c0e74399208d1f1b9ac64634e657e64d90778
MD5 05f4a568715726096b0b83563fdb9df7
BLAKE2b-256 c0f6b6fb99bea3930676820f4cf517d5ad697b5d9fff9d500a9359a13ac9035b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 430af17d603ea138f914d08da46268ef74bd43b4236e728198c1244d3dd51337
MD5 1afe26c6fe54d4d724bee22539b86d14
BLAKE2b-256 8915bb8ecc9baa4b6083b903b36b6b861a1f1bf0da98a5ecd791b4a1a1b0292a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 757c8fb290d4f1ee73cf5a3052d5aa25bc9a375f8c06ab9082240b692a59ceaa
MD5 d76eba6c784134f8187c4c5beeb55f82
BLAKE2b-256 51e18c9864ef75085856f38b2061cacb93a0443edfe57880ab56462b9d5db2c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12f59cf5db967c1a2294fbd0d2c71f1500f2f33111c41fc449c68cb08c789f3c
MD5 f636e6b683747cdc8a664d585bc0eaa4
BLAKE2b-256 72b68824286aaa8ae45ca010cd75d34e3772ddeb82d944851016488a4c1bbfc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54a3aef1b69324ed13152befa0dc5eaa6152bfd7de75d250edf0d0c8a291a973
MD5 d7b3ffa999577bb2836b550ebd639abd
BLAKE2b-256 ae796af498c0631e758c26f507e8350f0be0716b880bf7114ddd2da0b8297e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f0894c48a80ca6fe35961b5c4e1359924d450749fd53a341991be41258817b8
MD5 e807733d021aa4e48d0a332727b4768a
BLAKE2b-256 b133b194422634d522a42615514152350a44c310a3a5823ddb5e949b26f399ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: comrak-0.0.15-cp314-abi3-win_amd64.whl
  • Upload date:
  • Size: 411.5 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.15-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 9669832ba786954ea69ac012f9b1c371ce9cf01a82202ac6a3e3357001f05c8f
MD5 b192633df91d6ebd63c28a0a33e88cbb
BLAKE2b-256 0a31eff8d38509ae4a7d5f708101442fd99f1741e7ef3bab4ae368aab7201bb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: comrak-0.0.15-cp314-abi3-win32.whl
  • Upload date:
  • Size: 400.7 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.15-cp314-abi3-win32.whl
Algorithm Hash digest
SHA256 7e0a08b81666bf2bec8221badf99a556ca00fe92be1054a63dffd69aac0a2748
MD5 508217707f5e65f39dc89bba4c07ced1
BLAKE2b-256 185aac3833b4f7625a66a2c69bcd399858535336647cb2ae5cafe3ad33b387e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 995896f66623c598902f6c2fda040a393cab7f911c5169845b3ea53c4290b3bc
MD5 cad1e2d475ac46ab6bc770adf387a732
BLAKE2b-256 d70484068e568e1231e149bf06f194d2123a4966940b52bf3dbe9675d78f4cc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fa9ca395a56538cc5e1b10f75a39d1bc6dfb14fc7a9131945d136b813e55fd69
MD5 cf1c07892eca4fc5b40f360dc7e582bd
BLAKE2b-256 acfbae6d7aaff94b9d5f49cfe081e4c85b2cd6c8cf8b908bea2a769cfc675240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de6fb0f92e9513e9db8e03b1072dca39a7945d96b954a8565b7a0e7fedc9403a
MD5 af8167e1938df871aaac8fe04b013052
BLAKE2b-256 543ca1ab233422981b436a709180ff383bbe69f3f89e79f027c1c5e6b98565e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 06660f7ca772b98862255b740321f8dd7805feaa80c32dbe7f264ae1a48aef92
MD5 766edd58df11f5327ecb581b826c02be
BLAKE2b-256 b34a2d3d58de53f9417ec6124e9a36dd3c67d65f5fd8cb86b29130f7afcb44c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0ed32007f5263acee1e06e28145a1cef26066bc4d2caa0ff4846777862f835e
MD5 ec5aac801e95a97f1b4cd6735befaaef
BLAKE2b-256 98cc9756d115e09705b024f2ae043742171d9d0d6475ab0a3f0a7bbf928a6495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 54652762cd46046d9d21d3444f65005fa39e562ea11e79cf0ec759dbad5495f2
MD5 411c22e6ff4f623fc8c10c1715f48f45
BLAKE2b-256 c853cbf5e69c5d16be47ae0fefdcd52c038819dcea4050c8ba72bc0d2234c299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 add7bb290e624b8222e2681f5a65f2cf415c1e1e9ee53e87e728afa9c524ca7f
MD5 2e787041080905e245f38ebaf80c78e1
BLAKE2b-256 7fd4765a21a1e64ea66e10a1e33c6ecb324e401bcbbf77a448fc24f6834f42a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72e801ccdb005a1c1df6dc34f2810b99686bc2c0fd88a35b5fe22eee01b24eaa
MD5 4bcd19c9b6bd1171c9891f6060c612a6
BLAKE2b-256 236b0294f87c1bea0811878e1e3285232368fea525456c0c2208a8d2a80ef072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ad079a471c8eea6ff2d267368e92cbf79dcae086e81c67931eb0da91276e1b7
MD5 1a550e7ab36eddfeb1e6662d47bfa175
BLAKE2b-256 09d802f8588e65786ce4bd51a7feb83a47d49b0e70679684dd8842f310999402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 147fdcd9e56277589346866f8b0cdfc9ceb0691d149304c2d77a9b51203892d7
MD5 68a7af1983845c2e46d20ba2c0f685f3
BLAKE2b-256 e21e34927daa94d08301beb8019adee93d42334f923bf330db6903d57f938703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3eb33bbc29a4c7de2aa5d488f4b357cde6eb30d899c2431d5400648fa18a101f
MD5 cbb0bc2aa05da8612dad6e8c3bf40660
BLAKE2b-256 771dd383b861c8a27fa818c64a1801bb500850cc99db55ebc9f8b21d63357a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12e459ff707e062ff1ab8507dc6254f348f6f6d22471b3db37c902d8fe074ed8
MD5 3b5009edd6d18c01a32e11b3d0b8c9b7
BLAKE2b-256 7b9c6594586cf9151fdeeda62dda965a9401d6f713c2b67d58a6905b11702c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7d2d4bd9daeb6d4f36152259a63ea6ccf3531b374c14b582552d52ddf59d422
MD5 e57f21239edfd14f39b742fa915209b4
BLAKE2b-256 aed47ab288791ff6362c205fea7571e43de1e946522e1fe84c511198639c9d52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f63ac779965f3c06017f9395801f1b08037b1799d72a2ab4468a1cc4c6de712f
MD5 e1fb7cdcb0b85b65b8f513c90e3bd3bf
BLAKE2b-256 7611e2e663ffdb8835f24b7e71d7cf7ad6b0d93be0c3ee00a1ce2eb1b4ae9fe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 768abed8635b1ff3d8a43433dccd98cb953a0b1984ca86700a1f727ada9e4d5b
MD5 01adf2df66575534d689a61bba8d3715
BLAKE2b-256 b82263209056c59bff56641a85feb31a5747c2faae1c6c49d9d5c716f878f889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5be9834dda3db38648d08c9925d7e878bbc80268b7b578767d7b2ccab98f29da
MD5 80eaf1195cf894f4036df38961691459
BLAKE2b-256 1dec80671fb5a49bc2775874fe256ce0cce71ef6996a825820df5eaf65defb98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 914aae5b35dbe69d3fa233fe449d7d87d59cfb3537bc73e1754f96f18a4e9f7c
MD5 f4c50cd6353a2f672989a0eae20dd4ca
BLAKE2b-256 80e3da6628591cf6c44abfc9a818e5eae5ef824dd4fdc224cc646791713a359a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcd63db3c274ebdfef87394385bf461573a0345a86b6abd7d556511e026fd93e
MD5 33074a0c2ec96099519cf0078eee2947
BLAKE2b-256 d9514e8d64ced8dd90af6ef85e3a27d53c711b3e029dcbc2d271fa90d3663a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 267ecfeef77ad3bbd69bb37553461bd3c0311688fc4e7098d4c9a358a33e860b
MD5 62539f85aa355674f9d3eadb1f05b992
BLAKE2b-256 e0067e837602eb34839503c7866f8d8549880555dfb976518913f8dcfc62b369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for comrak-0.0.15-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53945c3680811293eb4d8234d5ea7ead7a3b2f2ceaf5d03e0789a277129b0649
MD5 96011fbbda12fd1a9a6998c844149abb
BLAKE2b-256 cd9653b4e28e969f1e024b75bf2a22282cfa2c75a7a111480c73f84e0b8abc0c

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