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 2.7*, 3.5, 3.6, 3.7, 3.8 and 3.9.

* Python 2.7 is not supported on Windows. A PR to build wheels would be welcome.

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

Safe rendering

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:

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.

In version 0.4.0 and earlier, the default behavior is unsafe, as described above. In later versions, the default behavior is safe, and to render potentially unsafe HTML pass the CMARK_OPT_UNSAFE option.

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

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

The options are:

Option

Effect

CMARK_OPT_SAFE (≤0.4.0)

Prevents rendering unsafe HTML and links.

CMARK_OPT_UNSAFE (>0.4.0)

Allows 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

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

Uploaded Source

Built Distributions

cmarkgfm-0.5.2-cp39-cp39-win_amd64.whl (132.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

cmarkgfm-0.5.2-cp39-cp39-win32.whl (118.5 kB view details)

Uploaded CPython 3.9 Windows x86

cmarkgfm-0.5.2-cp39-cp39-manylinux2010_x86_64.whl (446.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

cmarkgfm-0.5.2-cp39-cp39-manylinux2010_i686.whl (414.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

cmarkgfm-0.5.2-cp39-cp39-manylinux1_x86_64.whl (446.1 kB view details)

Uploaded CPython 3.9

cmarkgfm-0.5.2-cp39-cp39-manylinux1_i686.whl (414.9 kB view details)

Uploaded CPython 3.9

cmarkgfm-0.5.2-cp39-cp39-macosx_10_9_x86_64.whl (122.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

cmarkgfm-0.5.2-cp38-cp38-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

cmarkgfm-0.5.2-cp38-cp38-win32.whl (119.0 kB view details)

Uploaded CPython 3.8 Windows x86

cmarkgfm-0.5.2-cp38-cp38-manylinux2010_x86_64.whl (446.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

cmarkgfm-0.5.2-cp38-cp38-manylinux2010_i686.whl (415.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

cmarkgfm-0.5.2-cp38-cp38-manylinux1_x86_64.whl (446.3 kB view details)

Uploaded CPython 3.8

cmarkgfm-0.5.2-cp38-cp38-manylinux1_i686.whl (415.6 kB view details)

Uploaded CPython 3.8

cmarkgfm-0.5.2-cp38-cp38-macosx_10_9_x86_64.whl (122.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

cmarkgfm-0.5.2-cp37-cp37m-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

cmarkgfm-0.5.2-cp37-cp37m-win32.whl (118.9 kB view details)

Uploaded CPython 3.7m Windows x86

cmarkgfm-0.5.2-cp37-cp37m-manylinux2010_x86_64.whl (445.9 kB view details)

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

cmarkgfm-0.5.2-cp37-cp37m-manylinux2010_i686.whl (414.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

cmarkgfm-0.5.2-cp37-cp37m-manylinux1_x86_64.whl (445.9 kB view details)

Uploaded CPython 3.7m

cmarkgfm-0.5.2-cp37-cp37m-manylinux1_i686.whl (414.8 kB view details)

Uploaded CPython 3.7m

cmarkgfm-0.5.2-cp37-cp37m-macosx_10_9_x86_64.whl (122.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

cmarkgfm-0.5.2-cp36-cp36m-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

cmarkgfm-0.5.2-cp36-cp36m-win32.whl (118.9 kB view details)

Uploaded CPython 3.6m Windows x86

cmarkgfm-0.5.2-cp36-cp36m-manylinux2010_x86_64.whl (445.9 kB view details)

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

cmarkgfm-0.5.2-cp36-cp36m-manylinux2010_i686.whl (414.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

cmarkgfm-0.5.2-cp36-cp36m-manylinux1_x86_64.whl (445.9 kB view details)

Uploaded CPython 3.6m

cmarkgfm-0.5.2-cp36-cp36m-manylinux1_i686.whl (414.8 kB view details)

Uploaded CPython 3.6m

cmarkgfm-0.5.2-cp36-cp36m-macosx_10_9_x86_64.whl (122.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

cmarkgfm-0.5.2-cp35-cp35m-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

cmarkgfm-0.5.2-cp35-cp35m-win32.whl (118.9 kB view details)

Uploaded CPython 3.5m Windows x86

cmarkgfm-0.5.2-cp35-cp35m-manylinux2010_x86_64.whl (446.1 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

cmarkgfm-0.5.2-cp35-cp35m-manylinux2010_i686.whl (415.3 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

cmarkgfm-0.5.2-cp35-cp35m-manylinux1_x86_64.whl (446.1 kB view details)

Uploaded CPython 3.5m

cmarkgfm-0.5.2-cp35-cp35m-manylinux1_i686.whl (415.3 kB view details)

Uploaded CPython 3.5m

cmarkgfm-0.5.2-cp35-cp35m-macosx_10_9_x86_64.whl (122.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

cmarkgfm-0.5.2-cp27-cp27mu-manylinux2010_x86_64.whl (449.4 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

cmarkgfm-0.5.2-cp27-cp27mu-manylinux2010_i686.whl (417.8 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

cmarkgfm-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl (449.4 kB view details)

Uploaded CPython 2.7mu

cmarkgfm-0.5.2-cp27-cp27mu-manylinux1_i686.whl (417.8 kB view details)

Uploaded CPython 2.7mu

cmarkgfm-0.5.2-cp27-cp27m-manylinux2010_x86_64.whl (449.4 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

cmarkgfm-0.5.2-cp27-cp27m-manylinux2010_i686.whl (417.8 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

cmarkgfm-0.5.2-cp27-cp27m-manylinux1_x86_64.whl (449.4 kB view details)

Uploaded CPython 2.7m

cmarkgfm-0.5.2-cp27-cp27m-manylinux1_i686.whl (417.8 kB view details)

Uploaded CPython 2.7m

cmarkgfm-0.5.2-cp27-cp27m-macosx_10_9_x86_64.whl (122.4 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2.tar.gz
  • Upload date:
  • Size: 134.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2.tar.gz
Algorithm Hash digest
SHA256 e7d65b90645faa55c28886d01f658235af08b4c4edbf9d959518a17007dd20b4
MD5 3da5f531f107b7670183e6542f8438a4
BLAKE2b-256 215d86d7959a7c9eaf70653d0e72cf7e00e604aa2b3bdbbfcfec365ab0002deb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 132.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 98174a8712c7d220e387de761831477d937b629661227b5a3f838db4018a5655
MD5 f3d4352cece33b2e4f21acf46ace3562
BLAKE2b-256 0fcbfd9d1c499e203fada86aeaee25070de02c3fe523afe02cb30d46231a5ab4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 118.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c0619ff11add2de5ea56831652d5844c3ec7db51a3462ff6d6f238914013b68f
MD5 5b12e5b1ebc7c3f7c3814a2507aca9ed
BLAKE2b-256 87758d753a36033c6551ad724d3563d188b406fdbe20464f7a1fe4b3651bd127

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 446.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1483b95a4734c4f3bcc5f19359df6e688feaf20205d2adfbeedb70d3f5eb4e5f
MD5 6f646d935bcfd5c78f270c204751f56a
BLAKE2b-256 96c45fb4eb9bc2ebcf0cc54d01fabac7342f89090db4ee8e5878f8442de6d4c1

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 414.9 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ba2d85bc6a6d825de1e98d6bd46328571e8c9806807228b42810d94addd2e1fb
MD5 4cbf338477f0b7eadc415522d105545a
BLAKE2b-256 87a3a33e043cdc3001538c4f83be54e25d22ad0de0d414f585387927a7d51299

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 446.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f44b41ede4fd3f03c944cbb8fa978296023705189de5517eada2283473affe91
MD5 a3d2fa7b45c59cb58959ddfc8dee3d02
BLAKE2b-256 d0591daac5a38f016924eb7a04725558995e8da948d254ee0af15c018085d7c1

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 414.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 582083706640f872b699cb2f2cf92d31bc7c458f3bafa3f94e35fbb31ce878b2
MD5 86a237b37a75df325ef1ad4deaec2b97
BLAKE2b-256 0ccbc290b5937314e9e9ba69788ed1b80673c6f301fe69fa72595dbc9019a750

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 122.7 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a47e59955a4a55ce6347fba0103ec616c73d9eff0c4516c736b5d49391745dd2
MD5 0cd5a36d8a049cb1cbe8304c08b66488
BLAKE2b-256 9dc05f1a132643c75969f048740e3e98422e7ad4e24b5b912a12276d444bd59a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 133.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 362f0d76a970b09159b82f4314a7ae642cf3cb3f63637769bbc403857c8d8053
MD5 6de4679d8da6f62e65e0db5736158759
BLAKE2b-256 886c1e8e9f2be0a48805720dd833811b31a50b52c6fb02357a47cb5eec7ed8c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 119.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4548a0f0a0c9fe93cf043984b36a68f15397d56e1ce7f3f48a6c441a596a3a1a
MD5 fa1038065f30fbbde0ff6eb0df7944b2
BLAKE2b-256 6a77a42bc4a4e6b975ee0bbd937109fea8e68f38fa1f70f7f059eab1a6ea3c8a

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 446.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 edd9a325979187ad4eb1dd588dbcededd91e7fd3a0c70c3883e920d114f19857
MD5 4aa7c59ffab8ffa9eea234bb331fe18c
BLAKE2b-256 740a0437256595237aa6c4bb5faae09f0a0bf19813cbff4dfc6162b11fec48d8

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 415.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b337abc6795861acd72a56c458ac55ffc5f54cf55379fe4593b0f7b0e96d4f50
MD5 80edf0d586b0254b014b81c2b3d321c9
BLAKE2b-256 48d7d977b9a407ce49c73745b1512a848ea989cec349a63963671ce26e55e3b0

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 446.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 29e250b14e8b165b92a9b2c975b24a0c382ba2e7d314eb9fa2dc1eff3b1b9623
MD5 7b7587e41d85aa7c51611e5c4586c037
BLAKE2b-256 976b515c35eb4cb61d6c938e02b58258228e02bd3e45c406f054c72351f57dbd

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 415.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 16f976a774a8d3f40d0018f19aca00026c1a3dba2512df51fe4169d691077989
MD5 15857758d89045c4fbc559429af00dab
BLAKE2b-256 330b9a45e5fdc40af1892d4c1dd797f302680e29bcdb030c861ff4c37e97aad1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 122.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 970a29a2bc1b276da195183a40145352afeba43f1775575cb3b4b340d3aec1a4
MD5 a74f3c858f0f91c08f77b423723e43d0
BLAKE2b-256 2b750bb9cfe674d2367f253207cf33f14250b765113aff972285027f786fcc16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 133.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 793f557461e7fcf70ef3bcbcccc808bb76e0b3fcb5434a239d0f32f3f096b91d
MD5 7a8f207473111a7a5932980c4dbeb2b4
BLAKE2b-256 3dfbb21cff74cdc284229ba83bb3c700c08fef9c37c074b1070de77f6d86e562

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 118.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d525d794a6adef9ec1b0fee222ea90cee3f546cfd54ac87e2ab5ee8b2c7d3e3e
MD5 d98fa8ff9dbc9f7a1cf0cea1687e1b5e
BLAKE2b-256 b07858e154d3e2bc1d21d840c5cdb0e12b4336ab230beb10dc569e28304b1144

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 445.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ee18dbcb98717893b066b30a16c721fd8c5523e8a0b08dc5907da0998d74b8ba
MD5 29299c9acbeeee68740d78adb96d6404
BLAKE2b-256 d1e2afff165c2bc68cc3530dc4b1a680a6a7bbd91c77d9bc0532a9a85c73c175

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 414.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18827ec3be3c2928e979b639de544a0e6ac123e1ee9afb386a46e713d90b1edf
MD5 ec9c6d04275df3d173491d9ec3f35263
BLAKE2b-256 06ebb3c4978afdc798be7afb71c170e4e205beb032cf8b2178a46da3cdbc4982

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 445.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3c10f71caab9149e898de0e34fced8784e8a5cecca672572d65ab82c52aef11a
MD5 4793c7a47fed6b9a78536dd81fa8d7cb
BLAKE2b-256 cf8c5c2745a90b220358886e7787252dc36fa1f1c8f993f5182f53b263d6cda4

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 414.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e8225c648a692de7e8a74418144355ca32020b2b22d92ff6c944c34c293be2b
MD5 ed4b5dd8a3fe6a776ff576447910de21
BLAKE2b-256 f4489d009e50c2dac6e30f2034835fb327de2ffbe20af17a8ea54d44db67f260

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 122.8 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1ffd34bb1a88b0a8a78521746efa56b3180b40a52183093ba5defa7b7bdb1d0
MD5 babb8f232817dff47d1a838b35edbb91
BLAKE2b-256 e345de44f7b127db857a9508ab950e89e571f0a1acc2f6ccd5e33be6e9d09588

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 133.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 715e81ff90cafad675bd32873cb0f6784a5216863f0de44024f1750ea36899eb
MD5 b853389cc193ad6d534989baa4066d02
BLAKE2b-256 56f184b311b7ee89ec6c41a99445d6f404c64245b6e200b2f8c7d7537fa6268a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 118.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 16f86eaedc75b2f916aab991dfdedc7721203d7417a9af55bb06ebe39d8f6c67
MD5 f6bbb3a4d12dd87597a0be33bd802476
BLAKE2b-256 49d263e48467c1dcc90fceda41b7292b98b8597177f65e884075aa86acb1cd07

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 445.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 46c48cb597ad6440dcae720eb3a860e7db54b1f8cb95b5c2f35830aec894272f
MD5 c5ef574e0e45d63d20337fed8a4cf00b
BLAKE2b-256 9edab38f71f80aab0258060762421e911753964d60264d48cd3159f9b488fe50

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 414.8 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2653edac4a655923ce8423f4c55842553ec7c3a72f17eabe9318345a0a16e8b9
MD5 485f9768c012620e226835515d689b84
BLAKE2b-256 9c2850e4ab654e9f00e8670affc08a07311457d882bdacfc9bf0c135814a03d3

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 445.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e4a3713df36186c5956576dbf2d4477ffb9abe0fa89df5975b38dd1a104f6d9f
MD5 04c8a688c3904d680ed5c45ed31373ee
BLAKE2b-256 08e4c79d953075ba09ab7a7f7eb1928233eccbcd16e12c1fe83b92bd7ace7e95

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 414.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2cd302638bde430ebfb6b6a66580e5005d5d5d3566de6ec0716958ba40dffae
MD5 3abb75f4e28b575db382e7ce0416620a
BLAKE2b-256 97785571af92e000e3c0f8c4c7989e4d67914963abff7992b0bb32ce6a2f4917

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 122.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88586e29fcf5f4aa90d93ac617983d328ac8745044aa174658b613039500fba1
MD5 d55543446b06c204ef0c05caf4543704
BLAKE2b-256 5a10f874d7d3cc791bd2bf88d702469d3b0ec98fa206adf8777b80252375f264

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 133.3 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 9f5ce932a174d5ccc73aa378e48edde887bf4c4e2faa98c18f194cf3d005c0dc
MD5 aba8059d0fdd485743f9b486f5b25ce9
BLAKE2b-256 2394725fd8917fc432a840146c89768e20bd4950dc3f1d1319c025bb05760bb1

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 118.9 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f0c0b53b4989fc552e12bc479f264b75983ffef8dae3346ff5ce4c94ad8e3503
MD5 7702e3d4028f9b8306de0fe94abd338e
BLAKE2b-256 0ee76f514d7f049d86df698e8a4bf146dbae1bc8744ce822a0cdd7b1e60c6902

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 446.1 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bcfa161d642ea3989ab4d79efc7297d376b85e866be0336307bd77b09e143c40
MD5 810a59e614881e2f662ff3f1de060b31
BLAKE2b-256 0053fc6f94d3421f898f704b598e9312831ac35c906c1a3f52fa3c0cef3a46c9

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 415.3 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 09a2ed8e31a333c936fdfc8e2d7ebfee87db8ff930f60128a96dc139a502a90a
MD5 ed6eb7267a93521d6fca60c59236b374
BLAKE2b-256 1a57cc6c3d337ff1f494df5ec5e6d442e6b81a5148be85245b9818acd7a95b65

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 446.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a87859abc1877d3ffbac9db7d36a8c6a7cf957e4fc5c1a396384cd29c83e26ff
MD5 4c537e1ca7b36909c8cb27627b3eab33
BLAKE2b-256 06205ddc506d7044e419a253d2109bd5c0653f09682aef8b409573d878db263c

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 415.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b46a64bfb8668cf1dbd850ab688d703e27aa402c037255d0a7ac2aa9b24cbb1f
MD5 7319b27c2d5c845b15c1c355e85867f0
BLAKE2b-256 7f4f51aa5ff3fc5b3e29f11334af40c62da528de2c8912d9eb7d0c9643833975

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 122.5 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f2819bfe0670997964065494355ef427c4b17069a04fc6aee217b1d0eab6d14
MD5 57800c1c03bbb96c5e4a9cbfd7729fd1
BLAKE2b-256 1024097d88666a360f36951a891c772d744e1abe6d194218926c3c6dfe209be6

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 449.4 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f0889ce9d4fa78b0484b5c401262de79a4fffc5ad34f82759023860369fe805f
MD5 8f9dc2c3745e9b777bf242cc579d9bf6
BLAKE2b-256 151b5c0ffe73eabf0385744cda596c2e0ce7d1d3923a1bb6b2e87fa63f826985

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 417.8 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 51875d8df7b1a884fad1505f42a66bdc433e30d03e387de1c8e72dc020f262d5
MD5 36ecefa370b3a37144bb9e505318a10f
BLAKE2b-256 3411f0c929a87dc17046dd8918a91cf1cf1121ef2ababfa2965ad6536cf754a1

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 449.4 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 10541c46fd5d4dfae716b4e46706bd8657e52b5964fc1e429a63a800490ab976
MD5 a7c9d793a7b950c037b018822c53f0f3
BLAKE2b-256 20fad9b01457ae7220fe966390c22fc991b7b99e45b82f438e443255e2501209

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 417.8 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 61d36dc8c1135b88bb0a6e2ffcbde82db19f19e5405d109284216d1fd66162f3
MD5 b38cb0303e81c558ca8ef5dcb62ab738
BLAKE2b-256 095c36ce376eb0bcfbe2860bb857f631a29db0dac2158c0e7b88b13e8e5490f4

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 449.4 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6d97c724c36e4abffbabea39759c7b84e36b180a372bff8b845f6af6cb79d8d7
MD5 f0fce4b0e9e6f0b314d92c0276904447
BLAKE2b-256 55afc008d9fa8328471cdeb057e70785fd8622cb38fde0b6ac0a0cbeb55e4156

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 417.8 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 30a5a0c8ee861ad6470bbc79a6f7d216b387196997e96e63eb1097cf106633e2
MD5 548955147505a1da30cc458c570d7051
BLAKE2b-256 e3eb02883653483f98af76defde9154f541e15705f83ba415b6b77aaf3ab263a

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 449.4 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1a45651f8fb0cfcb20af24444413d7bb675aa57fe8bb8e842edb2e476b6a5c1b
MD5 0ee1726ab4908652b979dacd48f7c295
BLAKE2b-256 319981b8bb391c703a5314c0cdd6f3fd47db9c1a8d88c33c723d687cf47a5d82

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 417.8 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f44169a0cbe0cf66b76527d75ead5dcae49db340dfa6a9048d535f78eb375fa
MD5 6940b3309497b05e8c23f0ca2794ca43
BLAKE2b-256 3effba7ba3b39e532718ebac93cb0405c46be085638dd5d70b04dc40268efaf3

See more details on using hashes here.

File details

Details for the file cmarkgfm-0.5.2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: cmarkgfm-0.5.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 122.4 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3558a38f05702b19eabeab497516ab45f8423a319207db918cbfe631a84cbcd
MD5 0c043c6aa25d2f036c5fea63f0a6a067
BLAKE2b-256 849ea4b3511bcd99ec7bc310f3373411901c809be9da24984e33c3cc888d1de4

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