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-2024.1.14.tar.gz (146.7 kB view details)

Uploaded Source

Built Distributions

cmarkgfm-2024.1.14-cp312-cp312-win_amd64.whl (127.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

cmarkgfm-2024.1.14-cp312-cp312-win32.whl (116.8 kB view details)

Uploaded CPython 3.12 Windows x86

cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_i686.whl (409.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_aarch64.whl (429.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (445.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (440.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (418.3 kB view details)

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

cmarkgfm-2024.1.14-cp312-cp312-macosx_11_0_arm64.whl (124.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cmarkgfm-2024.1.14-cp312-cp312-macosx_10_9_x86_64.whl (126.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

cmarkgfm-2024.1.14-cp311-cp311-win_amd64.whl (127.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

cmarkgfm-2024.1.14-cp311-cp311-win32.whl (116.8 kB view details)

Uploaded CPython 3.11 Windows x86

cmarkgfm-2024.1.14-cp311-cp311-musllinux_1_1_x86_64.whl (437.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

cmarkgfm-2024.1.14-cp311-cp311-musllinux_1_1_i686.whl (409.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

cmarkgfm-2024.1.14-cp311-cp311-musllinux_1_1_aarch64.whl (429.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

cmarkgfm-2024.1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cmarkgfm-2024.1.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cmarkgfm-2024.1.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (417.7 kB view details)

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

cmarkgfm-2024.1.14-cp311-cp311-macosx_11_0_arm64.whl (124.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cmarkgfm-2024.1.14-cp311-cp311-macosx_10_9_x86_64.whl (126.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

cmarkgfm-2024.1.14-cp310-cp310-win_amd64.whl (127.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

cmarkgfm-2024.1.14-cp310-cp310-win32.whl (116.8 kB view details)

Uploaded CPython 3.10 Windows x86

cmarkgfm-2024.1.14-cp310-cp310-musllinux_1_1_x86_64.whl (437.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

cmarkgfm-2024.1.14-cp310-cp310-musllinux_1_1_i686.whl (409.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

cmarkgfm-2024.1.14-cp310-cp310-musllinux_1_1_aarch64.whl (429.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

cmarkgfm-2024.1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cmarkgfm-2024.1.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cmarkgfm-2024.1.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (417.7 kB view details)

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

cmarkgfm-2024.1.14-cp310-cp310-macosx_11_0_arm64.whl (124.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cmarkgfm-2024.1.14-cp310-cp310-macosx_10_9_x86_64.whl (126.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

cmarkgfm-2024.1.14-cp39-cp39-win_amd64.whl (127.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

cmarkgfm-2024.1.14-cp39-cp39-win32.whl (116.8 kB view details)

Uploaded CPython 3.9 Windows x86

cmarkgfm-2024.1.14-cp39-cp39-musllinux_1_1_x86_64.whl (437.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

cmarkgfm-2024.1.14-cp39-cp39-musllinux_1_1_i686.whl (409.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

cmarkgfm-2024.1.14-cp39-cp39-musllinux_1_1_aarch64.whl (429.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

cmarkgfm-2024.1.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cmarkgfm-2024.1.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cmarkgfm-2024.1.14-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (417.7 kB view details)

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

cmarkgfm-2024.1.14-cp39-cp39-macosx_11_0_arm64.whl (124.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

cmarkgfm-2024.1.14-cp39-cp39-macosx_10_9_x86_64.whl (126.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

cmarkgfm-2024.1.14-cp38-cp38-win_amd64.whl (127.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

cmarkgfm-2024.1.14-cp38-cp38-win32.whl (116.8 kB view details)

Uploaded CPython 3.8 Windows x86

cmarkgfm-2024.1.14-cp38-cp38-musllinux_1_1_x86_64.whl (438.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

cmarkgfm-2024.1.14-cp38-cp38-musllinux_1_1_i686.whl (409.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

cmarkgfm-2024.1.14-cp38-cp38-musllinux_1_1_aarch64.whl (429.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

cmarkgfm-2024.1.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cmarkgfm-2024.1.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cmarkgfm-2024.1.14-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (417.9 kB view details)

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

cmarkgfm-2024.1.14-cp38-cp38-macosx_11_0_arm64.whl (124.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

cmarkgfm-2024.1.14-cp38-cp38-macosx_10_9_x86_64.whl (126.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

cmarkgfm-2024.1.14-cp37-cp37m-win_amd64.whl (127.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

cmarkgfm-2024.1.14-cp37-cp37m-win32.whl (116.8 kB view details)

Uploaded CPython 3.7m Windows x86

cmarkgfm-2024.1.14-cp37-cp37m-musllinux_1_1_x86_64.whl (437.5 kB view details)

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

cmarkgfm-2024.1.14-cp37-cp37m-musllinux_1_1_i686.whl (409.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

cmarkgfm-2024.1.14-cp37-cp37m-musllinux_1_1_aarch64.whl (428.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

cmarkgfm-2024.1.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.7 kB view details)

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

cmarkgfm-2024.1.14-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

cmarkgfm-2024.1.14-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (417.5 kB view details)

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

cmarkgfm-2024.1.14-cp37-cp37m-macosx_10_9_x86_64.whl (125.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

cmarkgfm-2024.1.14-cp36-cp36m-win_amd64.whl (139.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

cmarkgfm-2024.1.14-cp36-cp36m-win32.whl (124.4 kB view details)

Uploaded CPython 3.6m Windows x86

cmarkgfm-2024.1.14-cp36-cp36m-musllinux_1_1_x86_64.whl (438.1 kB view details)

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

cmarkgfm-2024.1.14-cp36-cp36m-musllinux_1_1_i686.whl (408.9 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

cmarkgfm-2024.1.14-cp36-cp36m-musllinux_1_1_aarch64.whl (428.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

cmarkgfm-2024.1.14-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444.6 kB view details)

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

cmarkgfm-2024.1.14-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

cmarkgfm-2024.1.14-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (416.5 kB view details)

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

cmarkgfm-2024.1.14-cp36-cp36m-macosx_10_9_x86_64.whl (126.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cmarkgfm-2024.1.14.tar.gz
Algorithm Hash digest
SHA256 a208c1726e12ba385125cef2c6d375c41c5dea4cc2673a77af712b1dbf074e90
MD5 bfa700da702dcaab8bf1b0f55b217560
BLAKE2b-256 7d570480532cf04f77ff6f34985109079e87b9028444540731a5380abd0a3325

See more details on using hashes here.

Provenance

File details

Details for the file cmarkgfm-2024.1.14-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ded64f663955f852d8965b40ab47718461df6d42d12719264b09a23d33b8d38f
MD5 b3dfff08f1da67c87e46b3c34eb32b7b
BLAKE2b-256 5821ca6817890a35c7952da6683fc2a940196857cbb1a38def3f47d8f6978a91

See more details on using hashes here.

Provenance

File details

Details for the file cmarkgfm-2024.1.14-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7de3d8bfc64168419a6d1edb223616ac6f54b67e20e4b6b70f3ae659fd3f3f31
MD5 a2204e1d5d83c657acc01ea443d4aaae
BLAKE2b-256 dcfcfb5a0fa00cec6552eedc053ed0a6850f7cab6c9ae6327af7d55a33e0d753

See more details on using hashes here.

Provenance

File details

Details for the file cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2196871b8f42dea9d85e1a3c1bcb5e05758946874441ec3f7226d80881284e32
MD5 f1e942fbd7405a4b0795b18191e8a39d
BLAKE2b-256 80634207931a850f4cb17fc768e0adfa4933ada3e6330de393b46e0deeb2eb06

See more details on using hashes here.

Provenance

File details

Details for the file cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1f530595c5fbd92c248576ce43771bd07289c1d42623422d669e20ddb545d41b
MD5 fa42d6aac0938c9ecb77f5acc4c76dc9
BLAKE2b-256 b2ec3712d98dddf746e5bff1271b9460b765935a3387cc3d2d677cce34a66a15

See more details on using hashes here.

Provenance

File details

Details for the file cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a9bd82bac3673a0848fa09512ae61059943462ce824944faaeadc727068d9e19
MD5 8d15c51052efe47f30c08d4b45f0f4c0
BLAKE2b-256 5194a5347feedee8b3f4323f8f416797f6d4580f4e992a6cecf151162b34b5df

See more details on using hashes here.

Provenance

File details

Details for the file cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a922846197ac9452cca8aaa9c4b5e56b215299d067e704df9c56c8d87463335
MD5 0fd6cf17c8ea153849c2781ba54e9351
BLAKE2b-256 35e8842f3ead6874a7e7c541dbf4fd8e1692e5c0de2f90f1e0bd4b01a0911504

See more details on using hashes here.

Provenance

File details

Details for the file cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07b83ae8de9a397629b4dbe4f190e8edc87b2b94548fbc644ed006a5cc94d959
MD5 46c3dfd101b34f041e8351615741b0fe
BLAKE2b-256 8c4b98540e11b4caaaef84a12abbcfd1ea4eb932fed2a34df51628544cd385e5

See more details on using hashes here.

Provenance

File details

Details for the file cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 53ccf3d184080f8626264f49866df4ead90685f4d5a3d5d01ffba7f50fd15512
MD5 42e85af31050f4b4057188c4d8dcc31f
BLAKE2b-256 a73d7abf18be2c92dd762ce79032de2301d91c34b640f2991c4103d9b594ebe1

See more details on using hashes here.

Provenance

File details

Details for the file cmarkgfm-2024.1.14-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8c929836caf96c4fb7fd5e7f9efe6fbb6aa57f9dfae543f74f10b55d5a92b56
MD5 64b1299f99043e09fdcb75b8eeab4c3c
BLAKE2b-256 264640036da661de8cc770cd8bd6299e8d949ab4ba8c5a97f0d690dc7794c5c4

See more details on using hashes here.

Provenance

File details

Details for the file cmarkgfm-2024.1.14-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb595be70d86d1497826f80e3e04b46001b2b94bccc099619daea693923a88b3
MD5 f9e9ee62a4c250f245401ab0c09a9e1c
BLAKE2b-256 ef406e7121dfd03ae1448f014c4ce777ebd991911e2a8db30a72cee8fc61e233

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8b8fd26ff27b9895f48459b8e556b9d6c4d255ac3735b3b2f8b14b9787ff6b89
MD5 2ca2d643cb599f3c3a62dab6e6db598b
BLAKE2b-256 382cabd3c6a3ed85d688f51135b35188a613f318cb1ab86bff43d284570d453b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3cdc34d749601ff74209580fb7c80b3cbf1112d2832af52c14387cb04831ff2b
MD5 267bc0a2629db90910f51285307e1f20
BLAKE2b-256 d58f46c0fc7cf5c48929a3073d5843e77b638f3798710397bad234627c39c9d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 70db301d140d1f0cabe58770aad8506a4bd7fa0e5b0fae78c8f9a80712d14857
MD5 b145abe82a63ec6a91878653451899d3
BLAKE2b-256 803f8022efe3fe4f9fd8a9debeef37ded8b086cfe206e89a6aa169b3c81a896a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b0b5a3be0b76f2802f8f16c40d33f74ff68c0bca8860bd4b5252395181077534
MD5 6c48ebbfe76ce6061019be12aef5e4a4
BLAKE2b-256 baf6e2efd2c713e6a81a38504a75a566cc3a1e09d588d5d6df60f9216aeb6469

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ce0f76ea3d47d206913db8f7933076191be4d8871019095a4880885531586ab5
MD5 bc559baf98548ccd1f243ba468891732
BLAKE2b-256 2b8c030168b0ef780ad2b8e531ce3d8a77cc48981d2716ced83eae236379feec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bba56ccec5b980c9da003ac7449c0cbe8045e4e046d4ce51273a47d3a9b84b1a
MD5 9bdc93ef9a839bf0933524f2fa211a2c
BLAKE2b-256 487eeafb45c243f27dcaafee942125e50ab344db7d848a8d7d6de7b3c0b9aabf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26d39c10b816392a3b54a9a7ba7ce894c40fee2813ac71554c424d6762c28ee6
MD5 cb70fb5dfd77f007ff2c1595eafdf962
BLAKE2b-256 0f2912a8322342e22c28bce794c3595e27628ad980eb5c22073723abdf117b0f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c552ef80fe8c29d647c86ab49b8f66aa7626e7de9009e4005bd2120698667fa2
MD5 9fa5012619ef546e81cde691112853e1
BLAKE2b-256 a8863d6bf7ec4032a81b604c0037f048d3dd98a79feb608dea5fe8ed3d4a273f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43db622d57e81dce30dcbea3a0198588080559473e5bafb68e10959dbf0a3d0f
MD5 e592dccf36056c7263acb990a16dee17
BLAKE2b-256 4fe26ccf5b916ab7b5df1f4472302f65f9daa466eb7d22d2477caed27ee13b0d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6565d5659d80d119733a407af70e5de7c04e0822fabb91db83688e0e280cc174
MD5 cea7b52a720261c13f02721536132b03
BLAKE2b-256 475f08b10b2ed15e7053526b835e6fd198a42de9660f3b031a0edf4c28d32086

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bcd059584161491a2848e55ec73c28f17d8e89faec9ad860afa05246a6ee695f
MD5 494d3b3bc658024c350361604a008c13
BLAKE2b-256 90584af6df4c36fc9ba20a7cca1cf73e8882aff0945c9983e3b6431bff43bc36

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d399545833ff3f25f8f6d9b559be5878987f3e34cfc4fe79cefc1d33fd3da852
MD5 a43dc2910ca75498f13028f1fe3efbcb
BLAKE2b-256 3ac365ec673bf90cbb73d2c3a8ca88234435d0ff646738b7d29be1d7b5dcbf39

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7d3f497cbbaeb540a741a6516673045abcc11b41029bc3dbc95b3b5ea2cc2182
MD5 8d10bbf3ac7cb7424b1a35901aa0e496
BLAKE2b-256 6d9777bd019abc0436ce97182f2f64122e0c105b6acb440accb83994a49219b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4ecb19b2fb24fe055bbaf0d38e8262642f27123b4339f1f10e7fabb726e57ee8
MD5 5b7cb36b9155132c9ed95fac759ef6a7
BLAKE2b-256 b14771d5cbe814c320355c96bda2d17a42f085bc06d64ee651828cc782620535

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4310b7d5cc534c27454406963319a16c7f3f05ff75b7cd24a1091884c04248ad
MD5 77900fa3064af53d7834dddbc74a6312
BLAKE2b-256 96468e7d73780b8a076183ff9ab40ef3f05bd09e638a3b201110b419cbfc7a4a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82b62dbc7f546c43d99964914133b7e4d7ef7ce4f411cd0acc95b382853aa47f
MD5 fe8d65ac5f7015fd8edf14c1e122a2d9
BLAKE2b-256 031b9db58ecf3b0989caef1c443cbae5e880ef2395d8d243a489e531946d0f8c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8d68eb075d2eb48e864d9c031b0117900e25a3c1c7ab8ce4f80c25b6ae7f346
MD5 3c459d52873974f147eb7481560818c1
BLAKE2b-256 3ef671e427e28b850a0bbf041b4439ec6cd36a532fe08502fb3b6fef905bc75a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a3fe7e5357233649030f22dd816354e51c99f90857cff904a173bbd602733aca
MD5 9dc9157d1f5880ff1666e12a2dfb5dd7
BLAKE2b-256 bea34bcdfe8bd996a2af98b87d1a8af0a57c509ada2d1d410975ad339b93bb07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ccd6689108673be5bb19f3a3b02cf897fab9b04290a0548e4c6deec5a1fec9a
MD5 d9447c8b38cf721e08b993cd5fef2a6a
BLAKE2b-256 cea7d1c81abda5335902eab537cd9483d404b7c1a2c7a762ec844efc96e0b4ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b676300ff04629c07c02687e5dc017fb7d1edf38a5dc1ab2ec28078a71195ce6
MD5 ca23f8c1ef3bfdc2d6cf0b9416ce4f94
BLAKE2b-256 3875eb384c2e0b40a49dd7cebed9dd243b2c028a9201bdfd7276f9c95276d421

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b79662ab458c910c9785abacb8315d6f46487659d44398bd894f577bb6b9d04e
MD5 aed727b710a40022f9c8889fc00dd125
BLAKE2b-256 50499d04d1bf4eb4ef819f12a889cd628ed3c4f4fde6cd56a579870fda3dae61

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for cmarkgfm-2024.1.14-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d55795968751e1a8ddd2172c1d03d0107b9dd20445dbcd23dc9e0a80d95a0c5b
MD5 602abb8cfdc5e6a7c89a08739395294e
BLAKE2b-256 52ee7a82c33bfbcb3d14ba6f0022e970c2efb740bed1824258b1e2120b8191e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ec6eb4929bd231d7e5c0cf1154581be0a13b8d2b7aee2c30410066f363c765b9
MD5 ea0219fd8d5b7d46f1d3fc265be43a94
BLAKE2b-256 0d4741e8452df0977addc66b50ec644fbad2bc45586e6f745127dae3aa0710a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0c66d0fecfdee9f2ffe34f640e346c653a951bddba79d192629c60958933aa51
MD5 0b03633a1e918203bfa787abe27f550e
BLAKE2b-256 b3f1c3b637b4166caf08faa450fe33ded6e336086ac7cdb16caa3ff6b25ef2a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0f7845837b0c4dbb3a1a7bbfffed264f011f86ea1cd0ce7823b533bcce0e1fe3
MD5 7006513bdbdd33e5a8c4e9e20ab14133
BLAKE2b-256 88245c0df5cd0e48c55dcaa6c5755f084f02456241cea979b3477bb806a55779

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56ec68a68164bf2ac0fd448d7fcb90d360a42072a6abd62be3e0d222240b7304
MD5 d049ae9f5e65376b6a9da3d9342524a7
BLAKE2b-256 2b8db39b58f78bf6fd8153f2ce4a286604b47bf4b1df4d628fe1303483bd1152

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29b95d267ee1c61fd41d1f8634052a77b554517b18e8ffcdf0181e5e93a7af88
MD5 5d7dee9bd2abb04b11489a1cae044b50
BLAKE2b-256 56b010da638ff8984d1ad5b2a29376e65990827f49d9fb525c19ff0dc6d38fab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 491d72e0dcc21ff9f3c9a905f785d4268170964500db498dc5b0f2f390fb340b
MD5 f9d9369939417ff0a481931fd39d8c11
BLAKE2b-256 70ec9e08b28863ca2aea4b0e0749310e14ae14c8c2db2e03a2be362bc3923603

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdecbdad66b7738c711db33471d510c6279a01196920c43294d8071e51192807
MD5 7cca3886173340bc75f461b756d963cf
BLAKE2b-256 0260726830c42128facdfd29694eace089ddde67ccf3edd9ee536b2a19dff7dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1444f396fc18115065c66bb6f8a523167fa3bd153423d6fea272c4b486b473cf
MD5 efddaa7ab571205281692b8fec98c584
BLAKE2b-256 36b0221b6f6d590d0bc7e1cea56f8cc9412a700948cda1593a4efd6b760714dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ca9e5388c88f907c9ef1cf588947ea00a1c60f3462fe1f213b591bbd27ceb8c1
MD5 2c661bf940f107380072d69409203e0e
BLAKE2b-256 7646307beec9d5c3a59b5cb7d5003f0fcae316877da03f59c910e4853a105a55

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for cmarkgfm-2024.1.14-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 93364f7ec9de71285f0a27552f9cfa30aa4d311d37c820daa65dc27ab211a746
MD5 43f647e382ca03c030e8650c3787f106
BLAKE2b-256 39ad86e37b36a18ba12567dcba6c4d714efba23e2fb12101fc13fe3eb6da5793

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7eff0e618704c49ab3f77680a0722aced6c99d2fe590b8f8d655fa29ed17270e
MD5 e0eac90f4555691ca9ac49e1c8890ebf
BLAKE2b-256 f37269ecdbc719e2c2c030040f22754eed511e286edd2da5bcfef83e9cbf9b32

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4ff20857ccded325e11323540d0506fc1bd9ceea9746f81f08fe3d7e52f0a6bc
MD5 ed74c6b9db21f239fa0bedecc1f4d862
BLAKE2b-256 77f1b2164053c49134e51f1e297ee13e6446df922833d7c8f44570dd80301215

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9659715d79cbc5c030d36709fe443a47b5c6dbb77bd05e5531feedbe5ad00ac5
MD5 8bd57ef3c3cc61bb54aadb1f507b537b
BLAKE2b-256 747ea6bf37cff1e05effdcec295591c5564538e1779bd8ef923053ff052022b1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 966bd27336736b2950551348b1bfc71863ea26b76b245e9966ee80cc9cde04ee
MD5 4575fbcb70e33da767cc6f33c79496c2
BLAKE2b-256 103125f407ba9c1e8c4b2b59d70158310da8a72ea5dc07508ec023b2495e8f8f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7973812317ef672c5a1c59065294c4b280aaffb7fe1071b8c661de82021d4f1b
MD5 9638dac4b6cb7013a86c6d41ca279608
BLAKE2b-256 9ec9e194aa0763f4064a257b98e0d5abd075a8c51e7207bf4f4352b93bd2efb0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 02ba52518469ce85448e99beb20b1808c51f5a6cfee12554e5e810bfe774b791
MD5 dc49609274f6c27387ab52734727bd75
BLAKE2b-256 32a67626071157bf38d041abe46144d1476338814ba01fda0b2aa91badbb6248

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c71d6b44ffdd9a03e246a35c8a2b2454eb2a319fcfe5736ff62660259f9f4683
MD5 7f2adcbe286b86a86256b2f32112897c
BLAKE2b-256 a0d3fbb9e22e1aa331e12e88641443ae7a45552958823cdd1b10b2cab8c55b39

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4808af8c8c2c0a39dca8cc27406416d8254aec635f409dc5beb5cb5ed3af564a
MD5 09f4d3ed77f164e671d0148762050954
BLAKE2b-256 a0d9c7578876d95eed28a899b2d38537c01e1c95d724b86e01a7b5a61b7e034a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a4b20a59dc14a074bae0bd04306e504512c1883b0c9b6e0e0c5b217797571363
MD5 f31f1553831e9f4fbf3bc13567bc0e94
BLAKE2b-256 24b31b388bc7dc2bc45a9c291fbc13f38ca15847ce6485fdee0be281edad820f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: cmarkgfm-2024.1.14-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 116.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.7

File hashes

Hashes for cmarkgfm-2024.1.14-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ff0bc7dbb86d1a6877b771ed715dbe0ab071872e8c6f5beb782528b70ac7eedc
MD5 e3f99fb5ddb52f122e54c4e8a5177c35
BLAKE2b-256 44eda1d310e9b330f4d24b3c132ad70d93e7bdf8b69c24bd31294debb70e1c4f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f223e606b57eebfc81e95839cf22cbe5eaec0da9ecd42326cc46568e0029188c
MD5 245d936a1a2070a623e33e719b0fdadb
BLAKE2b-256 6b71bb74812e50ed4e7b38653d89591fd4b0ac876ff53ffe7eddc689f56ff013

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 17b61950e32b6f1d6f93a28beaa5870a2b30e44ce846529ff301c986b817f036
MD5 8967dd9c0dccc3810009bf4528611672
BLAKE2b-256 50af03661e87b1eace5eba347e66d67868cbe281ff0ab25176b819b522db25dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 57545dfbd9f26fd3b07909d1bac3dacba4cb493fe872da2f4237b4c3597d7a3a
MD5 e6811be0b9861592bac710d7b3ebe587
BLAKE2b-256 4069440c92d57cb9f3cba375e5e3084b7ace079f6a45416eec0569b189d54ccd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d14d928ad46974098979358ca456a056b8df91d5e6fa6e9294bd1173dfdfa10
MD5 9e51e579d454fe06d75479b6ce455636
BLAKE2b-256 b2fb5f97abf5961b7eadab458bfa268878e9ceea45653997bfe677ccd15a6482

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f8205bed32be4226f8e344d4e4be001a57929059c3303107485dacc145df5a8
MD5 fab0104cc43c6215ce1cef1d994e63f0
BLAKE2b-256 82fb6c3ad5a812f272ca8566c18507f28430ffec1f4108075dd2359221ab50c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56d68fcf5e71879c327f0889b1127ce58e85e1ac44a624f24933430d726381f3
MD5 5a4a502f31fbbc050a1df6463bc24d1b
BLAKE2b-256 6f9e590cfe0a560b7cd7b822a1b8dda4aecf726a612400a1f8e37cf393cb26df

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e601ed6c9a44c5f86b392afef2f66711da07924825a4ff695eec9a3cfc905732
MD5 d07ffbfe313dbf5742c1636f8dc9ead4
BLAKE2b-256 6e6573c4fd80101e43c63d1529de500a332c5e9a0505cfdb26d73eb6e7cfd18f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bee28a3cc0abae18a46119ff1cde0db991f5ebe235d24c95bbaa672a63b5d695
MD5 6749791878ef74ea4aa923a93fa56765
BLAKE2b-256 13ecc0f25e353a160aca52109510044727a5ffe8bc744c1d1a525870aa8af740

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: cmarkgfm-2024.1.14-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 124.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.7

File hashes

Hashes for cmarkgfm-2024.1.14-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e51707471196d199f03aff1c5e12860d12a44e7bf29302e7bb485074f8e62ff0
MD5 8c57f6763e0ed8f0b233d633bce0990e
BLAKE2b-256 b56d5e545c769253b3569eda95b6d58ef53bc99717b274317bb59c054a9e39eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 494daf9790dd1a5440bbe3f5c70e01afbeeb3b7565d373b05b3bfa311a0ac3e3
MD5 016b9c1d7ac6eba2d6c9dbddebbb6bf8
BLAKE2b-256 2d58b54a86afc60a8723577aa561efe7f6f8355ac2ba50941557c3432ed42fd7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2bc2dc101dd6b27aaa264f4c3e8eb444b850b06c60dc4cd278ea743fb085c35b
MD5 d7a54402bd9d79ad5fa74a2ab5ea4c2f
BLAKE2b-256 18339ee989a99849d3cd8f55bfde2e7765246ecf4ed7d74665fdc3af37712da2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 283de0cf88c784f71e8416cf40fffc133d6ffd9686dbf094c4b5c522e1283343
MD5 c66fd473127e739e3efbe395756638c3
BLAKE2b-256 047dd208a165912cb572a9c1871238608f3d8f5c5d7afcd3eaf634282c17f0a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 890a235fc0cf5c821ed4dd81a5405a526e9cc616761345aee54840a575b7f969
MD5 ad38c2e27e7201b5bf8adbd91868f598
BLAKE2b-256 07008c51757d95120c87a65184e5c7f3aa13c5454028195d6ef169582b77a94d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc6fb79ef6f93dd497fd2b85be032636bb955a762c42f52ed65fefe32525fc2b
MD5 26800c5afa811639616511ad1ca95657
BLAKE2b-256 e98ee0b8f0685973fd5b79f04fb23eb1468378bfe16c81b3980c1d74a10dd541

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5aa2e85a1e0f3929015d5fe023bd3664d8c744d3f898bdd05df99ed905782376
MD5 691d4547fe9618bb2a3661262c142009
BLAKE2b-256 7b7ab01eefec5dbeca39b248f0ca6f61333f4e43296c8e1cb77a314d9e162195

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for cmarkgfm-2024.1.14-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3340c8867ee9a3d2590eb020f22cdc4e101d3d4d9f4a8cc95964f45666ed58f0
MD5 5bf4f46a2a4b67ccdda3b4f8ab082096
BLAKE2b-256 8858a9dbbe8e0ac1278633f24ea892751aeb80670e59a2324fbaa0d0b2220dbe

See more details on using hashes here.

Provenance

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