A Python interface for markdown-it.rs, using Rust for blazingly fast Markdown parsing ⚡️
Project description
markdown-it-pyrs
Currently in Beta, feedback welcome!
A Python interface for markdown-it.rs (and plugins), using Rust for blazingly fast Markdown parsing ⚡️
The goal of this project is to provide a fast, safe, extensible, and easy-to-use Markdown parser for Python. It is complimentary to markdown-it-py, which is a pure Python implementation of markdown-it, and here we aim to follow as close as possible the API for that package.
If you care primarily about speed, this is the library for you. For example, benchmarking the two libraries when parsing the CommonMark Spec file, markdown-it-pyrs is 20x faster than markdown-it-py.
Name (time, ms) | Min | Max | Mean | Rounds |
---|---|---|---|---|
markdown-it-pyrs | 5.217 | 7.969 | 5.968 | 85 |
markdown-it-py | 122.696 | 143.246 | 131.431 | 7 |
The drawback is that the library vendors compiled Rust code, and so:
- Parser plugins cannot currently be written in Python and added dynamically to the parser.
- It can be more difficult to integrate into environments like pyiodide and py-script (but maybe not for long: https://discuss.python.org/t/support-wasm-wheels-on-pypi/21924/3).
Usage
First install the package:
pip install markdown-it-pyrs
Then use it like you would markdown-it-py
:
from markdown_it_pyrs import MarkdownIt
md = MarkdownIt("commonmark").enable("table")
md.render("# Hello, world!")
# '<h1>Hello, world!</h1>\n'
markdown-it.rs
does not generate a token stream, but instead directly generates a Node
tree.
This is similar to the markdown-it-py
's SyntaxTreeNode
class, although the API is not identical.
(source mapping is also provided by byte-offset, rather than line only)
md = (
MarkdownIt("commonmark")
.enable("table")
.enable_many(["linkify", "strikethrough"])
)
node = md.tree("# Hello, world!")
print(node.walk())
# [Node(root), Node(heading), Node(text)]
print(node.pretty(srcmap=True, meta=True))
# <root srcmap="0:15">
# <heading srcmap="0:15">
# level: 1
# <text srcmap="2:15">
# content: Hello, world!
Note: Attributes of the Node
class, such as Node.attrs
, return a copy of the underlying data, and so mutating it will not affect what is stored on the node, e.g.
from markdown_it_pyrs import Node
node = Node("name")
# don't do this!
node.attrs["key"] = "value"
print(node.attrs) # {}
# do this instead (Python 3.9+)
node.attrs = node.attrs | {"key": "value"}
print(node.attrs) # {"key": "value"}
# Node.children is only a shallow copy though, so this is fine
child = Node("child")
node.children = [child]
node.children[0].name = "other"
print(child.name) # "other"
Command Line Interface
A CLI is also provided, which can be used like this:
echo "# Hello, world!" | markdown-it-pyrs html -
# <h1>Hello, world!</h1>
echo "# Hello, world!" | markdown-it-pyrs ast -
# <root>
# <heading>
# <text>
Replace -
with a filename to read from a file,
and see markdown-it-pyrs --help
for more options,
including initial configuration and enabling plugins.
Initial Configuration
Initialising MarkdownIt("zero")
will not enable any plugins, and so you can add only the ones you need.
Use MarkdownIt("commonmark")
to enable all the CommonMark plugins.
Use MarkdownIt("gfm")
to enable all the CommonMark plugins, plus the GitHub Flavoured Markdown plugins.
Plugins
All syntax rules in markdown-it.rs
are implemented as plugins.
Plugins can be added to the parser by calling enable
or enable_many
with the name of the plugin.
The following plugins are currently supported:
CommonMark Blocks:
blockquote
: Block quotes with>
code
: Indented code blocksfence
: Backtick code blocksheading
:#
ATX headingshr
:---
horizontal ruleslheading
:---
underline setext headingslist
:*
unordered lists and1.
ordered listsparagraph
: Paragraphsreference
: Link reference definitions[id]: src "title"
CommonMark Inlines:
autolink
:<http://example.com>
backticks
:`code`
emphasis
:_emphasis_
,*emphasis*
,**strong**
,__strong__
entity
:&
escape
: backslash escaping\
image
:![alt](src "title")
link
:[text](src "title")
,[text][id]
,[text]
newline
: hard line breakshtml_block
: HTML blockshtml_inline
: HTML inline
GitHub Flavoured Markdown (https://github.github.com/gfm):
-
table
:| foo | bar | | --- | --- | | baz | bim |
-
linkify
: Automatically linkify URLs -
strikethrough
:~~strikethrough~~
-
tasklist
:- [x] tasklist item
Others:
sourcepos
: Add source mapping to rendered HTML, looks like this:<stuff data-sourcepos="1:1-2:3">
, i.e.line:col-line:col
replacements
: Typographic replacements, like--
to—
smartquotes
: Smart quotes, like"
to“
front_matter
: YAML front matterfootnote
: Pandoc-style footnotes (see https://pandoc.org/MANUAL.html#footnotes)heading_anchors
: Add heading anchors, with defaults like GitHub
Development
I'm quite new to Rust, so if you see something that could be improved, issues and PRs are welcome!
PyO3 and Maturin are used to build the Python package, by wrapping markdown-it.rs in a Python module.
pre-commit is used to run code formatting and linting checks, and tox is used to run tests.
TODO
Improvements:
-
Allow to override options:
- xhtml_out: Use
"/"
to close single tags (e.g.<br />
) - lang_prefix: Prefix for language classes on fenced code blocks
- quotes: Quote characters, for smart quotes
- xhtml_out: Use
-
Add plugins: ...
-
Allow options for plugins:
- heading anchors
- tasklist checkboxes to be disabled
- footnotes with options to turn on/off inline/collect/backrefs
-
The
gfm
(Github Flavoured Markdown) initialisation mode needs improvinglinkify
is not strictly equivalent to https://github.github.com/gfm/#autolinks-extension-, e.g. it does not currently autolinkwww.example.com
- Add https://github.github.com/gfm/#disallowed-raw-html-extension-
- heading anchors, is not strictly in the spec, but should be noted
- Add more testing
Open issue upstream:
- no
text_join
rule (to join adjacenttext
andtext_special
tokens) heading_anchors
plugin does not allow for e.g. GitHub format where non-uniqueness is resolved by appending-1
,-2
, etc, and also removal of image text- Capture reference nodes
- Capture link reference definitions
- Turn off code rule (and thus remove indent limit)
- disable rules
- better "cross-language" AST representation
- differing behaviour of linkify and normalize_url/commonmark_extras test failures
- quote characters for smart-quotes and lang_prefix for fence should both be variable at run-time? (currently they both must be compiled)
- fix docstring in
examples/ferris/block_rule.rs::FerrisBlockScanner::run
, which currently describes the JS API not the new rust one - also some functions/methods use
//
not///
for docstrings - Capture "piece-wise" source maps for nested content, e.g. for when the source is split over multiple lines and nested in another block (could get inline here https://github.com/rlidwka/markdown-it.rs/blob/6f906b38c8ffc3cc651e67b448b3655b7d0debb3/src/parser/inline/mod.rs#L115)
- easier way to get
root.ext
items in core rules; it seems at present you have to swap memory and reswap at the end of the rule, see e.g. theInlineParserRule
- allow
test_rules_at_line
to parse what the calling rule is, so that other rules can decide whether to interrupt based on the calling rule (in thecheck
function), I think this would then allow behaviour similar to whatalt
did (possibly needed for footnote definition parsing)- In general though, where back-compatibility is not required, I agree with djot goal 7, i.e. that block elements should not be allowed to interrupt other block elements without a newline
- The possibility to return multiple (sequential) nodes from an
InlineRule.run
, e.g.((node1, length1), (node2, length2), ...)
- This would be similar to docutils
- In the
Node
walk methods, allow the function to return something to indicate whether to continue walking the children of the node- Also in walk, parse the "path" to get to the current node, e.g. list of parent nodes, to allow for backtracing
- similar to https://github.com/syntax-tree/unist-util-visit-parents, https://github.com/syntax-tree/unist-util-visit, etc
- is there a way to use a
match
statement, to match a Node against aNodeValue
implementation? (rather than if/else forNode.cast
) - Rule priority as an integer (similar to RST transform priority)
- Currently can only specify
before
orafter
another rule or all rules - Can feel a little unclear for plugins, when to use attrs and when to add fields to node value.
- Currently can only specify
Maintenance:
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
Built Distributions
Hashes for markdown_it_pyrs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e21eb4ffb694dd7001f488a0a202825426c60066ed7486a2646b0d5948f1c8c7 |
|
MD5 | 9243823ca420a21bfd1d8317db9e2e5b |
|
BLAKE2b-256 | 6be528c2db4a3a63a4c322399d31a942fd193deae5d56472f3ff4e1c1c1dda9a |
Hashes for markdown_it_pyrs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d11f8f6d4eaa5687905b514032aab75f0fdbc546bdebbd0f0ed89dbabfb55fb5 |
|
MD5 | 300900acc54d2bbd18fe79e9401e5de4 |
|
BLAKE2b-256 | 0b47f4d4e816c1508b81b181c34a5fe12c6b9000e7c1db27f455cb037ebf4a92 |
Hashes for markdown_it_pyrs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e45e4114a3f34948cce02728f412d247b582befa72feb4c3b0a5729f7264060 |
|
MD5 | 27cb618a2132fed37837580ba2f607a6 |
|
BLAKE2b-256 | 8029efe4e22d22900efe86745a1f89eb736c5c9ae646fcfce8a4221643b56590 |
Hashes for markdown_it_pyrs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24480348860a9bd24b97aa873909e4e42ddf430019eb040a149113a4379287a0 |
|
MD5 | 9723d1e518e12ba5655cf8fc807c4892 |
|
BLAKE2b-256 | 7499c69cf9800ac9750ba32926c0b8c187d77596e30a533baaeaf819745d35d9 |
Hashes for markdown_it_pyrs-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70e40d6cb0d07a4e518434883763d7d086963f9c996e0811244d173867eb4d0d |
|
MD5 | 3c3b46c12f6edf477a5f19ec04914daf |
|
BLAKE2b-256 | bda5de25d0ba928affe8ed7eaabb1d469a03dc9b0568e529d3f35e726648a195 |
Hashes for markdown_it_pyrs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65465b01b95a9a965a53eceb0f4094bcf4113f21d830d2936791813acc5e0e97 |
|
MD5 | 295f28d4586bdb338069f8a860d8432f |
|
BLAKE2b-256 | 3f75963f2e5bd747b8890173d5a2a7c7429715cb7c95d8091cdd74901de0babf |
Hashes for markdown_it_pyrs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92e75963799952b14ecdaf4a9b9cfcf1a2fd2d93b5bae42a4ff34ee73eb39bab |
|
MD5 | c4880346204c8d1ca16ed1f5dd745359 |
|
BLAKE2b-256 | e8de92efae00ede3ef32239f05034dc04ed35577abad7b3df39287711b976edd |
Hashes for markdown_it_pyrs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b82feb48e7ff8d1df4ae6ebc4ac505de390898790e50757693f90d059015ae17 |
|
MD5 | 091733b02e35ec0a8e9c45b9a9a523a1 |
|
BLAKE2b-256 | af19cc21b0ff5764ad9580c2f3a16e6c40e0519eea697cbd5d8567051de3cfcc |
Hashes for markdown_it_pyrs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24ae70ce3576905a50ecdc0c4779dd2fb21aaac89f9ebbd35074689d2c7e061b |
|
MD5 | 3a400dfea797238013489ea2343f1e31 |
|
BLAKE2b-256 | 18d280ae6c7c717b1cbc0f018e5ead9b92c52b0f19d8a4d47d3ce1e1de4b6ced |
Hashes for markdown_it_pyrs-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7c92852c0d536fa086fa544329e9fd0d507d7bdf879c0c27f875be17bdfa9e9 |
|
MD5 | ebdd22a88b34e48027d5a339c450df25 |
|
BLAKE2b-256 | e420c82b7022ebf0d8bab3e76209cb4004ebe184257e86a349ac8572a1834110 |
Hashes for markdown_it_pyrs-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbaf792daa0b09268bdb2beb6f6fcd40de314526e186418d17f7c87eeb586e5b |
|
MD5 | a6035987010cc75490b4b57d7ae9afe0 |
|
BLAKE2b-256 | 3e0b5b2b353b923b9e75a9be82c82a6f3cebc5a211b95b41c838c6e82ee4e1b3 |
Hashes for markdown_it_pyrs-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | af62a1517293b82f413920340d9700043b3768cf2a81048e832fcafd59718890 |
|
MD5 | b553ec35c4b23ae559e5fdbcabe2eab5 |
|
BLAKE2b-256 | d43b344815ff927e6513ea3afa53866031fea0dbe4ddc7dfcb243221cd5ef41e |
Hashes for markdown_it_pyrs-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b01e91fc06f1e3ff3d3b8e1fd6646010137b09033134c9c967403e34b26b7ad4 |
|
MD5 | 94d4f993c367b802a00c68e22005ac40 |
|
BLAKE2b-256 | fae157fea85c98a971d00bfb74914f1a513f903021c9b5ece963dadf5ac28ffb |
Hashes for markdown_it_pyrs-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43c731b2eb0737bdcd09e84962041ef9a00a098f53782b82b67a684fc5811f3a |
|
MD5 | f25862866a47beca8b601c5a8fad5459 |
|
BLAKE2b-256 | d5c6212f23f0428eb9ea85ef75cbb73e23dda9545a38c603458189fc752c5f82 |
Hashes for markdown_it_pyrs-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fd8cf7512ce9fded51af57fff4b18a3d14e97238d47d68ee4969a44aa0a1400 |
|
MD5 | ac0f4cec4340b1e3217b7721f33be04c |
|
BLAKE2b-256 | c1f58f5dfdd4ee7caa71efb1beb220080b43811db29811897fa32ee165bf1c0f |
Hashes for markdown_it_pyrs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b2e36dfa7be9af8cd3bc542b894464c8052b9b7aea37c99c684df58ec8ef86a |
|
MD5 | c34731a0a3c7cf1a2ce23be25f7650ec |
|
BLAKE2b-256 | 25659eb4a7840e31e86b74a9e8927d2f59958036f07158dcd07fc04399e9ec32 |
Hashes for markdown_it_pyrs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cb5e86cd9f736c171c22080d1bc30cad83843230df994848e598df4f9ace7cb |
|
MD5 | a69e9220ba969bf53c7a65ba6b5f20af |
|
BLAKE2b-256 | 5e7ac55767a9ea930af687307fe241fc648f92918c7ad22dd53ee4ce4af7f160 |
Hashes for markdown_it_pyrs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb260bc2da58510cbb6837aa2019132a048da0c75da0dc300e43d2cff21350ab |
|
MD5 | 1d44593c490c17dc0e0aa2b1270303c9 |
|
BLAKE2b-256 | f601e3c1a89e4a95253199884a93cc05c1f07615c6fd001889d47a0ea244ad8c |
Hashes for markdown_it_pyrs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 693e2fd184720b18bfd71ff55618a681cb42b1f869c1de65a18db89d5e13f7e5 |
|
MD5 | a3495d1a7e35bcc2133aaf39692133d7 |
|
BLAKE2b-256 | 3ce0fb3eade4d894f458bca253f7bae574ab6f6c45f22252b966033df67af4bc |
Hashes for markdown_it_pyrs-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | eff17854f9ab8aa6b40450766fb7fc1fd7c242994321c897d10fd5a82fce30e9 |
|
MD5 | bb24852adc48d5447c2c20a1db6c72dd |
|
BLAKE2b-256 | a806ee678e70ba774a91da7bb2231e53ebdc710382d705bc52c7d7618a46ed1d |
Hashes for markdown_it_pyrs-0.1.0-cp311-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26f44b8458bb53b596fc9660907be9fb775364160139a127ca9e75eb9a453499 |
|
MD5 | 3590bc66aa0faf6ccece99d413b3a1ba |
|
BLAKE2b-256 | 62fca8347e185a4c39450c2f39ac1d25ef9dd9b1b6f55f049edcbe5daf7de82e |
Hashes for markdown_it_pyrs-0.1.0-cp311-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 856413d82fe8f116dc0cc827b5155cf9f850a88be8d0f898737b2689a24bf412 |
|
MD5 | 01c7773326b9da4278d2b9d8a2a69b50 |
|
BLAKE2b-256 | 88fb562df80405d3d5b062c96df356515b2dc1500c4b06c8ba22e205cdd49132 |
Hashes for markdown_it_pyrs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57b74b43174b8c5de9e3466aec5fbadb640490ae7b8b03d8ef96fffcfb7d3da4 |
|
MD5 | e68b51d1d375f0a6a8677af8e81346a7 |
|
BLAKE2b-256 | 4acd7da87da8f8c52a706dd314b4d0866b6ec833897f9eee8f52abae3f65a8d3 |
Hashes for markdown_it_pyrs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24d5c2ec92a4ce5d718f17af7450efdd335dc22a1e6c5fd2030da3d12f92d610 |
|
MD5 | ab81ca687cdc281b8ce04af818069036 |
|
BLAKE2b-256 | b89dcb5d17ae1540758adaf7554f195e14419b92d3e469bf97a74f4f25d3e16a |
Hashes for markdown_it_pyrs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 665c2f564b290feebd04cd72e2ec6d7d4ab168170c00d12dee9f9544eba66b9d |
|
MD5 | 5a7e21495453ce58d3dc6fccf967a225 |
|
BLAKE2b-256 | ad0fc0567879d63260983c896adae5790f529183eecd1118e39b7bcee633c033 |
Hashes for markdown_it_pyrs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f516ccd86e6b7e659d84aae9abd1da3ab108a35dd1d12110de57b1508d3629e |
|
MD5 | 8b00f70ed9c0e73dcbda9b40420da92f |
|
BLAKE2b-256 | 5080cd4ea841a7a987ebc3297ce15e441671b9e58830240892b279cedd47c378 |
Hashes for markdown_it_pyrs-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5aba28ad622c8e66fc66868e2bf604ae3a156a674c9232a4d5fe4daea59d634 |
|
MD5 | bdb25a001e3f9d4200197805b518bae6 |
|
BLAKE2b-256 | 07afafc74c6f8b99fd948a579b4b9884decc9e21fc7393a636bbb30fd37e1df2 |
Hashes for markdown_it_pyrs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 662b6ecec70511a394764b48b0e4b55a56fcaf859e337b1b423764cca693e94e |
|
MD5 | edfc62a0dadf6b67c2b1f7cbf2991424 |
|
BLAKE2b-256 | cd4e3b2743e9d074d5abfa1d4f6025497978df7a175c67728383febf89f34df9 |
Hashes for markdown_it_pyrs-0.1.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff20365356fa4c5cdbeab58217652b87be1147021e92687096f92df7c306ad25 |
|
MD5 | b918f13a200b4b1b053f9dee0b6a1929 |
|
BLAKE2b-256 | 10121e13ee41a3f4fdfa2ce205f892a7af050ea04c6e129f3ae1df82004c8699 |
Hashes for markdown_it_pyrs-0.1.0-cp310-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fe705fae19be9191d71747e588bc24a7b39888d7e9604f120d06d01915d3b01 |
|
MD5 | 804510baa3c34c1800893c6c0e8c1e70 |
|
BLAKE2b-256 | 021aea201ca8d3a5290c4c704b47ae599b3fc6ab7d5da77dcbb2724c2c52c61d |
Hashes for markdown_it_pyrs-0.1.0-cp310-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52c855b4ed75837aba6f20d486105277da4ef665f0c6c9d6612c9a7fcd3fc6d6 |
|
MD5 | 4db94b2c3c6e1223947c7ea71785f599 |
|
BLAKE2b-256 | c0f186bbcf913c7bb6789905704153b6b73d19f4b42c45e958ed433143beb68d |
Hashes for markdown_it_pyrs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8cd1d2e43534ddfdfd123d1cb22ade699b93388395d8110b1f8bc20f7ce9570 |
|
MD5 | 78adec3f2e6f12d3d6a8fc14a9cc42a1 |
|
BLAKE2b-256 | 8d29ca3f33746ca9eb3c939f1545c93c47e9c2e30b341868150ba2fdc6ec1a0a |
Hashes for markdown_it_pyrs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 167243e55af2db9ab4c17a912181ab99d5d22df327852abb751dcb30ab0804cb |
|
MD5 | d482a3df357369924631822a45018aab |
|
BLAKE2b-256 | db5172b12c5315c9d53ce04c59f6b495097f325089dc4003348e703985f2e733 |
Hashes for markdown_it_pyrs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6698d94ead97fadf36f91339c7f83ead544b02aef468228d92b4cfe3e1eca19c |
|
MD5 | 69be946d1e219a403f86540b8079f689 |
|
BLAKE2b-256 | 4814ec8369fbbec72f28dcec3d08687a7506762969a7f5b3340d3b5904786ba8 |
Hashes for markdown_it_pyrs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d46e7f8ddc5761301bd2aa0e790ba2fdf4849237d2b289af422fa9456bfe88f8 |
|
MD5 | 9c49a6df95ec215307280d86fce3b5e2 |
|
BLAKE2b-256 | 0c5038c74e26275817bcb9c308a8f9d54fa11c788d6a45e7e193fb86e615b142 |
Hashes for markdown_it_pyrs-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99464d2aeb24387f8a4c680e650c0482bfe2f61ec732aa24735787a8d7ad6f46 |
|
MD5 | a535e9265e713d31fa0636e07bb443f2 |
|
BLAKE2b-256 | f8f296f14f5b2e6e012e3e9b0dddf6399e76de256a1ea21d6e82a4693a00a037 |
Hashes for markdown_it_pyrs-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c30c90fe416258a9e1b8f68398f2b2086ae197819b91c65f1b39438ba3419639 |
|
MD5 | d6d6ca84acaaec84889e5d4c30339f35 |
|
BLAKE2b-256 | dcf276bf0fdcc293334edc1f67ad5f5260c46e9e48f9f990d82a7023ec942778 |
Hashes for markdown_it_pyrs-0.1.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3000de1236c6ac14d5a9dcb65fd3cdb570268234d5472eb36673f6cad7b41697 |
|
MD5 | 1bef3d364dbc69f88cb5cff734c0146f |
|
BLAKE2b-256 | 63bad1e1c7775ac5cb19f9e0d216135b3b3d81a18276bbf7240946c3cea16ef8 |
Hashes for markdown_it_pyrs-0.1.0-cp39-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f931e5ce96c2fafee95da2b43d8026586a492e614dcb70f6a9bfd3d3a6e86ce |
|
MD5 | d5821707f859387aba3bda3b726f5310 |
|
BLAKE2b-256 | f17ea4f7f1ee43ae4b50249a6e372a87348f1a4c56f8adc1d44fd5d4a209f345 |
Hashes for markdown_it_pyrs-0.1.0-cp39-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d52d011c00ace209024fbed6a60a575d63f5ef1cac469819519c8d56f8f77874 |
|
MD5 | 70f2fe8a3fb6e4c67ebe8387a6377a3e |
|
BLAKE2b-256 | 62ba878ab0b92dac0fa7c30cb0fb27af362ec97e192caa9f40c195f355739de5 |
Hashes for markdown_it_pyrs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a84a396407297b0afe89bed0345c3caf5b66c2d88651e755ddba21647342e774 |
|
MD5 | 781f15ae67baef23182ed164a5cbdc1c |
|
BLAKE2b-256 | 2550f41b06ac3273f3dfafdc5c19cf6a0e9f7e52e907d833d87f59f39adbc599 |
Hashes for markdown_it_pyrs-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2471ebfc7ee441224aed78b81b5d88fdfb616da25dbfe4cf84ea6a4aab06bcf2 |
|
MD5 | 996afbf8e3c3eacd7f9bdcafd7c22a33 |
|
BLAKE2b-256 | 9b1a7c5a42d03ac9d2f67a7e3a60b05d6e0b423870df9eda70e8d6aaf2ca22f4 |
Hashes for markdown_it_pyrs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 588df47b2a2a0e7fa415364b0905455173127829ae60b19ffd09e9badcbe2e81 |
|
MD5 | 9496e9f1dfde9f14c69c1113ecffee41 |
|
BLAKE2b-256 | 51da30782708ed8c7b6334b6be721c1c90130f736389b13f0d43bbf819e6cdf2 |
Hashes for markdown_it_pyrs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8d60e4dec16ecd00973a782954463b537ef211a0b4821da97b2911ef849a36c |
|
MD5 | 697346a6b800be391e58f32d60f12674 |
|
BLAKE2b-256 | de68ab06914cb6fb89e5864ac648c55193c2d857655fe828fc40d4d374574acf |
Hashes for markdown_it_pyrs-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f081ad4d51d0753adecf363fb57236d8d9db11df21122b540d6e8912c7415de8 |
|
MD5 | 63273c60f101dda599a5de3f8974dffa |
|
BLAKE2b-256 | 7938b1f21b7d41ac4af77b3382beeeb3272174f69f743ea79db3c255f81a93b1 |
Hashes for markdown_it_pyrs-0.1.0-cp38-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4b709d2f136b84e4700798d2c6902f98d2fc6404de94e1c2b80e38113029725 |
|
MD5 | 871e94415ab3e3c983628a80cf004280 |
|
BLAKE2b-256 | 64806f5db81f464788eb0ac63356582653d58e4d7cc57446a7bf33f4c113a62d |
Hashes for markdown_it_pyrs-0.1.0-cp38-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51072214c3f12d4ad1232972559dcf554c303db920f70d89e010a238a2121395 |
|
MD5 | a9fff952b2864c780880cd4de4862bd7 |
|
BLAKE2b-256 | aa35a28fd2abeedd522cc81f884c5187eb85bf2242f72b076e8dabf0d9f4717d |
Hashes for markdown_it_pyrs-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69110611a1e00a7979c45be86209d72a090fdab22c4a7c6a3c12dbc70447a413 |
|
MD5 | 28ccfa97096acd68663bf545ff89e7bb |
|
BLAKE2b-256 | f116fd9d868f743d6ee2a5d849ef76ba47644ec8fc720c67013cbfef16310aea |
Hashes for markdown_it_pyrs-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7b5d05530877d875dee7c7264a0b3daf6aad1f86cf0cf3de0d10f89bc4e4770 |
|
MD5 | c2461c04c6d21819e3a0235ad8f9a0df |
|
BLAKE2b-256 | c017a60974de4323810f1fb7f271cb90ba91cb617d569a10c5b3ea94d775f4c8 |
Hashes for markdown_it_pyrs-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7494e648867b8971c287f8f060a80f81f62aaccc2ce118a1aeea8c99730a8ef6 |
|
MD5 | a2e8fb8b3a469339694108cfd421201f |
|
BLAKE2b-256 | 1c761f59ad1a18d8540d0bd11799ea716e31ba643a12058e852cc8045d34d47a |
Hashes for markdown_it_pyrs-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c170a0d64196659d73133dc0fecbf9d4124af22013cd8b4415dfd97c93b5a047 |
|
MD5 | febb5e53bba49f9c8600f5eb84ab16a9 |
|
BLAKE2b-256 | 816152e2a61e2dc95ecaa60cc8bc9cb12d06f963eb4f96e5d9e320d94d9e5144 |
Hashes for markdown_it_pyrs-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3e57500f5556f708bac1b92de94522e849a0a876b7ca9a0053237d62b4d6839 |
|
MD5 | 0521c0437eb9e3e90e39d1ceedbd789b |
|
BLAKE2b-256 | c2e716375de20aa024a1be5616638d93d01b70a2d3ccb1d83bdc2b38f2d0dd3d |