Skip to main content

Minimal bindings to GitHub's fork of cmark

Project description

Minimalist Python bindings to GitHub’s fork of cmark.

Installation

This package is published on PyPI as cmarkgfm and can be installed with pip or pipenv:

pip install --user cmarkgfm
pipenv install cmarkgfm

Wheels are provided for macOS, Linux, and Windows for Python 3.6, 3.7, 3.8, 3.9, 3.10 and 3.11.

Usage

High-level usage is really straightforward. To render normal CommonMark markdown:

import cmarkgfm

html = cmarkgfm.markdown_to_html(markdown_text)

To render GitHub-flavored markdown:

import cmarkgfm

html = cmarkgfm.github_flavored_markdown_to_html(markdown_text)

Advanced Usage

Options

Both rendering methods markdown_to_html and github_flavored_markdown_to_html have an optional options argument that can be used to activate options of cmark. For example:

import cmarkgfm
from cmarkgfm.cmark import Options as cmarkgfmOptions

options = (
    cmarkgfmOptions.CMARK_OPT_GITHUB_PRE_LANG
    | cmarkgfmOptions.CMARK_OPT_SMART
)
html = cmarkgfm.markdown_to_html(markdown_text, options)

The options are:

Option

Effect

CMARK_OPT_UNSAFE (>=0.5.0)

Allows rendering unsafe HTML and links.

CMARK_OPT_SAFE (<0.5.0)

Prevents rendering unsafe HTML and links.

CMARK_OPT_SMART

Render curly quotes, en/em-dashes, ellipses

CMARK_OPT_NORMALIZE

Consolidate adjacent text nodes.

CMARK_OPT_HARDBREAKS

Renders line breaks within paragraphs as <br>

CMARK_OPT_NOBREAKS

Render soft line breaks as spaces.

CMARK_OPT_SOURCEPOS

Adds data-sourcepos to HTML tags indicating the corresponding line/col ranges in the input

CMARK_OPT_FOOTNOTES

Parse footnotes.

CMARK_OPT_VALIDATE_UTF8

Validate UTF-8 in the input before parsing, replacing illegal sequenceswith the replacement character U+FFFD.

CMARK_OPT_GITHUB_PRE_LANG

Use GitHub-style tags for code blocks.

CMARK_OPT_LIBERAL_HTML_TAG

Be liberal in interpreting inline HTML tags.

CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE

Only parse strikethroughs if surrounded by exactly 2 tildes. Gives some compatibility with redcarpet.

CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES

Use style attributes to align table cells instead of align attributes.

Unsafe rendering

Since version 0.5.0, the default behavior is safe. In earlier versions, the default behavior is unsafe, as described below. To render potentially unsafe HTML since 0.5.0 pass the CMARK_OPT_UNSAFE option.

CommonMark can render potentially unsafe HTML, including raw HTML, raw Javascript, and potentially unsafe links (including links that run scripts). Although github_flavored_markdown_to_html prevents some raw HTML tags (including script) from being rendered, it does not block unsafe URLs in links.

Therefore it is recommend to call the rendering method with the SAFE option turned on. The safe option does not render raw HTML or potentially dangerous URLs. (Raw HTML is replaced by a placeholder comment; potentially dangerous URLs are replaced by empty strings.) Dangerous URLs are those that begin with javascript:, vbscript:, file:, or data: (except for image/png, image/gif, image/jpeg, or image/webp mime types) To do this, use:

# cmarkgfm<0.5.0
import cmarkgfm
from cmarkgfm.cmark import Options as cmarkgfmOptions

html = cmarkgfm.markdown_to_html(markdown_text, options=cmarkgfmOptions.CMARK_OPT_SAFE)
# or
html = cmarkgfm.github_flavored_markdown_to_html(markdown_text, options=cmarkgfmOptions.CMARK_OPT_SAFE)

If you trust the markdown text to not include any unsafe tags and links, then you may skip this.

Contributing

Pull requests are welcome. :)

License

This project is under the MIT License. It includes components under differing copyright under the third_party directory in this source tree.

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

cmarkgfm-2022.10.27.tar.gz (141.2 kB view details)

Uploaded Source

Built Distributions

cmarkgfm-2022.10.27-cp311-cp311-win_amd64.whl (125.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

cmarkgfm-2022.10.27-cp311-cp311-win32.whl (114.8 kB view details)

Uploaded CPython 3.11 Windows x86

cmarkgfm-2022.10.27-cp311-cp311-musllinux_1_1_x86_64.whl (428.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

cmarkgfm-2022.10.27-cp311-cp311-musllinux_1_1_i686.whl (401.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

cmarkgfm-2022.10.27-cp311-cp311-musllinux_1_1_aarch64.whl (418.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

cmarkgfm-2022.10.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cmarkgfm-2022.10.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cmarkgfm-2022.10.27-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (407.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cmarkgfm-2022.10.27-cp311-cp311-macosx_11_0_arm64.whl (122.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cmarkgfm-2022.10.27-cp311-cp311-macosx_10_9_x86_64.whl (123.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

cmarkgfm-2022.10.27-cp310-cp310-win_amd64.whl (125.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

cmarkgfm-2022.10.27-cp310-cp310-win32.whl (114.8 kB view details)

Uploaded CPython 3.10 Windows x86

cmarkgfm-2022.10.27-cp310-cp310-musllinux_1_1_x86_64.whl (428.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

cmarkgfm-2022.10.27-cp310-cp310-musllinux_1_1_i686.whl (401.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

cmarkgfm-2022.10.27-cp310-cp310-musllinux_1_1_aarch64.whl (418.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

cmarkgfm-2022.10.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cmarkgfm-2022.10.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cmarkgfm-2022.10.27-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (407.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cmarkgfm-2022.10.27-cp310-cp310-macosx_11_0_arm64.whl (122.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cmarkgfm-2022.10.27-cp310-cp310-macosx_10_9_x86_64.whl (123.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

cmarkgfm-2022.10.27-cp39-cp39-win_amd64.whl (125.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

cmarkgfm-2022.10.27-cp39-cp39-win32.whl (114.8 kB view details)

Uploaded CPython 3.9 Windows x86

cmarkgfm-2022.10.27-cp39-cp39-musllinux_1_1_x86_64.whl (428.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

cmarkgfm-2022.10.27-cp39-cp39-musllinux_1_1_i686.whl (401.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

cmarkgfm-2022.10.27-cp39-cp39-musllinux_1_1_aarch64.whl (418.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

cmarkgfm-2022.10.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cmarkgfm-2022.10.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cmarkgfm-2022.10.27-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (407.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cmarkgfm-2022.10.27-cp39-cp39-macosx_11_0_arm64.whl (122.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

cmarkgfm-2022.10.27-cp39-cp39-macosx_10_9_x86_64.whl (123.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

cmarkgfm-2022.10.27-cp38-cp38-win_amd64.whl (125.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

cmarkgfm-2022.10.27-cp38-cp38-win32.whl (114.8 kB view details)

Uploaded CPython 3.8 Windows x86

cmarkgfm-2022.10.27-cp38-cp38-musllinux_1_1_x86_64.whl (428.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

cmarkgfm-2022.10.27-cp38-cp38-musllinux_1_1_i686.whl (402.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

cmarkgfm-2022.10.27-cp38-cp38-musllinux_1_1_aarch64.whl (419.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

cmarkgfm-2022.10.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cmarkgfm-2022.10.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cmarkgfm-2022.10.27-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (407.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cmarkgfm-2022.10.27-cp38-cp38-macosx_11_0_arm64.whl (122.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

cmarkgfm-2022.10.27-cp38-cp38-macosx_10_9_x86_64.whl (123.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

cmarkgfm-2022.10.27-cp37-cp37m-win_amd64.whl (125.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

cmarkgfm-2022.10.27-cp37-cp37m-win32.whl (114.8 kB view details)

Uploaded CPython 3.7m Windows x86

cmarkgfm-2022.10.27-cp37-cp37m-musllinux_1_1_x86_64.whl (428.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

cmarkgfm-2022.10.27-cp37-cp37m-musllinux_1_1_i686.whl (401.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

cmarkgfm-2022.10.27-cp37-cp37m-musllinux_1_1_aarch64.whl (418.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

cmarkgfm-2022.10.27-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (434.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

cmarkgfm-2022.10.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

cmarkgfm-2022.10.27-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (407.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cmarkgfm-2022.10.27-cp37-cp37m-macosx_10_9_x86_64.whl (123.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

cmarkgfm-2022.10.27-cp36-cp36m-win_amd64.whl (136.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

cmarkgfm-2022.10.27-cp36-cp36m-win32.whl (122.1 kB view details)

Uploaded CPython 3.6m Windows x86

cmarkgfm-2022.10.27-cp36-cp36m-musllinux_1_1_x86_64.whl (427.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

cmarkgfm-2022.10.27-cp36-cp36m-musllinux_1_1_i686.whl (401.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

cmarkgfm-2022.10.27-cp36-cp36m-musllinux_1_1_aarch64.whl (418.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

cmarkgfm-2022.10.27-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (434.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

cmarkgfm-2022.10.27-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

cmarkgfm-2022.10.27-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (406.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cmarkgfm-2022.10.27-cp36-cp36m-macosx_10_9_x86_64.whl (124.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file cmarkgfm-2022.10.27.tar.gz.

File metadata

  • Download URL: cmarkgfm-2022.10.27.tar.gz
  • Upload date:
  • Size: 141.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0

File hashes

Hashes for cmarkgfm-2022.10.27.tar.gz
Algorithm Hash digest
SHA256 93d9ac7716ea901ca0bfd18ae3b68f1f6bf51de0830c3f233ef734fcd52a0799
MD5 1cc2f7c3e7be60d1d45daddf05548fb4
BLAKE2b-256 9429b3c6f8bcaf9332e337f3ac178c3dd729e7148d2a478272779dd33f87b729

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 799cf03a82a7849d975a3b955798d5e439a08fb678b657c5078115dc61314674
MD5 0a5bf26935e188a576ba9a61c4dd9092
BLAKE2b-256 f083c9b5503f4dc0591ff41d769dd6cea6f420acad579b8113f46cf3d3229f1a

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1790164f84e6b037d0b39df11f757e021a9f9c313681297a051d50bc7b5249fc
MD5 817e87f94de0f7f76279bba30994e495
BLAKE2b-256 edc3263b2aa06bc387df82730c855e35829374f86c053715b07a361c9595b16c

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d3fd62dd65c3a64ced175a1447ea41b01a7ac1c0df1c8358323267c9326b7745
MD5 79303471d6cd94a61d48ecd7239b0744
BLAKE2b-256 39001d4d12bf2adcb889ea715d806e3592899ffae27a092aedc25ed07a2709ae

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 76beb5b50b32d7bafec2154608a037601a2186d15df95cec6ab4cc937afca365
MD5 1683105442a95e362111b1a04eb61681
BLAKE2b-256 981ffd83c1eca7ffe996be9d19b5f7ac57a84934f69896ae40b86192274be165

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b0b13eac6194d59f9d3ab44af7076221510e788572f34e25104ad47b33d960e1
MD5 e8747c61079be66a629678366716b944
BLAKE2b-256 2adbc596b2ceb11861bd300835e38ccad6628ead57b61bb790a8b57f13b9b47c

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 210c0f0dbc1aadab30bc75c48b14b645414733a668df52b43058028e43a046e8
MD5 d01b8410c938b83d3fae6c491f0a800b
BLAKE2b-256 e3921d6e7b4d500f6823384cfb20b57c6bf7f03277100562a51f3d81ccae9ce7

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8daf62cddc81b31a8f3c9093936c4cb75b25a8024c09f276cb027f1647e3326
MD5 4f4b2d8070ec984ffe8fb747875c8369
BLAKE2b-256 96f5e59276f793f45709a1a85d894e315705e8f2d3b1a5a4bfe8eca757525508

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd6315e1036d31884bff25719636e3499a7f4593b0f7b47dc742678328f2f26f
MD5 727cd647454bd5be3e4667ab511d49da
BLAKE2b-256 d4f577dfb96223fdd044a105121cada16d54f8cdc367d2558bbd69da6076de15

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8830dfb61251f2b677dea7ffc531c3f6037f7e9a66a14ad24bdaf3cefe2dc8c4
MD5 a36480952a2da222724791c89a510ed0
BLAKE2b-256 707db01bd5c8fcfa28defce20b291037c6138236d02f696e09de5fb110d3eb73

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 670b414274edf3ecc0a950a80580e1de553c599a30658827a5d7f7bccbde5843
MD5 71ccfd41de1e7d4c0b2aecb67a4c8bbc
BLAKE2b-256 f193a16f4975d7557df148cffd7e86d0c152cf6f9c78d590e2376a933b2f0768

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f17677e66f95f25999c959c3f5361c05e739ad4f6b70ab9fdd24b1734c3ab029
MD5 f3a53e9b0454520d06efc2507e1ca712
BLAKE2b-256 ce9567bb9d353cd979dd405f237f1ad4a2591d31eb18bac9e25d6b8d11d8c816

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5fc7178a6afd69a5dfc197558791cecedead9fc77e95ec63c201e8219ce33000
MD5 90fa8bf198320f533debd5329d26bd71
BLAKE2b-256 2bd2ae1c2c0256a69cb1ff3ddb6acdcd203511b0f5c15e540c9e1e053f4bca2a

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e9f038a4f0e54c135e468994f1ea97141b086d1f1bd8f498c12f3d559017e8e
MD5 85021e0cab8cef53ab77879d2c1e9cc9
BLAKE2b-256 36c9261b13469322c4ea0ad7c66c35051e3c1e0f87fd39ab913b88c4a0c2fb7e

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 21557c06a411b1d754eed7f6fc9a8ff41f8a4a004b32c8bd2cec2ab3f3cb4d3c
MD5 5937689e289c13c5ea953a298c306994
BLAKE2b-256 89254c46173af02821f19cb5d182b5b8eef2e384ec27a12b5bcb269826391f71

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 69a769feb1b2d16982fe952afd44e124a4d306a44cdfd6857e74b8eb5d47d765
MD5 3576674649fbc40e1c1384ba766b110a
BLAKE2b-256 9ad8ac943af31683f5fdfa3e023a85e57c912d913c85d26212dc7715a5776f7f

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0756ea0f6b55eff2617ea0518d6730e37d6077c10baaabbe8b46210ff5a250ef
MD5 58eb658126635997c65b0b96bbd12b73
BLAKE2b-256 36dc381cdcee851e477f24ac7b75545c4191c220c4887a0db9d37b75f977498a

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 216a540e85258839cffa7274731a87d91b3e17c9079b3b02467c312e784b5281
MD5 2659e393f39d8faa1cb15cab56920562
BLAKE2b-256 17b0735b59a1c798dd2bb0460f103acf4fa04ab3f9dad1b448064a34822ce23c

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a91279ab8e2869c19120595e41ebd81a6f5034c1e6b1cfc5e81cd80d40bf3eb
MD5 42ea325eed106d40d8520cffa888558c
BLAKE2b-256 13869671ac2924f8e8ddbdaaeb77ce2288ec37d741f974f800402e43210b5e1a

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4325b75a3b5b802d5edcc2378aa6405a1e5df0aeeec583d1b05d73b0562fa7d0
MD5 76614effeaa649ac44d0a3e0647b3601
BLAKE2b-256 b09a86a45a75ee23f6e23f8322bea35c9bb36d65dce418781e235b2a7756a4d6

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6a3970cf1c8ba4465d5046dd6a6d7f6024e67d6eec812a4701a21c5161a2fbd
MD5 2900855d2998bda1a08e00b221b78514
BLAKE2b-256 611ab887bfb0198b58c332580bb89d83999f11db9e72e50815bdbdbfdc3b5a8c

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f510fafa9d904336eecc3aa41536fd287c2d32baa21b14d48950ced802ca531
MD5 0f06c35f20a7f4a51b3c7124fe482b3b
BLAKE2b-256 48cdbe4b50a9cd027da3f5f41585951e47e3b43daa8c55a1dfef3d3b8e49956e

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp39-cp39-win32.whl.

File metadata

  • Download URL: cmarkgfm-2022.10.27-cp39-cp39-win32.whl
  • Upload date:
  • Size: 114.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0

File hashes

Hashes for cmarkgfm-2022.10.27-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e65e492407d7cb3b695f3f715a1cbe6f97db69eb14011b8f156fc10c758b55c7
MD5 4f28b5c3bcac9cf63e4eeb56fabd43bf
BLAKE2b-256 1cd88c4ec1c3b35a4773cb8ae4d916be2d0b248c64feca42b4945631a0fca315

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 27149c63b1190ee6e7dd4b32d0a2c313bc1856bcdde7a42a0a5b6ae42d97ed94
MD5 048cd113fb3082db08c9f4eaa5732a38
BLAKE2b-256 43c66eb982f8977f85ef4d7c1f1097068e8a6bbf92c65b09294992d0a94791fa

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 325c03644da5ab81a7071aae6fbafa3beb22413f7fd7440baf6d510cfcf7be21
MD5 612d9a2af40e3c986865732009854c3c
BLAKE2b-256 6c39f8ab38e0abeaf6582a35730155aa6c345bdbaa5c08a41ade9f0487b1007f

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db3449fdb87752be5ad0698d6f2ca030af320cdf71ebc9a1ebae1b9c1d3661c8
MD5 39289984cab3882efa48f2e9a851a13c
BLAKE2b-256 babf28b7138c5ae62774d3241df8c8b5a58a2ca2256c163d2c537859ead590d5

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c04921575e412a6459d645a45ca987061b17d89310c92aedf108f97f2b8b7b91
MD5 e785d622419765506718f5e32b7b27ea
BLAKE2b-256 6bfab621d0287876a1fd4bb53f72cb6232ab0e8355a8d3d88fbce7d027fb5af3

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c804446b941dc08dcc3d2def3913cfc4bae954b80babfaa2a502e8ebdea29185
MD5 739282c217963346f62e537fb580b816
BLAKE2b-256 855f3f2261d5e3cee3fc57f413b9e190b9c2f6ddc69e91f60e719fc7d207d3e9

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1013ce61db1dd3febcaca1ee42cad9eb823852bb76cbae61c1488734ce51f2b7
MD5 beebde4d4107da8c6bcf8296308a93b1
BLAKE2b-256 2db9f71a7b9045a1070fd31ff40ed838891996ab861052e13eba6c650ee392ed

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5342c6d12e343cc66b4b8dcd09fc0c1977cb32fd1d57c15bd756876606591ee9
MD5 100f87ebc1b3cceca179c48f35f35973
BLAKE2b-256 bdae0e35a0a146f0e5b619ec58ecd3476a50da07820ac317a39e89c9cd427560

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a39333e1fdcd0116c24adc33423999913865bd3cc83fc44b2218aac7fbe5637
MD5 e4d436fd40f7c0a7b4bd0666b9d570a0
BLAKE2b-256 d141da2ddd075ec63d56c8146ca1da8a7e7b66dcfc5138649308b1c4f61ca396

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cc70b89309404dd84a524d439aa2b2e54872e0f623f9523bd77e66526251954f
MD5 70d42c82bc1c437075a511418dfa6cbf
BLAKE2b-256 e82bb6ace2ef1f7e21fa95d5036f86b05dff48ed8b7cd9fb4934dd51d01b094c

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp38-cp38-win32.whl.

File metadata

  • Download URL: cmarkgfm-2022.10.27-cp38-cp38-win32.whl
  • Upload date:
  • Size: 114.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0

File hashes

Hashes for cmarkgfm-2022.10.27-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c66077349e7f7d954aa37d770310de5a8214ac9dca9756440f99e008a0e693de
MD5 35f258faf4d08e6d85995a5be27fc474
BLAKE2b-256 258588140b82142d3bb96f0a429569c69b6f6b66296e286478ac3effa5f954a1

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ea8a84d3702ccc32f8dfd0917dfb95f3d1843a0b6f85131c5cbfd1480d1d31ee
MD5 6c47c497f68a0ab0a73623bc65390410
BLAKE2b-256 14f73a5ee21c35153c93846831d0d7522134b29497512f2a7743f92adf06b6b5

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 90ae1b4b2c6b92f8f5b1e5416a2f5b1bba7a5f9aea29b0de79767ed80655527a
MD5 305d165ab68ce794a14b0930005cfe49
BLAKE2b-256 8168d6eb90957889c2ccc8ebeecc065e0944d28146dbe07231c6b775003ae2e1

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 80cf50b52bc0a47c032706de27b9526b6035c73b57ce06662021144cba4b6c5e
MD5 3c04c297e2670ef13d182b786423683a
BLAKE2b-256 4fff1750896cd716fd101bc8bf6d0873ae94755cad45629b854f0dd16f84c719

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20e897160be161161a565df94ce502714a1aa63af3ad682e6d1f1c7e6656fdbb
MD5 8659a71a98d7273da1079fd1005b0cc6
BLAKE2b-256 fbfc1cd17dd49175e53e129051e347076e17ed76c787ae771ce22179d79612de

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfe84b8912b355b8036c093ecdd6abbe6df075176879a49867dd72b9e53449f3
MD5 665826ca5c7afe18f38d81160ab9c625
BLAKE2b-256 edede89763c1da749cd45e6f28f443186c5a1869c96778e0e3f04a0321c31cdb

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bad39b832f734f588aea00868e53ba1aaf058d569e40e5c9016702edebf88e8
MD5 a420153b97fc5d7c7640dbbd4ba2bb3a
BLAKE2b-256 3b14ead93bb6a93bdeebe85aa51ab8b808e74b83b3ab140951d4964c2eec9dac

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98c0527153daf16589ef095aa72f06a4bdb9213433ff47811fbc4172c91d865b
MD5 38724458e5913e9a72e5a43a94bb86cd
BLAKE2b-256 e773414f0e3a74e9aec7b3e4d3444deb7612aff76fa243a14c7669e0821d0e8c

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea7d6cb95e2d74049cf08fde4ca6cbf030b9bf9ef75009847bbefb35094bb4c2
MD5 b178914a02c746d218864bb276f678bd
BLAKE2b-256 5161b6472c19ac7c10674e9e64050c00c8ec16792e6ab5fca9e6424579edadea

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 123ad8d50fbedacd036760ba46e36170bad9dd2c1e83655d8622b7803169bb49
MD5 73762f7e6665215073083da4377a7f8f
BLAKE2b-256 fc06185d881accb75b2a138c7fd2779d36a52f2360466b78ea70ac348669cd62

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 483e48613f5c7b3350cdabfd0f69aaa086513542d0de533f39e5669bf4df5de4
MD5 a6a05f085c94b47e3b0a937806e3ca0c
BLAKE2b-256 7df03c6cdf019dab4a20ae3ac164ac2f125313bb768930c351b604db94ec5c24

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8744be702511464d04c34000005009607471f1afe65d6037777747d6b4607e5f
MD5 f3e21f00871f4d3da2bf6f4a8ac362c7
BLAKE2b-256 485139abfb21b398bfdf7cfb2948f2037f4f8edef90da86ead5994185be20c6c

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0176d51fb57162c642b1d2c70048950a5ae119af81e77565a0383b992b1f86d6
MD5 075c685b26c2440efed0f19e38e3e500
BLAKE2b-256 d63c4b1cd44c2e80e8494c3f0bb9c355dbefa2beca6c93b60a9ef71467f4cdb4

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 071f5f0dac9475bab6a065878f248a69be52a7736b6c661e06ca7199f25fe097
MD5 2b8897c4c7ddf35d5e7185d5de0775cc
BLAKE2b-256 3a36bdcb2f62ab53cc18aa5ea9c96bd460b746a463d5f6d615e08fe7a04bf27b

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07a06d424ccef98528cba1158946f92117e07579f1dc9942ed4fd70f81693b9f
MD5 f9851bc7f985178544f54fe69b8158c5
BLAKE2b-256 5663f2c2be06f5be837475e9ee8abf55475e7dee9d6734ebe6de046bf2aeff5f

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6672784820981d315b695bb7ce08d40886502368e133b453d675ff6f2fffae49
MD5 23812126a1e15dad2150485f91224384
BLAKE2b-256 5f45eef27894c8ac1e10c39c52594e9bb974d696e9a7de4ecebc5eac2df1c7e8

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3a6e597bdf595f81dc214e821b579b8d665116c55ed5288b599ae941e446098
MD5 ea8a41672cfe2160861c6f0118f9cb07
BLAKE2b-256 1b7e53f6ef3c382d1f9cc8d582a3c7749dc4acc00e31369ff852b1171935d988

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0023de4b19bb557b143bed274f76cb36551f7f1d1cdffd29b6cde646b85d9ffb
MD5 15a18ee86172503fb17c32fae6f89818
BLAKE2b-256 ef3992675db99053cd5a330f87baf349a93594e4098a9dcb039d121648397872

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fbec94c3e91b5e03d90a2cc2e865179e5bc58673e92b03ba64b520a97a0e9219
MD5 b196e794cd3fd8ff322fd753b6564710
BLAKE2b-256 a39c3f3a77f5f3fe5cb2d2de1804ecea2d27cdd4fd59d8ffba908926a55f34a4

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ccfc25b5abfe1398426f099d840b5fa7dec118b44f06833e2ba8b67c6ffc12d9
MD5 6483ba39174e0b7ed494344bd93a6e1e
BLAKE2b-256 ba5949eae39b5f897b3e238c5c192b9c671d37d221b929253f034c7f180cdbdd

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ddc2bbb5572722758787066f5f841745c58452e28c59ce7c13b7228be1cb48f3
MD5 a50cb5f974e1d5da894d7d3fdfea9f0e
BLAKE2b-256 ace070eeb31bc7f58bcde8936e4b5d105e3553401fc826f4e8e731573ad38be2

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 89dcd4fea4ae44f1a0697cf805b6931a126b2b3ea23ed1ccdad7e020425224a9
MD5 288c2bab66d6e653f09c87af10f4fa6d
BLAKE2b-256 c0868c66cf527861db4ebaafa10697b9138a59777ba9fd5ef1ebac5d3d5cbf71

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c82af8cdb76a71459662e447f9b1545ae6146cb9287df978705a298f87a76a90
MD5 0817a32cbbb432f6534dbf87fa5d575f
BLAKE2b-256 45339455494be1e4601342260256bb856138ffbdf7f430cb7f33f35a9eac4df7

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47e267ce890b579585a32f77d347d61de2390b517cfc52bb4ca67c5c4b4c055a
MD5 f3e592898dc1fe227b8169c8266531fb
BLAKE2b-256 03fb8679537f0e58727b792ae7fffd57d5841cb03abf569bac261fdde51d9c0c

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2d3bdb7e525abd03366a57eabd03e0c3f3f36bbf8af2267200605b7b712763b
MD5 74c03a2be594ec14b7199df1dda97ebe
BLAKE2b-256 cf319c9330f4f3aa46b29cb2fcec6ff04182604fbf4f3afdd5786ff3966ac2bb

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f938c503fce528d9cb715314134f8900cf09ddbd7e2bea88cf54a4bad58d0d5b
MD5 930f90865bd79a7b9bad7a3497cfb08a
BLAKE2b-256 dad878e98c6ffafed9deafe76efb42f8379274b69134cbf06a6c321849f5d383

See more details on using hashes here.

File details

Details for the file cmarkgfm-2022.10.27-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2022.10.27-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca0e03a590c6f62738d208f8689da08eae9d3bcc2f4dd97e38df45d8dbc333ab
MD5 ea2f0e3f125e53b219a5502c4ecf5cb2
BLAKE2b-256 88f0dec567ba1a3c207b083ee6af494a02650e408b4ed0ba150f4f5fbf498b75

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page