Skip to main content

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

Project description

comrak-ext

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

Extended Python bindings for the comrak Rust crate, a fast CommonMark/GFM parser. Fork of lmmx/comrak.

Installation

pip install comrak-ext

Requirements

  • Python 3.11+

Features

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

API

Parsing

parse_document

Parse Markdown into an abstract syntax tree (AST):

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!"

Rendering

markdown_to_commonmark

Render Markdown to CommonMark:

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'

markdown_to_html

Render Markdown to HTML:

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_xml

Render Markdown to XML:

from comrak import RenderOptions, markdown_to_xml

render_options = RenderOptions(sourcepos=True)
markdown_to_xml("Hello, **Markdown**!", render_options=render_options)
# '<?xml version="1.0" encoding="UTF-8"?>\n<!DOCTYPE document SYSTEM "CommonMark.dtd">\n<document sourcepos="1:1-1:20" xmlns="http://commonmark.org/xml/1.0">\n  <paragraph sourcepos="1:1-1:20">\n    <text sourcepos="1:1-1:7" xml:space="preserve">Hello, </text>\n    <strong sourcepos="1:8-1:19">\n      <text sourcepos="1:10-1:17" xml:space="preserve">Markdown</text>\n    </strong>\n    <text sourcepos="1:20-1:20" xml:space="preserve">!</text>\n  </paragraph>\n</document>\n'

Formatting AST

format_commonmark

Format an AST back to CommonMark:

from comrak import parse_document, format_commonmark

p = parse_document("> Greentext blockquote requires a space after `>`")

format_commonmark(p)
# '> Greentext blockquote requires a space after `>`\n'

format_html

Format an AST back to HTML:

from comrak import parse_document, format_html

p = parse_document("> Greentext blockquote requires a space after `>`")

format_html(p)
# '<blockquote>\n<p>Greentext blockquote requires a space after <code>&gt;</code></p>\n</blockquote>\n'

format_xml

Format an AST back to XML:

from comrak import parse_document, format_xml

p = parse_document("> Greentext blockquote requires a space after `>`")

format_xml(p)
# '<?xml version="1.0" encoding="UTF-8"?>\n<!DOCTYPE document SYSTEM "CommonMark.dtd">\n<document xmlns="http://commonmark.org/xml/1.0">\n  <block_quote>\n    <paragraph>\n      <text xml:space="preserve">Greentext blockquote requires a space after </text>\n      <code xml:space="preserve">&gt;</code>\n    </paragraph>\n  </block_quote>\n</document>\n'

Options

All options are exposed in a simple manner and can be used with all functions.

Refer to the Comrak docs for all available options.

Benchmarks

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

Contributing

Maintained by 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: 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 for all the details.

Project 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_ext-0.2.1.tar.gz (54.2 kB view details)

Uploaded Source

Built Distributions

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

comrak_ext-0.2.1-cp314-cp314-win_amd64.whl (568.0 kB view details)

Uploaded CPython 3.14Windows x86-64

comrak_ext-0.2.1-cp314-cp314-win32.whl (540.3 kB view details)

Uploaded CPython 3.14Windows x86

comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (968.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_i686.whl (922.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (950.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (899.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (709.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (846.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (790.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (673.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (722.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

comrak_ext-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (717.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

comrak_ext-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (609.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

comrak_ext-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl (639.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

comrak_ext-0.2.1-cp313-cp313-win_amd64.whl (568.5 kB view details)

Uploaded CPython 3.13Windows x86-64

comrak_ext-0.2.1-cp313-cp313-win32.whl (540.7 kB view details)

Uploaded CPython 3.13Windows x86

comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (969.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (921.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (950.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (899.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (709.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (845.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (789.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (673.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (722.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

comrak_ext-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (717.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

comrak_ext-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (610.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

comrak_ext-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (638.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

comrak_ext-0.2.1-cp312-cp312-win_amd64.whl (568.3 kB view details)

Uploaded CPython 3.12Windows x86-64

comrak_ext-0.2.1-cp312-cp312-win32.whl (540.8 kB view details)

Uploaded CPython 3.12Windows x86

comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (968.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (921.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (950.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (899.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (709.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (845.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (789.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (673.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (722.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

comrak_ext-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (717.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

comrak_ext-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (610.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

comrak_ext-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (638.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

comrak_ext-0.2.1-cp311-cp311-win_amd64.whl (566.0 kB view details)

Uploaded CPython 3.11Windows x86-64

comrak_ext-0.2.1-cp311-cp311-win32.whl (542.9 kB view details)

Uploaded CPython 3.11Windows x86

comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (967.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (930.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (951.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (904.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (708.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (846.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (794.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (674.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (726.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

comrak_ext-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (724.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

comrak_ext-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (615.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

comrak_ext-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (638.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file comrak_ext-0.2.1.tar.gz.

File metadata

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

File hashes

Hashes for comrak_ext-0.2.1.tar.gz
Algorithm Hash digest
SHA256 e6fd9b292ba33367def9d97e5a6260e8cacf799b536bca7dd945425d8e1cca15
MD5 d4c8b0dd9d4dfe9f3eff61f4b35fb50f
BLAKE2b-256 43e4e81ce96b0697ec88a42cbd1c66ff010edea59448bbb16d44979b4a9a6e76

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e91394579a528aaada0037653638b1c73a06a5354c23f23d0a613de75ad5f26f
MD5 3aa40fe12b0fc5ab9abb23a35835a298
BLAKE2b-256 c71d47feed276cc4387961825bb6e76570effc20c860010ad8e7f1b89600de2b

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: comrak_ext-0.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 540.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 00cba7a29e0d2f875a83fadd7195ef9f77a6976e33a9c8b967b78c90baee42f3
MD5 d0e639bbe4c629198d20d998e05d5342
BLAKE2b-256 8732d38ab1de57ae86704ae81b7a8d3355cfaf596ac7a295b3725af674022aac

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 194d1592e9e733dd924377c924c023f2cf817bd24c64b8d6219b979856134aab
MD5 51ce461a2a418c87e10a02352f74226e
BLAKE2b-256 115c6930623e1aa098e6de3c4406fbc1b6b62f7ace2ad7f7ccccc2108bff33e3

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7cd31200d70f4b134509ae8a63fabe441c6c8dbd5b986dfc4b95d85a58b2743
MD5 e401b6b8e4ffcee59ae6d30683c04bef
BLAKE2b-256 2c15844d505f60f899a8e405307448014c38cf8c66f82eb9f885175e63b5589f

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 082ecf85661f8923296550433d23ba3258eb0cf58bc0891ab5de5664a1223445
MD5 ea358e947edb6b70343b4a6e249f6adc
BLAKE2b-256 37e63f146cc579caa80c3f11fb22f294e834c5e142d938c5e54eafc17eb03c41

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d51bff0a2ed5adb1d247ed8f09313562dd4388caff7c566ed9924877f2615f10
MD5 37ff4e223766450af6ecd29c3ce86116
BLAKE2b-256 9fe028666bd25c4538a74f9955360e9b77883e0c81cd24d14fb568277da3298c

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5337e358f704c6df0fb45a37734b8ff1420065a85d1f5083dd642dc8b28b0409
MD5 00b8561db7db5b2b8e6c9f784c21e630
BLAKE2b-256 3da4ad453480d1ffddbc626b563fe3e1ecd3ab2bcd1e7fd2ef8307013bc0d4b9

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 289b538fc70970eb2d2c73ee7584000b26d91d59ffd1137c35c7944577c1e047
MD5 ceb8e2fb785e2cfeeff13e47cf920b2a
BLAKE2b-256 6c9775c2dbf29c73bfad6151b85e88d129c5b832ee84aae851cdf2795295287e

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 41fdde0d8eaa05d152e68983c2abe2823c8fb6f8fb08c3a1799792fdafe33dde
MD5 9c43a740c0ef3edf65a228aea441de63
BLAKE2b-256 b2dae2ebedc22aa6f809e38e45716dba1a1a8f0eacaf11636431f90577a09e29

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 719d271206a03bdd1dc32dd148ac7c0dd26dee36d5e221e9f3bd1f583fe82f81
MD5 ec4d095b6e90327363f656a7a7b890aa
BLAKE2b-256 8db40b5dd4b42d2766345b1063a0cae1a92dd935c1b5c6e4e8dd94b6e9ad74e4

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5bdd199b0034ad5f05cc6094069a8ccd60e8013fd49be34ed8c9ca339679dfd
MD5 8e8e55038af3799e2afe654dc7c41623
BLAKE2b-256 1e5d5ff806d261ee84dbf3f68ae54f3cb0a3cd79c7cb3887c2cf164c4094253a

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e957e1b515b6eb6edda1b45e36313af81f5f6493e32779b8c6864bde148be6a6
MD5 747159334db0de3f71c1963d8a0e6bda
BLAKE2b-256 934f56fdfffdddd54a6beb53cd3e7d94c4ad23849c84e719bf19cd827702fe40

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d3fbf396870cb074c1c9c21786fff29719c4fd51dfa7626b5c7368e8b402045
MD5 2370eabfce9f44d52a94fc88879b42f9
BLAKE2b-256 b7614394537493cff306b4ed9d8f4ef308a53bcec5cc08918218a04b42d0afea

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 526f9cdeac275286d4c37eba23d4b5efcfd3636ace79891cffe19a0426a682a3
MD5 5af9fd4622e681b66a52c8c92b25f557
BLAKE2b-256 a7ecb46966b8c75e774fe783822d1aee386699fc78ac741c7bd60dcededdae25

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b5bc3f92aee28bb2ed029d432e9806d53b2a538ccc357d22499b45cfe958b06c
MD5 693b5c2161b1a9d94bcf47ab5a20c8eb
BLAKE2b-256 fd441543681cc52254d17caad6e6b0774362570e1de4ce41429b9f27d36ffe3c

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: comrak_ext-0.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 540.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d643bf84e1f1685d120b5408a9f32d04e425e9baa3cd4f0502487a17d6d6c773
MD5 17e7375becc6c11e5a6dcf7b89abab0f
BLAKE2b-256 478891062682f516e624d530d45849aba0d088aa167684795714d843ebc4bc89

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42c8da9294b8c70ad00eb64b651dbb906ec6bdc0157c4a0af6e2e1cb503cb828
MD5 180b1a0edd84c07de8da4e31e7a2fd8c
BLAKE2b-256 867b887f36c614cd5a41ca68342b3e20cbb313a6535830074cbea9c4ea415a88

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 704411c55253ac27730579c2f4408005a0d75318acc028ba0cc07a47448435b7
MD5 af0fe6ced7c12225f173ec08c7106d96
BLAKE2b-256 d3b53cbc9d358862f3cd8b5e6be4d0486ae52bfc19f90a8596159036b941828f

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2869bf5646e4f8b79539df11a6c705f7c92b4cc8d3c14a04fcb70bad3c15c5ae
MD5 4c84256f0ef0d74a354d7fb44b80be92
BLAKE2b-256 dbc2e28d647251b0b821d01f4a851f78fedee0046bfdbe5f8e550187d3efe219

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03b4d497ed41b732e1d203df086b712caa0b789fe4042bf7541d0d8277e2e5c6
MD5 1714abbce90b4279e7b4ac2105df89c8
BLAKE2b-256 7f015aedf020bafc0080b0d69edf3535a2a3e4349cf392dc08dbb63349070fd8

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbe1f598fa8b29c6406246b752c78ea60345d7d995a89bcf9fe0bcbc2a5b64c1
MD5 f49efd06fdc481472f27277a3eaa1a0c
BLAKE2b-256 828f890950318872adc392a419d7b003743b90da15543316c11c17dcb1bb87f9

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8586416d4e047e1a846fcd17b26629f94e2fee9c187e750a8269f2bf7cad8177
MD5 c2a5fd497226be5be18f9c48a0fefcc8
BLAKE2b-256 fa87f3b6b3fb4fcfedc50f9749ea8016dbbb126e98b3cf2d40f4dc66e9a4a8d8

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0c1975137b546784c4d8e782eb28a5e67b60b71ce59d74eca36a78e675402bd
MD5 6e4631d5cf38e52a7d8331906eb937ab
BLAKE2b-256 c0741a2735d1b7a038a28332d95dda236ad73e61546536903870c57a8c5c72e4

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb28e083de074d325504149ad261c2091780661b0ee9e6dcf8cd405c97ca2987
MD5 f4c165abfc779ab3f0ce0d1ba5275c42
BLAKE2b-256 27df759825d98d47211185d12518f8666b7e8efc895cd7a8d93c0e9ae122f481

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3861e2a3316630bc823072047529e9bfa002655d322fa79922df6caea6efea3
MD5 efad0ad72392ca82721565edbe02954b
BLAKE2b-256 38c6ba84e6db1edfb9b9d85ccd2913330ed206af55cc14f87455dbf0e807f89d

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e3d603514408c2bb3c290fda03abb636a55600550de85457028b569805889bd
MD5 3c6efd984e9a0c06099a22616b828ead
BLAKE2b-256 ae1f8c2d72f3c1d770185379e3d7e685cfe7c0a2004ead0df1d60c7c3785c2ea

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3976f4118871f88585e8feeb70e741c64c3aed9655815a42f5bdff2e4147c77c
MD5 e5f478be6d6cd0d6ee1afae6414be36a
BLAKE2b-256 8a75dd633f94819daf1797369109a23f0c1d372b42a09a8dd8850eed95ed259f

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3dec86cbb400bb6ae327f9ec28094754dae363df5dc716316d8dd737d1a4d63b
MD5 4e11671bdcce188365216a8e6ac6cb21
BLAKE2b-256 66dbb59f076965f12e978fac30016a176d0683a53ea8ad8f4d8778302509d26d

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 92e5151f1d6a35580ec2aab7f97345c8f605338d448670c7bccdff260de9df8b
MD5 f944eea56da776464a53cb9d0d3a5ad7
BLAKE2b-256 5a8f90af0d5013280321acdcbc987781f32bc06baba089579621b741369eb925

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: comrak_ext-0.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 540.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ee1262b566a920e48bfb74d6098b9cda27809b8b49da0258ef0100034257c5ec
MD5 9664ba0dc59388829a89e6d0783a8019
BLAKE2b-256 df5bf129bdef238657ea4d9e729728ddab179d99a9e3a46c2b3c07a24294c73f

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b13a8a11f063fc35d49d6acfe34b6b71d5f121c310e59c86800e8b8b45e9c08b
MD5 e4386acbc8e8af2100dcc7e25aab212a
BLAKE2b-256 c7b55e761d77273cb2ba91207214a610c2467b2b207fec9104e1b33667affbe6

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4203c29a25d3fdd3964533c86ab16c210d1c2b0d9a41800dcac46f316f3d6379
MD5 1cf0ff22187dca4c3c73dd73f61668bf
BLAKE2b-256 bf376fa625946671738bce26cb3a9837510108533e8e12147d77236a10665d56

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72111031638ea49c27ece561847eb11a8c909cd29f603b5b6cc378dd4f21bbe5
MD5 1826d009a796bcd3bdd7c0e31b2ee1e9
BLAKE2b-256 b0f6984a65b51ffa50ceca1ac302232be8e4eba492d7f167f9eaeb18c3fd6087

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 181fce7ff4be4ce588ec010ff6efff5b8a20bad367d3a986e98e65b1a7f0d22a
MD5 ad57f6bf1ea6f0f0684011acf8c904a1
BLAKE2b-256 916e36072c8607810788634fa95b2c33ab8823499dd0ecc684508db9ab3f2546

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63fed1967319633d7d0b36aaf1a6e72ae3c75ce013780c0297f41cbdf9c52841
MD5 dffaf5182ef09840b9a418e6030dd0d4
BLAKE2b-256 ea6e2ad517a01dadfa72486bf9d3cd996fd7ea8b2e625a69fd260a4255e1e8fa

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9545f8bf2c878d8dcea9198eaaa1bb670eeb8f92f98da091bc0f5dc1471bb655
MD5 65f0cdbb390020acb50439f8f9fea374
BLAKE2b-256 5f1d955afc73d452f8421c6a1bf2b15bb0ebbad6a651a88b9f5177f109bdf87d

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c0cab560595e74b1fb0703e613b96effcf36391bc94fdd89bec5d4c9454afe3
MD5 94c2cad1d5768f8341b87d12fa70ea09
BLAKE2b-256 ca65b15438036d199447dcfd4d73c3d2bc82f812735e3947f4cf3a86f4b7560c

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3468a3f2c16e23c4bd24f40dfae7f652e56369b9ed41e06c5abf22653d8ddaac
MD5 002c31498b28800fd4891352a5e6bac3
BLAKE2b-256 dfb6cc01c947ff4ed9c7d9bacdb0769539cc98a417c98ca6bac8d67b018fc41c

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 489bcececfd9b49e443bb5eaccae4343827df6ea863879992c0f3849023b95b0
MD5 2d9371a7f947e87e33540ffc8bf74629
BLAKE2b-256 8795ebf7cc311aeea44b004f45c1cca02a5d135bac0687b74c12b552e19051bc

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 154bfe8620110de23016419d83d3db6d0d2607ca6850d24030a738ed12c245ce
MD5 b3ba7cdf175cab3e7386e164c317b587
BLAKE2b-256 fa475861b90c293471010165114f30c9d4e0c88e6c9b3ccaadd9da42f61d461e

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a3d475496706b7bd5490869329a093416ff653b77ce5f5e76ade960d4900d38
MD5 8383c2c319cf0f6eae7fa9e688d0f74b
BLAKE2b-256 a9e23e0eea7d3ef97e9e4c56f406f89ed52885c7a45c45cd360ebb4eacfff204

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9585f67e90649c5447ef887da3813e87d2a67e977d0c77ed4ca2bced1c5397c6
MD5 69f56cc44c61ff9f3c38673128c10e31
BLAKE2b-256 e27a68a74d47ccb3e74a15905f26cd75692446e38b08b9ccdfb2cbaa3d831364

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 de5874bc8ac3dc595405ed1b55b5b8263c0c0d3a7f704fa50c9053f326fbfb7f
MD5 8bb4ac0bc205dad5c6883447df038f45
BLAKE2b-256 44e0e2ed04bd2fb6dc1536f380f6a4e2fc71e151afc7f0d636a3e463ca8eb613

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: comrak_ext-0.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 542.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b8d4241bec64d8c408f213f598f3bae1b8ba134506f09c3a82ad678ea7089933
MD5 678d2055ff9ba358120ddc35a23fed8c
BLAKE2b-256 7632a82d34f5dc545bcc0ef61bd97c0015793f3b8b43db37f9383e117e26e47d

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22e264b96f67a5d002a533241ef2ebcdb02bfa27dc9bb673e02fa24388b414ee
MD5 3b049025e8c91b4b3c6b80b1d73f6d04
BLAKE2b-256 03c2ad0fd413e4516510f2fb64fc712954af9ded1fe02566c633eba334c1a03a

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ab8b546201a0a1cf87cd4b02c0eacac23a89b2929b00a9699b1c820e28d39cd
MD5 18183caa510e8a27b9014c04e5b88de3
BLAKE2b-256 48927b7d3faa426f04f8f6bedb174e6392b41f2360df68f38b8263f2f39b1d16

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3bb98417deece8d20209fee52b6df4c0a2abb02c4225d350162f2077ab6c0bb
MD5 1c04fcde8167bb7c8f7b0abba3f1c661
BLAKE2b-256 727aeffc41c7c851d054c70f5bc7c47c8e56420d592f8d388b08f7792ede14c9

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee602c174acb3675f270a2cc00e68a2a34e66a51119b788b984086d12913d753
MD5 e9485f401bbbad9c16070574bb3c99a3
BLAKE2b-256 02fd7df49d3031631d23241d71622a036dac77b14bdf2fdc9b8b6aa06ef88777

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9676e9418263dfbe0845b16c82c792b28b820001d64983b9ae6da16b082def23
MD5 bce37ffe6b0d1896713329e90e788e54
BLAKE2b-256 751c7102e7b40a72a015f0d0f73203d871ecc12745aad10d7a5012b48622ab95

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd87e0538c7ba52574e05526e7381d7280f6697ea1da5129786fd17c29cd01a8
MD5 18f0499c0b2c550d0fa487e4e7e17239
BLAKE2b-256 639320c1dfbb4618eb9a5fe1829e875a0c649d3472395d7c14c7b9390bc2270e

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b1bcbdf16c6dff949c004f29c0fa6511baaf8ff02e7c614571af204db612326
MD5 c683d719c773149cecd6549f4867c532
BLAKE2b-256 cc185dcadd6ebebad22b53d4a0f39a80bab1205b5d3bca51ae16c421fab90551

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c19833402545dcb10f4fece62102db4ba48e0e100826c06d1ec02421abbe1787
MD5 b28c9a4ec3cc291627c8ef1d773dd432
BLAKE2b-256 915ae8040b520bb7672189bcce5988f45e0029c572f132ec647b0948d88c96cc

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e594ef41b9bbe012597d3a90456d483e3c9fbe272189e2d8a3e2b027e5cbf134
MD5 d8d489c09adfbeaa09d36859d5957cf7
BLAKE2b-256 0c3633970d622beb6a12b228fc5d3100aad9e3ab111bed9d02bab5f6729ac860

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 197a94fd526d48995a3a092c96fafec978f403fdbed62ca5d04eafa5e8af4919
MD5 937100e7c9142514738ce744f5e9e980
BLAKE2b-256 2fcd7959c8f61695b3409c93750265541cb99368ef2504439f732575b77c780e

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0fa9ce98a9a46501b0a66be62a9c13ca8a70d6d3540c26fcf137e55e0450ca9
MD5 9cfb2e1d77ebe9e0303e41d5c0cd7499
BLAKE2b-256 de78874e6561a2ddde8b8437a1832134a9abc18e906b1b75a8c4fab688e40b7f

See more details on using hashes here.

File details

Details for the file comrak_ext-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for comrak_ext-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50062af5c284338d8a5dfd1df23bf5d32b09ed08a8d75587640f55c5465c7f53
MD5 9a3596cb5a6f9a81dd713989249d5813
BLAKE2b-256 bd1ce1e56cb43b71ffd5ec4b83ddc0c7eb97948cc3d3658fce4c289262cefbf0

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 Pingdom Monitoring Sentry Error logging StatusPage Status page