Skip to main content

pycmarkgfm

Lightweight Python bindings to GitHub Flavored Markdown (GFM) library, cmark-gfm, with enhanced support for task lists.

Features

  • By design, rendering is compliant with GitHub's, since this package wraps GitHub's own C parser and serializer.
  • As opposed to most cmark-gfm bindings out there, this package supports parsing and toggling task lists.
  • Compatibility: with Python 3.7 & newer, on Linux, MacOS and Windows.

Installation

This packages is available on PyPi along with precompiled wheels for most architectures.

$ pip install pycmarkgfm

Usage

import pycmarkgfm

# CommonMark (not GitHub flavored):
html = pycmarkgfm.markdown_to_html("Hello *world*")

# GitHub flavored Markdown:
html = pycmarkgfm.gfm_to_html("Hello ~world~")

Options

cmark and cmark-gfm come with a bunch of customization options (also known as flags) which are made available through the pycmarkgfm.options module. To use one or multiple options, use the options= argument with a mask (bitwise-or combination) of pycmarkgfm.options. Each option is documented.

text = "hello\n<img src='doge.png'>"

print(pycmarkgfm.markdown_to_html(text))
# <p>hello
# <!-- raw HTML omitted --></p>

from pycmarkgfm import options
print(pycmarkgfm.markdown_to_html(text, options=options.unsafe | options.hardbreaks))
# <p>hello<br />
# <img src='doge.png'></p>

Dealing with task lists

One of the distinctive features of this package is support for task lists. You can get the list of tasks with their checked state, and update that state before rendering:

import pycmarkgfm

md = """
- [ ] eggs
- [x] milk
"""

with pycmarkgfm.parse_gfm(md) as document: 
    eggs, milk = document.get_tasks()
    assert not eggs.checked
    assert milk.checked

    # Toggle! 
    eggs.checked = True
    print(document.to_commonmark())
    # - [x] eggs
    # - [x] milk

There is a convenience method to easily toggle a task state from the rendered HTML. The typical use-case is that your database stores the source GFM, renders it to HTML with gfm_to_html(), then you have some client Javascript snippet that is invoked when a checkbox is clicked. Thanks to the unique data-gfm-task HTML attribute, you can update the source GFM on the server:

import pycmarkgfm

md = """
- [ ] eggs
- [x] milk
"""

print(pycmarkgfm.gfm_to_html(md))
# <ul>
# <li data-gfm-task="2:1-2:10"><input type="checkbox" disabled="" /> eggs</li>
# <li data-gfm-task="3:1-3:10"><input type="checkbox" checked="" disabled="" /> milk</li>
# </ul>

# When user clicks a checkbox, get the parent 'data-gfm-task', then on the server, do:
new_md = pycmarkgfm.gfm_toggle_task_by_id(md, "2:1-2:10", checked=pycmarkgfm.TOGGLE)
print(new_md)
# - [x] eggs
# - [x] milk

You can also use checked=True/False instead of TOGGLE to force a particular state.

How is this package different from cmarkgfm?

cmarkgfm is similar to this package, in fact cmarkgfm's cffi build script is partially re-used in this project – in compliance with its MIT license.

As of October 2023, cmarkgfm is still a well-maintained project and I recommend using it if you don't need the extra features provided by pycmarkgfm, most notably the support for task lists.

License

GNU GPLv3.

The project includes components under a different copyright under the third_party directory.

Release files for pycmarkgfm 1.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pycmarkgfm 1.2.1
File Size Uploaded
pycmarkgfm-1.2.1.tar.gz 158.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pycmarkgfm 1.2.1
File
pycmarkgfm-1.2.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pycmarkgfm-1.2.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
pycmarkgfm-1.2.1-cp312-cp312-musllinux_1_1_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-64 Details
pycmarkgfm-1.2.1-cp312-cp312-musllinux_1_1_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-32 Details
pycmarkgfm-1.2.1-cp312-cp312-musllinux_1_1_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ ARM64 Details
pycmarkgfm-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
pycmarkgfm-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
pycmarkgfm-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pycmarkgfm-1.2.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pycmarkgfm-1.2.1-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
pycmarkgfm-1.2.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pycmarkgfm-1.2.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pycmarkgfm-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
pycmarkgfm-1.2.1-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
pycmarkgfm-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
pycmarkgfm-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pycmarkgfm-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
pycmarkgfm-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pycmarkgfm-1.2.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pycmarkgfm-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pycmarkgfm-1.2.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pycmarkgfm-1.2.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pycmarkgfm-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
pycmarkgfm-1.2.1-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
pycmarkgfm-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
pycmarkgfm-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pycmarkgfm-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pycmarkgfm-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pycmarkgfm-1.2.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pycmarkgfm-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
pycmarkgfm-1.2.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pycmarkgfm-1.2.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pycmarkgfm-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
pycmarkgfm-1.2.1-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
pycmarkgfm-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
pycmarkgfm-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pycmarkgfm-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pycmarkgfm-1.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pycmarkgfm-1.2.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pycmarkgfm-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
pycmarkgfm-1.2.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pycmarkgfm-1.2.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pycmarkgfm-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
pycmarkgfm-1.2.1-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
pycmarkgfm-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
pycmarkgfm-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pycmarkgfm-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pycmarkgfm-1.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pycmarkgfm-1.2.1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
pycmarkgfm-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
pycmarkgfm-1.2.1-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pycmarkgfm-1.2.1-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pycmarkgfm-1.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
pycmarkgfm-1.2.1-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
pycmarkgfm-1.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
pycmarkgfm-1.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pycmarkgfm-1.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pycmarkgfm-1.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pycmarkgfm-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 19.7 MB

Release files / pycmarkgfm-1.2.1.tar.gz

Download URL pycmarkgfm-1.2.1.tar.gz
Size 158.8 kB
Tags Source
SHA-256 checksum
How to use checksums
a0f925081e786879f7ddec13892957831dfc4f44732eeadee4ecc6b85c2c2cda
BLAKE2b-256 checksum
How to use checksums
32f0af5333c36a502bad34c28f36799f5ce453443e47d0a66a9429d27f010e5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp312-cp312-win_amd64.whl

Download URL pycmarkgfm-1.2.1-cp312-cp312-win_amd64.whl
Size 142.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f855f1c2e8b098e2dcbb246c1ee283d82b2c65141f75ae393800cbb0d7a489ba
BLAKE2b-256 checksum
How to use checksums
87410e464336e0a4bdeb5ab5758ccd910aff708e1a66719c6ac61c613a964a69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp312-cp312-win32.whl

Download URL pycmarkgfm-1.2.1-cp312-cp312-win32.whl
Size 131.6 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
cc78e01f1e6296b1b043ff88b9cb2d173f68db19704a7562debccbc006018136
BLAKE2b-256 checksum
How to use checksums
3ee65c15797e4d5cd68514e46c9eeb0e46805758f5150db48774e3ec37b86329
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp312-cp312-musllinux_1_1_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp312-cp312-musllinux_1_1_x86_64.whl
Size 463.3 kB
Tags CPython 3.12 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
456f8ea93abd2f6384394425594e75158f20f9bb8c7e50c65df6cc9bda903a01
BLAKE2b-256 checksum
How to use checksums
10bf4e0221cbce9a579fa7913efac682aadfb3b76f34397a82fd95613bf12c0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp312-cp312-musllinux_1_1_i686.whl

Download URL pycmarkgfm-1.2.1-cp312-cp312-musllinux_1_1_i686.whl
Size 433.8 kB
Tags CPython 3.12 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
84085c333e865baf15a110a281ff35022c656b13f6e84c7dae55df9f7adacab6
BLAKE2b-256 checksum
How to use checksums
cb0b721911de9fe2fcd67963414b8f3956b0df2fa8c3e68637800739514e1f30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp312-cp312-musllinux_1_1_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp312-cp312-musllinux_1_1_aarch64.whl
Size 455.0 kB
Tags CPython 3.12 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
a2493abf1e32f958cc5ed5bf48a0ff9791081907ceed684fceaf231988d8923f
BLAKE2b-256 checksum
How to use checksums
2516527990e03faf2c54761e2efe397e7eb5b7623757144525858fda83ab3eb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 471.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c80df2e80bbcbd6389d8b07ff2b4e6129cef87891275055fb92fbe8fb9eef1ab
BLAKE2b-256 checksum
How to use checksums
2cf090b7f74c8028d0a50dcfc26347679d28ec3aedb826051e9dd6e3fec4a34a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 465.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5476c4c0c4b9b7c33e06d866c64a5a46f23129d0c561dc08f996592d84c2c21e
BLAKE2b-256 checksum
How to use checksums
9de63d8589ed4bc4d7438224cc023938a073446e7b349fcc1fd6f9b37b8cbe02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycmarkgfm-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 441.8 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
52eae88a7817b1c5fac5e1c98fd51b38a8e4ab5a7fbd1b3c9b1dbf214b528916
BLAKE2b-256 checksum
How to use checksums
038acaa79fb302e49fad7265e9991767beb3962afe386b47f0a052c3ce101c67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL pycmarkgfm-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Size 140.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
48cb1ba3d83936e442d2a84538314c8ea830fe8c8f345133c1d7f0d7b963b64d
BLAKE2b-256 checksum
How to use checksums
48a3c5341a65773b21ed82785fb2015af3bbe871bbda487b724099b233ecbfc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp312-cp312-macosx_10_9_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp312-cp312-macosx_10_9_x86_64.whl
Size 142.6 kB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8732b69f522173de80434df203b3eec88ac6aeb27f5b31ebac1ad65a053f75ca
BLAKE2b-256 checksum
How to use checksums
ea1222dc2aa19e4ceeb94dba69bac20d80731374d46fe2757d7f82e2f85ccc7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp311-cp311-win_amd64.whl

Download URL pycmarkgfm-1.2.1-cp311-cp311-win_amd64.whl
Size 142.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
2fca88d5d347f405a2c2f14d43151411880d7f1e6b7277436e966effb0ea8df2
BLAKE2b-256 checksum
How to use checksums
95de8a5d44024c9c749db9e651f6a06a7fd548b74c46ac971ac1bfc2f793d559
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp311-cp311-win32.whl

Download URL pycmarkgfm-1.2.1-cp311-cp311-win32.whl
Size 131.6 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
1c201121667fa35f9c31ad5033bfabf9b6d18e400f4ae01a7276025ea864472a
BLAKE2b-256 checksum
How to use checksums
ebff9dc16d93485e5cad816fb188c3893d3da8e2e84f5a00655fddba0275b4d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Size 462.2 kB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
cd584bf73d6ff98648c642814ebc302adf9a2d31dec357deb42133cf3f8a7b81
BLAKE2b-256 checksum
How to use checksums
d2903cdd135a8a3eeee57e8548a107a4370cba0721822e221361077352d07073
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp311-cp311-musllinux_1_1_i686.whl

Download URL pycmarkgfm-1.2.1-cp311-cp311-musllinux_1_1_i686.whl
Size 433.2 kB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
4ceb250195c68f60bd76dd5ca498c4ec9026eeedb72bf1f5abcdb25e5bbe5353
BLAKE2b-256 checksum
How to use checksums
e0e094ab285839d50ead03d70b782c84335113ddac82ae4bde5c04f8023037ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl
Size 454.4 kB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
b4e92de0733e1ec6f1a5704e874dea93211f4e9e52c7cb192085a4c6e7540403
BLAKE2b-256 checksum
How to use checksums
af390b1a06e06581cd91e2267aa7910e4c46fb414cbe73240704fb88e17ddfb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 470.5 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0998277e69999ad23c2ee69ec15bf0beedb6c47c08718883f71741ac9f00ae7a
BLAKE2b-256 checksum
How to use checksums
4d4753c4e038ce0431a905df15b5d5d0779179ea534cf4721192d7b63fddc316
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 464.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
407baaf633391e77a23684e86cdd636ae58ed9d985577e9890e7509d610a0a6b
BLAKE2b-256 checksum
How to use checksums
6b381d596a154ce8da8afe0a2ec6cd658da46ff75d8cb2e03d3a5db07513801c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycmarkgfm-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 441.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a3276a347b621389e2f27acabd66a993612ad64a34105ccdc060fa91b4db14a0
BLAKE2b-256 checksum
How to use checksums
d3dbb4ba970bb983344f46806c25e14ba7ca15a19178584c5190e2dd22da428a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL pycmarkgfm-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Size 140.8 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9189109fefc28fbb1763410d435f56815959df66e479992f4e845bf39861d6ee
BLAKE2b-256 checksum
How to use checksums
d1318d15d5232e02e7234aadf87c9eabfb8f61f605a3f0d2597e51fbe4ddc4f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 142.6 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bf83c75890e1b18e428bf8bf811c7a17aa2d20030c8a952afedbf028efbf37d9
BLAKE2b-256 checksum
How to use checksums
27b0d14ae21eaed9ded07a4540b731bdd129a3840775d08d44a28d1f8666681c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp310-cp310-win_amd64.whl

Download URL pycmarkgfm-1.2.1-cp310-cp310-win_amd64.whl
Size 142.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
5cdca8f260e43c3d4c7cc031818c05dbb3d3d54bab309f99fa6247794771ee21
BLAKE2b-256 checksum
How to use checksums
054f0e1fb0336b24d8ba1f90b99d2097cfef9f8ae330cb04f872bb89ef700a88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp310-cp310-win32.whl

Download URL pycmarkgfm-1.2.1-cp310-cp310-win32.whl
Size 131.6 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
dd10b9ecd1e466f68eb2e974b9db97d9865704394ad39e7e2d7b1660e3b865dd
BLAKE2b-256 checksum
How to use checksums
84e61e7d692b633a23efbea138dc7e29f30e8d2986b6e104316f8237bd2680e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Size 462.2 kB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
34b84b0750d324151ed398d3e6123984af33fb0f6e1404b7847bf8f8f8858821
BLAKE2b-256 checksum
How to use checksums
d97f8934ecbecf269d8f4cbe47161966bc1c88bba8b8b051e46fd63996c15ce1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp310-cp310-musllinux_1_1_i686.whl

Download URL pycmarkgfm-1.2.1-cp310-cp310-musllinux_1_1_i686.whl
Size 433.1 kB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
f67ed420bfa2eec001c125d5cc49d78723fa9b5b329a311cf61f850fcf65ed36
BLAKE2b-256 checksum
How to use checksums
9b3aafa823d3a31718e8aec66aedebed2bcbdd7e4ec67b83e5fb7b70f8de2583
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl
Size 454.4 kB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
27c08d6123e2afe72ad8ee980fca99c2ff431ea088f5ae65585b73d767845aed
BLAKE2b-256 checksum
How to use checksums
fdabb8cf0657634b5a51d093e4b106814e7007a333c8b6fa49074cffcfd23866
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 470.5 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cdd2ca9a3da85cc34be77d8ed3cfdd7dbef956592f7e22c73c6ccdafc8925ca2
BLAKE2b-256 checksum
How to use checksums
ef6c3a3ce8cf951d5fb2c07db1209eee4c8a255aadad175e58ed07ab433b3462
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 464.5 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c10800a59e85e54deb8ce3a26517dc6d3d3f80fc8ec03860288ef37a8cf1b27f
BLAKE2b-256 checksum
How to use checksums
95bf978652f1bd8e7986709d6dbd109427a94d456ec1325c09352ce49832a9b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycmarkgfm-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 441.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c2da36606b1ae07159ad2d996e4af032e4e40a0169732eb8068af4354437dab0
BLAKE2b-256 checksum
How to use checksums
80da4382bdb1031d75cdb5c096146b5854b6a97b63577181a643634716626c96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL pycmarkgfm-1.2.1-cp310-cp310-macosx_11_0_arm64.whl
Size 140.8 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bd4cad3056b7ffd72b436dc194995f7b06970e89e527da490a4aa4ce5eee71ad
BLAKE2b-256 checksum
How to use checksums
4c3f37794ec58138019222983aa3adcf136622a0ddd1bfd69d900d5714e89340
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 142.6 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0269f5c098c8bd6a57ca086376b69c2294ef4ff19d2b1b9752889a06ec2651cf
BLAKE2b-256 checksum
How to use checksums
fe47e41d43f2f56e8a41c65c5442cae8075ebc976aa7af1065fb04ea30114384
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp39-cp39-win_amd64.whl

Download URL pycmarkgfm-1.2.1-cp39-cp39-win_amd64.whl
Size 142.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
51ec325f43292bd2facc4c2cd49fa168f63b8e7f0ed7634096409aa8883ba740
BLAKE2b-256 checksum
How to use checksums
f7b688fd8441aad9e0b343895ea3f1cb629d3079e93eca267cf567cef9e39dba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp39-cp39-win32.whl

Download URL pycmarkgfm-1.2.1-cp39-cp39-win32.whl
Size 131.6 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
3310b709ec3d7be35cb9dab88cfe2238c56da3a4bff140f5ed5b79027ea21e33
BLAKE2b-256 checksum
How to use checksums
fd115ee8efe94a64bb2a21d22d6a0f464ada1e7660441dde178259b485aa9b29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Size 462.2 kB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
e31b16bc06ec8de30b739cdfc7ab9b8667e65c17d9d998603b569d1e54ae6922
BLAKE2b-256 checksum
How to use checksums
3a98dd740ee73e928a51dd939c96dc50f13a08cbb0c90d6434bd6df5ede21378
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp39-cp39-musllinux_1_1_i686.whl

Download URL pycmarkgfm-1.2.1-cp39-cp39-musllinux_1_1_i686.whl
Size 433.1 kB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
47e19dd1b506fa0d3794ca302c5c4325a1efac5d11cca94c5a717d092d6dd31c
BLAKE2b-256 checksum
How to use checksums
6a5b1a446add413ccaa57c0c2b7361432523267fae2c8860ca144fa66afd2c75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl
Size 454.4 kB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
cac0b690dd07d660d3ca142c2c268ff64501795bf5fea3422aed5da859dfc010
BLAKE2b-256 checksum
How to use checksums
abf72664cb43dc37c1304a2aa932b77a227fecb4b4503514742f0257379750e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 470.5 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a47dcfcca2c05af6fc895e06e9eaee0639b73e7142ec0d96f4305183e5b82d12
BLAKE2b-256 checksum
How to use checksums
9d492c827b6449e2ec0a238a16b0459480a2a6cc3ef93025c739ce229d9fcb11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 464.5 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f868793f5675e047b3c028b914b36be169308bd52818416b10ed18a0a53d5b4f
BLAKE2b-256 checksum
How to use checksums
953d766465af4900028f730b8832afe20085e51b83d306c0ec5f0aa20a679945
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycmarkgfm-1.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 441.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
bbe8e7c807ae65756c58ce8b319d08231d1c8874271a935980da43b4453e68c6
BLAKE2b-256 checksum
How to use checksums
d8590e786d14137bf3f81148182d3a7ba4ff9ab540934af5e3ee938828fcb467
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL pycmarkgfm-1.2.1-cp39-cp39-macosx_11_0_arm64.whl
Size 140.8 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6add3d300e15b6aa1d19854e1b9bae0bbb8d075d5ff15c8711a1ae729dd761e0
BLAKE2b-256 checksum
How to use checksums
05fde8cd1c1f7ea65a8b468b6f8ba0cc8f24d1e6233611eddcee875567321700
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 142.6 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e7ab9a62cd89176c01e917b54d48265157d5850cdaba4c91b6bb14948150823a
BLAKE2b-256 checksum
How to use checksums
31f0b82b7e6f053a21cd22e82e75a1eddb1856a8e291d9e7a342a623deb3bd43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp38-cp38-win_amd64.whl

Download URL pycmarkgfm-1.2.1-cp38-cp38-win_amd64.whl
Size 142.8 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
1e2e3f0fe320bb267c51359adafef35f97db082a2899190f2050766a622c96f9
BLAKE2b-256 checksum
How to use checksums
b2a885f9c22887d6bdeee0979e1f652ec4f083a998b6d4c99de973367512d0e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp38-cp38-win32.whl

Download URL pycmarkgfm-1.2.1-cp38-cp38-win32.whl
Size 131.6 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
481b135f6976033acb94257f32bb1b262d5843cf44d1b2cb4b22b611b5265330
BLAKE2b-256 checksum
How to use checksums
1ef85acbfba34cca5fda95caefd945055ce88cf5a6ff40afd0d0d903fc91584f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
Size 462.7 kB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
a78bd27b5be186385fcaa9d1c43dfcf4b940faf4548868a835dfcd0db2c7dd4c
BLAKE2b-256 checksum
How to use checksums
2b76f12e606d4b691033b121580ba09cb1dca485f9fa17d3f9625ddb8877c83d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp38-cp38-musllinux_1_1_i686.whl

Download URL pycmarkgfm-1.2.1-cp38-cp38-musllinux_1_1_i686.whl
Size 433.5 kB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
d49eff0008abbe0d8dc6f6c7c0645e66f567f4b455280ab3bdf000ebcde4083b
BLAKE2b-256 checksum
How to use checksums
95a78dee68d30eeadd78904d9aa3a2a29b950aff97e82bd347a54875169a13ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl
Size 454.8 kB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
36b2a87401936dd03770cb52253b1f54bbc66a30d183686372751df22b86cc24
BLAKE2b-256 checksum
How to use checksums
f618a739cce644a5b3db34d1489074e807d44ce8f1787c14f96b2968d3944947
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 470.7 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9efa7000db97b9182f16a4e4715f76ded24dce4ed28c5efc7867c72a92c9a56f
BLAKE2b-256 checksum
How to use checksums
708923c54f8e43d8727e7e3ecefc6ffbf58400298500daec9fd2f9a2c6b2c9a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 464.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0c3b253b2ecd82aec3482028953ef744ac495adc9e942411a85c19a6b9d31b4e
BLAKE2b-256 checksum
How to use checksums
dce941ea4bab2984a9bd39c25e5171ea757fa7db1926b27a7b1965ee7d260534
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycmarkgfm-1.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 441.6 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
bac2a248dff083cbf0380568d4173aa0708f29f9ec9e3ef8b50bac5a21cc0cc7
BLAKE2b-256 checksum
How to use checksums
744a91b2de9f10f5ccc2cab16710660770b6bd958f859cf919dee3f05fa1e8e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp38-cp38-macosx_11_0_arm64.whl

Download URL pycmarkgfm-1.2.1-cp38-cp38-macosx_11_0_arm64.whl
Size 140.8 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0d9d6b97c03403b914bc9eefc2cdbc461b2a7348e221cac7ccd4b51576b6ddd2
BLAKE2b-256 checksum
How to use checksums
650957b241ea425a80f57d1e55664e1d542461e8c709f3d3ccbc90c6d622103a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 142.6 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2c8beb0a670677ce9d1c59dd4f6061f1fbcf565ea82962017e815c6479b072c5
BLAKE2b-256 checksum
How to use checksums
8d2fbadb6782d8b42e9719b628f1cee0dd50db432b0d69a3d202959eb5f6eb4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp37-cp37m-win_amd64.whl

Download URL pycmarkgfm-1.2.1-cp37-cp37m-win_amd64.whl
Size 142.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
2cb82820f0623f2de40e851027f537dfab0774f4dc5f7c2078df707df717908e
BLAKE2b-256 checksum
How to use checksums
554078f51c4b19fd8ebfa0e125937b758351dfdf91b04c9d5f4d902282eef0ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp37-cp37m-win32.whl

Download URL pycmarkgfm-1.2.1-cp37-cp37m-win32.whl
Size 131.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
d6057d7e8e37cd6894949cc629a481084e0694f9bafcbeac20fbf542e199d09c
BLAKE2b-256 checksum
How to use checksums
502ba52efaf61a033dc4d35c3bdff2c42d504538f1c89a39da92f7867106f695
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 461.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
557504601ef4bbb54aba913f242bfdd539f0bfd478bb2d628ab72f091785887b
BLAKE2b-256 checksum
How to use checksums
88b6bb3eb52365d022c318aa4de0ec32f94f7a37088592b3cfe96c8dd29ced92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp37-cp37m-musllinux_1_1_i686.whl

Download URL pycmarkgfm-1.2.1-cp37-cp37m-musllinux_1_1_i686.whl
Size 432.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
65092caf1e979f6f89cb29275f679d4f014bbf88f817f6b4cab5a156f248ece1
BLAKE2b-256 checksum
How to use checksums
5d481e98f3910859eee49cf52b96bc4cf645ca77b80252ae9463a3d55eb56d6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 454.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
ae1b0f301e80aa9ef239c0d22af23b257e3cfca52b9eea6ba97bfd3c0d608a43
BLAKE2b-256 checksum
How to use checksums
a675e2e7e2f97f170d0b290cddfba0a11adb85688308320299d8650f7ab54837
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 470.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e6f6769f5ba06fa2f165118ad7faa1bd9a363763082c4a08fdbd757bc5f681b1
BLAKE2b-256 checksum
How to use checksums
ae784cc8ba5b91b1236127e60f5349c2e4b6b447ebb575c877e02a0f01d1066d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pycmarkgfm-1.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 464.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ecea6943bc037cde6b6441f50b81bf3eeb41664bd22dd5cfc0a83bb8d484e77e
BLAKE2b-256 checksum
How to use checksums
b0f1b9dc71ee0d532282631162e83fbf25781ec059f3456c20383ff453a99d7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycmarkgfm-1.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 441.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3ffb7ece182acd75d4a8d1234e57f819f6be6ed6cd1c3c691bad4e9538359c3c
BLAKE2b-256 checksum
How to use checksums
bc367dbbd304d1514158d48189f6b1b9040c3ceee84dba4036fda53447e8b0e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / pycmarkgfm-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL pycmarkgfm-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
Size 142.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c67858cdba5cc994bf62d5a77863d7d1fa43c601853d50a34c2edaa820f03b86
BLAKE2b-256 checksum
How to use checksums
f820362cbe8562296b40389975dd4593dd40c54675818efadbe37f30c592d56e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.4

Release history Release notifications | RSS feed

This release

1.2.1 This release

60 release files

1.2.0

6 release files

1.1.0

6 release files

1.0.1

6 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page