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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

cmarkgfm-0.5.1-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.1-cp38-cp38-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

cmarkgfm-0.5.1-cp38-cp38-manylinux2010_i686.whl (415.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

cmarkgfm-0.5.1-cp38-cp38-manylinux1_i686.whl (415.5 kB view details)

Uploaded CPython 3.8

cmarkgfm-0.5.1-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.1-cp37-cp37m-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

cmarkgfm-0.5.1-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.1-cp36-cp36m-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

cmarkgfm-0.5.1-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.1-cp35-cp35m-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

cmarkgfm-0.5.1-cp35-cp35m-manylinux2010_i686.whl (415.2 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

cmarkgfm-0.5.1-cp35-cp35m-manylinux1_i686.whl (415.2 kB view details)

Uploaded CPython 3.5m

cmarkgfm-0.5.1-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.1-cp27-cp27mu-manylinux2010_x86_64.whl (449.3 kB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

cmarkgfm-0.5.1-cp27-cp27mu-manylinux1_x86_64.whl (449.3 kB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

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

cmarkgfm-0.5.1-cp27-cp27m-manylinux2010_i686.whl (417.7 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

cmarkgfm-0.5.1-cp27-cp27m-manylinux1_i686.whl (417.7 kB view details)

Uploaded CPython 2.7m

cmarkgfm-0.5.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for cmarkgfm-0.5.1.tar.gz
Algorithm Hash digest
SHA256 bbcc5b8b69d70044937e80b01b75fbd2d9ea8433c80af68b9671f8c9e9691c0b
MD5 b569b247ea4a0f419fa08cfedbbfd11b
BLAKE2b-256 7701aa4a0d212f2f0371009f04dfd5e21bc987cadc8ff512a8291d91057db1ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ec5d47247af8a42ad141cd432f57b9953ef9802e9a78a0b85f92a5204cf33e10
MD5 94444f8eba5235251ca0ab177bd3b661
BLAKE2b-256 271bfaf82b9ebfde9aac694cc7a93c0414cbf3bb522315505c620a22ca23644d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6f801a12099e9ce14a21a30d03a6c7e04a421ae2746d802a2bf7bf6e0bf3b71d
MD5 a1bb0d1745cea71654c5e4d0f809167d
BLAKE2b-256 955cca336dd9994b1c8701bba17381bc1856e734d1370803b96704a111e0bd61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 980fbc72db041c74ccacc9da7b389ff298ade76195ed3fe7d99dd7fe803ff627
MD5 1df3a002360c06925fcd2928ff9a4c30
BLAKE2b-256 c44a0de9d3835c0f4e1a0a1a5dfc82a4499a1d073ebce4d547d4ed59d978d7de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3100dd578d4d3e9683e6c2525ee39ca7897f3416c290ebaf7a8ad5cf3081f7ec
MD5 f5ff8bcd05047ac76ebd246f46f3d7e7
BLAKE2b-256 b9e953c355cf19385552f3f6b2ec5f046ae66fcd9b7a4ada19f6e2b18ae1d72c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2ae39a4329be06e16f0df0a9876c751d5d547d701b658947300aceffad840d05
MD5 5ae6634c5b4cea04861f4bdfa91d97a6
BLAKE2b-256 23562f7415d046f0bdb9dc73c658cc7547222c9dd4b33c90939dde2f1fcc9b3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c2b1c4805bf2bfe9e665702de33e026c3efcbda36cd97f5ce4b2634528fdfcd8
MD5 3b6f70fa531b75ee06302b68f7192236
BLAKE2b-256 4f3fd71e3665b8452138baaf6fab6e3c1cb769e18605680a9e5123358dcdd2b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66af190398a97e04ddf47b83f2e050d9555a8ade5f1b5cfb25989077ddf281f3
MD5 bd0dbcae8364a01b9bd48de1016ae05c
BLAKE2b-256 aff91cad5d3a0afa98f3c768ba2097020f1d83e64776d823ecc91dc95bb73ddd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 acfbd1c78a102fd4655498a1492e130fde125a37726264754d8679d0873b753d
MD5 c5fd2cb1360727c0ab9b3f7929166280
BLAKE2b-256 902e85ef69475a40cf37afe4dd078bf495417027a6b7b8009ccc279ae696c336

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 36bc61dd6840544dd08b27f943a54e6c7150bdaf7db5cf0127b6afa9f065939b
MD5 cea35824dfeddf53316aa0228657c619
BLAKE2b-256 1597bf1881c42728f517b23728c452e39d1eb2fb7658e8e99416a30db6f1ee30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 570b68bcf842805de18d3aefc6c7e58199318c62cbe19cc1aea86bc97f65bb99
MD5 8d7c2b978567e2961d180fa927e0633c
BLAKE2b-256 ad788d28826e660d2dd07cd2a5baf1bdcfb5e1bb5e1ca825fd835bf857f8ccce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 415.5 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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 048243f3b5d82f8734f1654a33a630b6156dd24600b75f8fc32f152f0f05e5ff
MD5 1d0ebd2bc03166d12e49eddc79d78bcc
BLAKE2b-256 30368318ce6fe1c542b9ad0ccf4b067bb8bbe9639c0e11160a0c17866306d85b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6e17be26be9d36f6005f424282b92a383afe616412263c755f9f80a428048561
MD5 d71a4f17a503534c37f430881e45f4d4
BLAKE2b-256 80f49dcf5caaaea60954dd22a0779f4b1c2d7ad8cdddfc3333f572675c3f47b7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cmarkgfm-0.5.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 55d20b8f90f41998b3fca8ed96d4c381b8cf2ef9d6885c8eb819bfcc913816bc
MD5 c9505c4f4c4f18c45a48696bee9958ff
BLAKE2b-256 43ee67ae6386a46fc7604f382b5b31bd0f15282a28be14629f9233a080d75f8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 133e399639f8e842e48e44ea3727acd29e7e2e6efdf6f56e54d39ef1ab4142a9
MD5 321b91b653d2c9bc6afc973bbe354825
BLAKE2b-256 8ebd78145e3d48ea2efe9829b58be09122167ada48fa677a5fb6288f18e542de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 98d2e9aa8d7f193972eb33dc5cb9a3496a520983555942e9aa853a25eb6040e3
MD5 cb0dbe7664eae3587bef2f961f85beee
BLAKE2b-256 5e1125ade4b1a297f2783860a71d10151ce030c1891f6952e40479d8450911b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e1bd3991c6cb08c85c727599a116f28c5f94849204b5fa248c2b5c540ae4d8d7
MD5 a9fe549d6fe806b189ebfa07cb71ea3b
BLAKE2b-256 1f77984b77fa8441c23033c6dcf63d9a3d5679ae6f49f879688622a8beb15761

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e2d248944267487c3a365e82b8cf7db17e96a8c42dd4867eb0d5efd6e690739c
MD5 9e6b706fe69da5f25f8dd02d0bd67ad8
BLAKE2b-256 a167d2af64925809736547e855d97af528e4b40ad027ab91310b3ba2a08d4a2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aaec3b2d3727c034f29370d706c96286c3140150edb95fa13f29de3c9c86042c
MD5 2f2c82d785a77c11100b2f23007e3e5f
BLAKE2b-256 9cea54b01e399b54fc4fccdf6e5766a9070003ae1a319b08cb0d631d085c98e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 12e0351ec5427f812010602b0ee3047cee0b6228abd2de071a741270c3670f56
MD5 48d7858db74a611989b483c04c8a861a
BLAKE2b-256 a4eb21bdd11437c7336fea4f0194ab191124587a13c84eb4db4f962f94c30315

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 162c356d6a2a7a687183e00c77d4bd27d4d1b113c901fe6fd459649a4a95c3af
MD5 88c3af7495641bf722077a5b88ad71f2
BLAKE2b-256 b4982797d9086f5dd31ed66a061bbc18013afea1f8e1fa04c035f0a13c42f634

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b70592c7804fe89fa1f9bb881dab18896982cfb66ea1ffbd232947a81ed40e02
MD5 bc4cefd8dd56307c619bc59559d6dd10
BLAKE2b-256 88661bbe5cee2d4e9c14362380897502eac6c5960b8a6c1f767d7fa9550b2e88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 222aa9707ac073f65ae2cd3149a82bbd1b556c763d0c00852d0b1dbece55f0e1
MD5 81a223ef2c0d469d346536e64f6bff7a
BLAKE2b-256 2b64a5ffa09a5aa54ac4daf4d859a88edc4d291bc932345abe6881a03da3263b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0f6a3e1c812cd1934cb3afabad1ef37fb863025ade6bf3cb1d9cfe35f5365a71
MD5 085b9771b45b40f20e60c7fcdc3ba41e
BLAKE2b-256 6fd05520444256ea91738597378fecea2aab259b3cba6703ffd909013eb7d4c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4f6e5c2edb7af1e957312ec6f0e38a2665e9a3d4e5b01f26855acde91b8260a2
MD5 32e3d055d15f5a1c622ccf816e65d522
BLAKE2b-256 5929f165b5dd8d88d81c7b4e2796f08d0031462eadaa32036e42aaac9201b3b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b07b078942651ccf36c5701c794b58be2cd7a3adb40ed1f54b341ca0c0cfa457
MD5 4b6b82cc8304b164205b26c065ea1ff2
BLAKE2b-256 bc96c936bd21ea4e0830eab9d5aeff6bf8c8db6dd8ab88945015b0dd178a675f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 69a9c38fc2b3b6aa91ef61e34c2cf267d7b240c75585ab133553cf533c2e1e58
MD5 5a79ad798fe2cb426dda8943fcd26ac2
BLAKE2b-256 ad0648d4233bef13825c12a84f1fd3a473b82bd62aa6937b7e9988f412a7450c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d2e2135da34ea8da371cefa3e6a28aa4e8657cf0188932780fe149c4fbc78163
MD5 39a6b0becf481559f5156424b3aae3a3
BLAKE2b-256 88b663b600ba4ad0328db775e621d41facbd56454c205b202ecd4d64b71c862b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 babc64482a5d5587d4da8be5fa227ca2b62d98f7df088013733daf55835293b8
MD5 8cc925999f307b668fb7e9e7b060b116
BLAKE2b-256 12facc3a5acd9f355b00ebfd82ca3e143be6109d22fa35c00aa13b6cd0c7e67c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c0cb4ce67017353711586fe121e54d68c78916e24240caa5cf5aa6cdd2172c76
MD5 c6cd4f2b28e2aa9878d0542a936394f7
BLAKE2b-256 28bc6e9567a48dc9c9270b07420c83ede827bef4761cdb2ab8f2ab5a6a8f68b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a78e421e152a91062925c8ffa6a6c7950854a4c929a3af87dd6c1b8122d1c9d1
MD5 70ac7e0995915384861b611a3a8555fc
BLAKE2b-256 7b40475b7b6575c340ca547feb53dda9fb788675776ad34cbb47f4bcfe382836

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5fdf82de47fe2eb137044edca4cc1b8555aa1e1d0fc27b0668e6e5bd2cf72271
MD5 a68995c4917e483dd6667f808de35803
BLAKE2b-256 5f21d46744177ac5ca961332dea8db60b72a07e568616827d642243b7f5be65f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 415.2 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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ca9e2f26bda7711ecfc7b7f460f1aebb87d7052ee0d280880ecff858c6d9519f
MD5 422196c80e5ba7d1c4fb1dace10753c6
BLAKE2b-256 6c1cd0aa6ca52aea9d4470f8ef3efa00186aedd90312fbd2ab1948bb1d985639

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fd6b75cbce185575295a2c0fa9e558746a2a2f07a54713e4167b6a69e005a362
MD5 f1d6a392c698c283f659d8f97a9be710
BLAKE2b-256 9a0fb3be4ecc4fc20bfa1cf09b16cbda8adf81e725297d884731e44851d8642e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cmarkgfm-0.5.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed55499e814c94584691c2864b76c0bbab9e23f5c9f8b1dfa7b314119139f49c
MD5 22e8f14a17be41a20a4850ae0e528778
BLAKE2b-256 3edcd43262ac19cde5354c66f29ec0da9be180c85f5f48b721accc860fe5899e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 046269e18448a361b722d27536c8f5ab855a0b4733f18d120eebd7dff93c9e37
MD5 e8023e5daf602b264b1fc904748734d7
BLAKE2b-256 caa8c8c6d3529a3820a66b3fa631634f61af440ae76256cf5e83f4041b531832

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 449.3 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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eaeb9b0d59aaa5ca390798b4fb6150291dfec7ea3c8bc6fde731f13d39dc60ce
MD5 c1250dc1564b7b6605ba0d548b0d0936
BLAKE2b-256 8a8b3cb3bcf2b6638224921d091981b4cfcf265c2d3c16d543fc4089c8853c31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 00032c5f4be8e5b74c59fb692a7e67b30c1a21a61311e26cbac1998e6b481cdc
MD5 f21576a3e2b4b52aa77dc56652d226ff
BLAKE2b-256 5c138ad252dcf2c4bcc03b3910cdae2e64f1ef47698f904bed2c8a2428aefca8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cmarkgfm-0.5.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1b8822414d6ecadfa36dddadea959ae7db4990badbdc5e16634fe4cde3a3970d
MD5 b1e6d333dc7abc248adc4dea4c1a9a18
BLAKE2b-256 37c5fc900dda4ce67804fdeec7e4f1c7319157d572adbe9f333afd20ec65fc3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b770365e48d94183eb10870ae9effe50aa904c7201e1e5fe91310a41f109b4e
MD5 35e95d1853502fc8c5984f0d74d1feec
BLAKE2b-256 01eddd030733e925078865a6e7637cca29ada6df3943fb176cbaadafe09a177b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d0f52cd96556b32730f06406a9cacf13eede979f78755fd637cabf4a19c5e979
MD5 e7a395a6b71cf5808dcd2b08c1009e19
BLAKE2b-256 9f09662426ff60e736f206ef5978ad5703c13d94516f8296fd7d9b8bd859fe84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 417.7 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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 96bd50d9382f0f40b2905245e2e09f09c27f2a91023038bbe08abf16ef6330e4
MD5 a3ef2216c0bad3fcb1cd69b043f09641
BLAKE2b-256 4120f2bb5e1fea2b10fa0d7ccba4d079c51b1a02fa12edeeba3a9ae9bc5e8b3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9bc1c0a1c9d768d01e9cbb2cb7fdd2a28250b5a2e1417efe2211fec611796735
MD5 1c4da8e9c0135c091181946afc832a73
BLAKE2b-256 554ddb3fb51f82ad294bce91248a0416dbf0c970cbcd5ca1eea46ab7982cc4d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cmarkgfm-0.5.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed39b81f8e281933461e50b2d8b12935b33db770507d2fa4e0b63625e8bf6b92
MD5 62035b8dd253daf8b8396ed7e7554fea
BLAKE2b-256 99b867ad511378908e4e80fa109f093a0d7005a80931e20e3cf1098a6abfd1cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cmarkgfm-0.5.1-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.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for cmarkgfm-0.5.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1d12dc81fbdca1117ea2d5b783f1ea22577529bf313abdd4022b4082a66746f
MD5 165ec28b803ece53242b5103dbc0806f
BLAKE2b-256 b9e1d559b0227e2112a628754ba2dce6f9173d2d13b04db3d80092e9d0fd5322

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