markdown-it-pyrs


Namemarkdown-it-pyrs JSON
Version 0.3.0 PyPI version JSON
download
home_pageNone
SummaryA Python interface for markdown-it.rs, using Rust for blazingly fast Markdown parsing ⚡️
upload_time2023-08-04 12:48:08
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords markdown lexer parser commonmark markdown-it
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # markdown-it-pyrs

[![PyPI][pypi-badge]][pypi-link]

[pypi-badge]: https://img.shields.io/pypi/v/markdown-it-pyrs.svg
[pypi-link]: https://pypi.org/project/markdown-it-pyrs

<p align="center">
  <img alt="markdown-it-pyrs icon" src="https://raw.githubusercontent.com/chrisjsewell/markdown-it-pyrs/main/docs/_static/markdown-it.rs.svg">
</p>

**Currently in Beta, feedback welcome!**

A Python interface for [markdown-it.rs](https://github.com/rlidwka/markdown-it.rs) (and [plugins](https://github.com/chrisjsewell/markdown-it-plugins.rs)), 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](https://github.com/ExecutableBookProject/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:

1. Parser plugins cannot currently be written in Python and added dynamically to the parser.
2. It can be more difficult to integrate into environments like [pyiodide](https://pyodide.org) 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:

```bash
pip install markdown-it-pyrs
```

Then use it like you would `markdown-it-py`:

```python
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)

```python
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.

```python
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:

```bash
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 blocks
- `fence`: Backtick code blocks
- `heading`: `#` ATX headings
- `hr`: `---` horizontal rules
- `lheading`: `---` underline setext headings
- `list`: `*` unordered lists and `1.` ordered lists
- `paragraph`: Paragraphs
- `reference`: Link reference definitions `[id]: src "title"`

CommonMark Inlines:

- `autolink`: `<http://example.com>`
- `backticks`: `` `code` ``
- `emphasis`: `_emphasis_`, `*emphasis*`, `**strong**`, `__strong__`
- `entity`: `&amp;`
- `escape`: backslash escaping `\`
- `image`: `![alt](src "title")`
- `link`: `[text](src "title")`, `[text][id]`, `[text]`
- `newline`: hard line breaks
- `html_block`: HTML blocks
- `html_inline`: HTML inline

GitHub Flavoured Markdown (<https://github.github.com/gfm>):

- `table`:

  ```markdown
  | foo | bar |
  | --- | --- |
  | baz | bim |
  ```
- `strikethrough`: `~~strikethrough~~`
- `tasklist`: `- [x] tasklist item`
- `autolink_ext`: Extended autolink detection with "bare URLs" like `https://example.com` and `www.example.com`
- `tagfilter`: HTML tag filtering, e.g. `<script>` tags are removed

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 `“`
- `linkify`: Automatically linkify URLs with <https://crates.io/crates/linkify> (note currently this only matches URLs with a scheme, e.g. `https://example.com`)
- `heading_anchors`: Add heading anchors, with defaults like GitHub
- `front_matter`: YAML front matter
- `footnote`: Pandoc-style footnotes (see <https://pandoc.org/MANUAL.html#footnotes>)
- `deflist`: Definition lists (see <https://pandoc.org/MANUAL.html#definition-lists>)

## Development

I'm quite new to Rust, so if you see something that could be improved, issues and PRs are welcome!

[PyO3](https://pyo3.rs) and [Maturin](https://www.maturin.rs) are used to build the Python package, by wrapping [markdown-it.rs](https://github.com/rlidwka/markdown-it.rs) in a Python module.

[pre-commit](https://pre-commit.com) is used to run code formatting and linting checks, and [tox](https://tox.readthedocs.io) is used to run tests.

### TODO

Improvements:

- Allow to override options:
  - lang_prefix: Prefix for language classes on fenced code blocks
  - quotes: Quote characters, for smart quotes

- Add plugins: ...

- Allow options for plugins:
  - heading anchors
  - tasklist checkboxes to be disabled
  - footnotes with options to turn on/off inline/collect/backrefs

Open issue upstream:

- no `text_join` rule (to join adjacent `text` and `text_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 in AST
- 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
- 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. the `InlineParserRule`
- 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 the `check` function), I think this would then allow behaviour similar to what `alt` did (possibly needed for footnote definition parsing)
  - In general though, where back-compatibility is not required, I agree with [djot](https://github.com/jgm/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 a `NodeValue` implementation? (rather than if/else for `Node.cast`)
- Rule priority as an integer (similar to RST transform priority)
  - Currently can only specify `before` or `after` another rule or all rules
  - Can feel a little unclear for plugins, when to use attrs and when to add fields to node value.

Maintenance:


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "markdown-it-pyrs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "markdown,lexer,parser,commonmark,markdown-it",
    "author": null,
    "author_email": "Chris Sewell <chrisj_sewell@hotmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/50/9f/c4f190f7de01298d9a6ec8b751ed9b5a9823e14e81cb6f54b2f7fd6cf01c/markdown_it_pyrs-0.3.0.tar.gz",
    "platform": null,
    "description": "# markdown-it-pyrs\n\n[![PyPI][pypi-badge]][pypi-link]\n\n[pypi-badge]: https://img.shields.io/pypi/v/markdown-it-pyrs.svg\n[pypi-link]: https://pypi.org/project/markdown-it-pyrs\n\n<p align=\"center\">\n  <img alt=\"markdown-it-pyrs icon\" src=\"https://raw.githubusercontent.com/chrisjsewell/markdown-it-pyrs/main/docs/_static/markdown-it.rs.svg\">\n</p>\n\n**Currently in Beta, feedback welcome!**\n\nA Python interface for [markdown-it.rs](https://github.com/rlidwka/markdown-it.rs) (and [plugins](https://github.com/chrisjsewell/markdown-it-plugins.rs)), using Rust for blazingly fast Markdown parsing \u26a1\ufe0f\n\nThe goal of this project is to provide a fast, safe, extensible, and easy-to-use Markdown parser for Python.\nIt is complimentary to [markdown-it-py](https://github.com/ExecutableBookProject/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.\n\nIf you care primarily about speed, this is the library for you.\nFor example, benchmarking the two libraries when parsing the CommonMark Spec file, markdown-it-pyrs is **20x faster than markdown-it-py**.\n\nName (time, ms)  |   Min   |   Max   |  Mean   | Rounds\n---------------- | ------- | ------- | ------- | ------\nmarkdown-it-pyrs | 5.217   | 7.969   | 5.968   | 85\nmarkdown-it-py   | 122.696 | 143.246 | 131.431 | 7\n\nThe drawback is that the library vendors compiled Rust code, and so:\n\n1. Parser plugins cannot currently be written in Python and added dynamically to the parser.\n2. It can be more difficult to integrate into environments like [pyiodide](https://pyodide.org) and py-script (but maybe not for long: <https://discuss.python.org/t/support-wasm-wheels-on-pypi/21924/3>).\n\n## Usage\n\nFirst install the package:\n\n```bash\npip install markdown-it-pyrs\n```\n\nThen use it like you would `markdown-it-py`:\n\n```python\nfrom markdown_it_pyrs import MarkdownIt\n\nmd = MarkdownIt(\"commonmark\").enable(\"table\")\nmd.render(\"# Hello, world!\")\n# '<h1>Hello, world!</h1>\\n'\n```\n\n`markdown-it.rs` does not generate a token stream, but instead directly generates a `Node` tree.\nThis is similar to the `markdown-it-py`'s `SyntaxTreeNode` class, although the API is not identical.\n(source mapping is also provided by byte-offset, rather than line only)\n\n```python\nmd = (\n  MarkdownIt(\"commonmark\")\n  .enable(\"table\")\n  .enable_many([\"linkify\", \"strikethrough\"])\n)\nnode = md.tree(\"# Hello, world!\")\nprint(node.walk())\n# [Node(root), Node(heading), Node(text)]\nprint(node.pretty(srcmap=True, meta=True))\n# <root srcmap=\"0:15\">\n#   <heading srcmap=\"0:15\">\n#     level: 1\n#     <text srcmap=\"2:15\">\n#       content: Hello, world!\n```\n\n**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.\n\n```python\nfrom markdown_it_pyrs import Node\nnode = Node(\"name\")\n# don't do this!\nnode.attrs[\"key\"] = \"value\"\nprint(node.attrs) # {}\n# do this instead (Python 3.9+)\nnode.attrs = node.attrs | {\"key\": \"value\"}\nprint(node.attrs) # {\"key\": \"value\"}\n# Node.children is only a shallow copy though, so this is fine\nchild = Node(\"child\")\nnode.children = [child]\nnode.children[0].name = \"other\"\nprint(child.name) # \"other\"\n```\n\n### Command Line Interface\n\nA CLI is also provided, which can be used like this:\n\n```bash\necho \"# Hello, world!\" | markdown-it-pyrs html -\n# <h1>Hello, world!</h1>\necho \"# Hello, world!\" | markdown-it-pyrs ast -\n# <root>\n#   <heading>\n#     <text>\n```\n\nReplace `-` with a filename to read from a file,\nand see `markdown-it-pyrs --help` for more options,\nincluding initial configuration and enabling plugins.\n\n## Initial Configuration\n\nInitialising `MarkdownIt(\"zero\")` will not enable any plugins, and so you can add only the ones you need.\n\nUse `MarkdownIt(\"commonmark\")` to enable all the CommonMark plugins.\n\nUse `MarkdownIt(\"gfm\")` to enable all the CommonMark plugins, plus the GitHub Flavoured Markdown plugins.\n\n## Plugins\n\nAll syntax rules in `markdown-it.rs` are implemented as plugins.\nPlugins can be added to the parser by calling `enable` or `enable_many` with the name of the plugin.\nThe following plugins are currently supported:\n\nCommonMark Blocks:\n\n- `blockquote`: Block quotes with `>`\n- `code`: Indented code blocks\n- `fence`: Backtick code blocks\n- `heading`: `#` ATX headings\n- `hr`: `---` horizontal rules\n- `lheading`: `---` underline setext headings\n- `list`: `*` unordered lists and `1.` ordered lists\n- `paragraph`: Paragraphs\n- `reference`: Link reference definitions `[id]: src \"title\"`\n\nCommonMark Inlines:\n\n- `autolink`: `<http://example.com>`\n- `backticks`: `` `code` ``\n- `emphasis`: `_emphasis_`, `*emphasis*`, `**strong**`, `__strong__`\n- `entity`: `&amp;`\n- `escape`: backslash escaping `\\`\n- `image`: `![alt](src \"title\")`\n- `link`: `[text](src \"title\")`, `[text][id]`, `[text]`\n- `newline`: hard line breaks\n- `html_block`: HTML blocks\n- `html_inline`: HTML inline\n\nGitHub Flavoured Markdown (<https://github.github.com/gfm>):\n\n- `table`:\n\n  ```markdown\n  | foo | bar |\n  | --- | --- |\n  | baz | bim |\n  ```\n- `strikethrough`: `~~strikethrough~~`\n- `tasklist`: `- [x] tasklist item`\n- `autolink_ext`: Extended autolink detection with \"bare URLs\" like `https://example.com` and `www.example.com`\n- `tagfilter`: HTML tag filtering, e.g. `<script>` tags are removed\n\nOthers:\n\n- `sourcepos`: Add source mapping to rendered HTML, looks like this: `<stuff data-sourcepos=\"1:1-2:3\">`, i.e. `line:col-line:col`\n- `replacements`: Typographic replacements, like `--` to `\u2014`\n- `smartquotes`: Smart quotes, like `\"` to `\u201c`\n- `linkify`: Automatically linkify URLs with <https://crates.io/crates/linkify> (note currently this only matches URLs with a scheme, e.g. `https://example.com`)\n- `heading_anchors`: Add heading anchors, with defaults like GitHub\n- `front_matter`: YAML front matter\n- `footnote`: Pandoc-style footnotes (see <https://pandoc.org/MANUAL.html#footnotes>)\n- `deflist`: Definition lists (see <https://pandoc.org/MANUAL.html#definition-lists>)\n\n## Development\n\nI'm quite new to Rust, so if you see something that could be improved, issues and PRs are welcome!\n\n[PyO3](https://pyo3.rs) and [Maturin](https://www.maturin.rs) are used to build the Python package, by wrapping [markdown-it.rs](https://github.com/rlidwka/markdown-it.rs) in a Python module.\n\n[pre-commit](https://pre-commit.com) is used to run code formatting and linting checks, and [tox](https://tox.readthedocs.io) is used to run tests.\n\n### TODO\n\nImprovements:\n\n- Allow to override options:\n  - lang_prefix: Prefix for language classes on fenced code blocks\n  - quotes: Quote characters, for smart quotes\n\n- Add plugins: ...\n\n- Allow options for plugins:\n  - heading anchors\n  - tasklist checkboxes to be disabled\n  - footnotes with options to turn on/off inline/collect/backrefs\n\nOpen issue upstream:\n\n- no `text_join` rule (to join adjacent `text` and `text_special` tokens)\n- `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\n- Capture reference nodes in AST\n- disable rules\n- better \"cross-language\" AST representation\n- differing behaviour of linkify and normalize_url/commonmark_extras test failures\n- quote characters for smart-quotes and lang_prefix for fence\n  should both be variable at run-time? (currently they both must be compiled)\n- fix docstring in `examples/ferris/block_rule.rs::FerrisBlockScanner::run`,\n  which currently describes the JS API not the new rust one\n- 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>)\n- 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. the `InlineParserRule`\n- 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 the `check` function), I think this would then allow behaviour similar to what `alt` did (possibly needed for footnote definition parsing)\n  - In general though, where back-compatibility is not required, I agree with [djot](https://github.com/jgm/djot) goal 7, i.e. that block elements should not be allowed to interrupt other block elements without a newline\n- The possibility to return multiple (sequential) nodes from an `InlineRule.run`, e.g. `((node1, length1), (node2, length2), ...)`\n  - This would be similar to docutils\n- In the `Node` walk methods, allow the function to return something to indicate whether to continue walking the children of the node\n  - Also in walk, parse the \"path\" to get to the current node, e.g. list of parent nodes, to allow for backtracing\n  - similar to <https://github.com/syntax-tree/unist-util-visit-parents>, <https://github.com/syntax-tree/unist-util-visit>, etc\n- is there a way to use a `match` statement, to match a Node against a `NodeValue` implementation? (rather than if/else for `Node.cast`)\n- Rule priority as an integer (similar to RST transform priority)\n  - Currently can only specify `before` or `after` another rule or all rules\n  - Can feel a little unclear for plugins, when to use attrs and when to add fields to node value.\n\nMaintenance:\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Python interface for markdown-it.rs, using Rust for blazingly fast Markdown parsing \u26a1\ufe0f",
    "version": "0.3.0",
    "project_urls": {
        "Homepage": "https://github.com/chrisjsewell/markdown-it-pyrs"
    },
    "split_keywords": [
        "markdown",
        "lexer",
        "parser",
        "commonmark",
        "markdown-it"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9e9de227ac0a1599fa170b7ba1b29e85fc2a3a7378d4f6f3087525f3132c25b",
                "md5": "1d54cb2a173a47e29a07d5ab18dfd5da",
                "sha256": "b92f530e9684e1a432363833d75a8431c24e5bfb79f9ab4b1fb51df737b64b99"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d54cb2a173a47e29a07d5ab18dfd5da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1250846,
            "upload_time": "2023-08-04T12:46:24",
            "upload_time_iso_8601": "2023-08-04T12:46:24.442408Z",
            "url": "https://files.pythonhosted.org/packages/d9/e9/de227ac0a1599fa170b7ba1b29e85fc2a3a7378d4f6f3087525f3132c25b/markdown_it_pyrs-0.3.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b537de07819014423da4a3a2cbb42530af36f42179c89e04bba921ba1bc71f1b",
                "md5": "6564a6dab26cd93c10640cdc2b0d90fa",
                "sha256": "789a6bb599fd9bcce1d9ee38e408ed7f4ac0a20beaf4df8f4ef9042e4e5e94cf"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6564a6dab26cd93c10640cdc2b0d90fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1189312,
            "upload_time": "2023-08-04T12:46:26",
            "upload_time_iso_8601": "2023-08-04T12:46:26.363977Z",
            "url": "https://files.pythonhosted.org/packages/b5/37/de07819014423da4a3a2cbb42530af36f42179c89e04bba921ba1bc71f1b/markdown_it_pyrs-0.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b5bbc5da263c1473bf9958556bd3198db953f6d78baf54e4672380396d2a100",
                "md5": "1fc740b69dc5cbcae007f4d83e1a69c8",
                "sha256": "a2b014c38d23f27825b480273db25abd1c38e7885a4956858b4852c49d7373d7"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1fc740b69dc5cbcae007f4d83e1a69c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2275457,
            "upload_time": "2023-08-04T12:46:28",
            "upload_time_iso_8601": "2023-08-04T12:46:28.588015Z",
            "url": "https://files.pythonhosted.org/packages/4b/5b/bc5da263c1473bf9958556bd3198db953f6d78baf54e4672380396d2a100/markdown_it_pyrs-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20dd7bfc835aa8b3d36d07eb4a9a359ec31e02f756bcccefccc5f856d36824ad",
                "md5": "45f458b70153e39affd1bad9fd9949e0",
                "sha256": "8c0d1154db7017ef89bfc589d6e090305c305431f38139733c15c0927802092c"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "45f458b70153e39affd1bad9fd9949e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2196719,
            "upload_time": "2023-08-04T12:46:30",
            "upload_time_iso_8601": "2023-08-04T12:46:30.156071Z",
            "url": "https://files.pythonhosted.org/packages/20/dd/7bfc835aa8b3d36d07eb4a9a359ec31e02f756bcccefccc5f856d36824ad/markdown_it_pyrs-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9bfb67afdfb4d46820fb5353f622b6ef47d3a7c3d9b8b45b78bcb52be5cc245b",
                "md5": "f2db21663d1197274a63c35d46353e65",
                "sha256": "ee4fa7ef0781b6dee826a52d92780f32e69ce9991cde31e6e1d63f04ac6f3f7e"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f2db21663d1197274a63c35d46353e65",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2457710,
            "upload_time": "2023-08-04T12:46:32",
            "upload_time_iso_8601": "2023-08-04T12:46:32.017042Z",
            "url": "https://files.pythonhosted.org/packages/9b/fb/67afdfb4d46820fb5353f622b6ef47d3a7c3d9b8b45b78bcb52be5cc245b/markdown_it_pyrs-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98bb10616696648d9231e54261154d4faedca28a2c7aae068ce2c153538431a1",
                "md5": "197404d8269f3d235427c425fcd9d51e",
                "sha256": "3553173571a4717679b68677d2b06bcb4bc7df268f52b889e1c45af5db804d10"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "197404d8269f3d235427c425fcd9d51e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2265389,
            "upload_time": "2023-08-04T12:46:34",
            "upload_time_iso_8601": "2023-08-04T12:46:34.479809Z",
            "url": "https://files.pythonhosted.org/packages/98/bb/10616696648d9231e54261154d4faedca28a2c7aae068ce2c153538431a1/markdown_it_pyrs-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21590490751ba54161b8157cf05fad7554529f872775d25ed08b0ea89a10a5e8",
                "md5": "a6f27372c9401fb939ca70e5db0542f6",
                "sha256": "feafe9e8c4f78caec1c870650720ced2a24a320a6edfed981f16916f0951c367"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a6f27372c9401fb939ca70e5db0542f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2304825,
            "upload_time": "2023-08-04T12:46:36",
            "upload_time_iso_8601": "2023-08-04T12:46:36.806032Z",
            "url": "https://files.pythonhosted.org/packages/21/59/0490751ba54161b8157cf05fad7554529f872775d25ed08b0ea89a10a5e8/markdown_it_pyrs-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f360892dbd08f392e7286fbf4e3d9f0eefeb89295c6df8cf9a4bb0657ecb6897",
                "md5": "2a2de57e65fc5752c317546afe5c6be4",
                "sha256": "0ad20f135ba19713d2a97f9ec93ec3a20ec0784028f77153372be2501bd996ef"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2a2de57e65fc5752c317546afe5c6be4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 914847,
            "upload_time": "2023-08-04T12:46:38",
            "upload_time_iso_8601": "2023-08-04T12:46:38.356234Z",
            "url": "https://files.pythonhosted.org/packages/f3/60/892dbd08f392e7286fbf4e3d9f0eefeb89295c6df8cf9a4bb0657ecb6897/markdown_it_pyrs-0.3.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "371e6aceaf56f0a7b6227ca5f4e9c56d19c14d67e4032ba539fe8beb8df2d534",
                "md5": "edc36f6dcaa8dd6920ccc022c4f2d72f",
                "sha256": "143b6b95c26e47a5e1ff3c20a2fdc5644050482815bc15e9b2ef7afcdd524a30"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "edc36f6dcaa8dd6920ccc022c4f2d72f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 964914,
            "upload_time": "2023-08-04T12:46:40",
            "upload_time_iso_8601": "2023-08-04T12:46:40.541565Z",
            "url": "https://files.pythonhosted.org/packages/37/1e/6aceaf56f0a7b6227ca5f4e9c56d19c14d67e4032ba539fe8beb8df2d534/markdown_it_pyrs-0.3.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "805af28af0a3a14341ba311c04947532906d21b9943e3c1d51ba0df45ee1e5a6",
                "md5": "172ee0570ded62027e647affc35c14b0",
                "sha256": "6b848d5473c8d0b19e4296cb73e08ad5a811946d0cc100f7fdcaa1d00a590a39"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "172ee0570ded62027e647affc35c14b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1250841,
            "upload_time": "2023-08-04T12:46:42",
            "upload_time_iso_8601": "2023-08-04T12:46:42.824065Z",
            "url": "https://files.pythonhosted.org/packages/80/5a/f28af0a3a14341ba311c04947532906d21b9943e3c1d51ba0df45ee1e5a6/markdown_it_pyrs-0.3.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9447ce984ec27a67024e17fb548ef46f9911ca73fa5f6f474def7be4ba212548",
                "md5": "cf16ff863df66cae575973379ef0f5d2",
                "sha256": "40ffa8298744b6bd4cb27f16b53ab5a54ae2ae1d8d0d49183b9935eb6bff2a53"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cf16ff863df66cae575973379ef0f5d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1189312,
            "upload_time": "2023-08-04T12:46:45",
            "upload_time_iso_8601": "2023-08-04T12:46:45.041919Z",
            "url": "https://files.pythonhosted.org/packages/94/47/ce984ec27a67024e17fb548ef46f9911ca73fa5f6f474def7be4ba212548/markdown_it_pyrs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd7d105a4f6746964888aa84d2f3ccb5c2c29355d1166242c3d88f79dbe55d92",
                "md5": "f915e90f72512a79f756ab3593598967",
                "sha256": "2914feca8bb29c908d93611062bee387cf219d60ad1b079d1ae366eabb6046ae"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f915e90f72512a79f756ab3593598967",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2275598,
            "upload_time": "2023-08-04T12:46:47",
            "upload_time_iso_8601": "2023-08-04T12:46:47.308569Z",
            "url": "https://files.pythonhosted.org/packages/fd/7d/105a4f6746964888aa84d2f3ccb5c2c29355d1166242c3d88f79dbe55d92/markdown_it_pyrs-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30e402d9c51215426b35baff36071fd0a434499cd561f70e12c4ec514ce696ab",
                "md5": "4d9aec0ff4bdefa22929e5aef11df592",
                "sha256": "c68da667270f508b29d04fb73d3849f59a39f38d05c4a4b546b4e3a40123bf54"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4d9aec0ff4bdefa22929e5aef11df592",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2196700,
            "upload_time": "2023-08-04T12:46:49",
            "upload_time_iso_8601": "2023-08-04T12:46:49.523130Z",
            "url": "https://files.pythonhosted.org/packages/30/e4/02d9c51215426b35baff36071fd0a434499cd561f70e12c4ec514ce696ab/markdown_it_pyrs-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a6344b363c7505ea7e958b53b94a7e1c5fed000a228fb8f721b262db61f899e",
                "md5": "6aa5d8aedd1940b191d9c4ac1272fcc0",
                "sha256": "a7874379625ff6775215a4eaacc3c3e3e2b100fd9c818e039d05b7ef521b8c6a"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6aa5d8aedd1940b191d9c4ac1272fcc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2457699,
            "upload_time": "2023-08-04T12:46:52",
            "upload_time_iso_8601": "2023-08-04T12:46:52.424296Z",
            "url": "https://files.pythonhosted.org/packages/1a/63/44b363c7505ea7e958b53b94a7e1c5fed000a228fb8f721b262db61f899e/markdown_it_pyrs-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74e1ef8919820f6af8ccddceb64c9590bd566b2accdd2df04cedbb555c632051",
                "md5": "070a146129948fbb4d394f75d3c0325b",
                "sha256": "45f5209be8fcd0c1470d71eccc3fd21f239b7228076deb538f87076245052702"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "070a146129948fbb4d394f75d3c0325b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2265345,
            "upload_time": "2023-08-04T12:46:54",
            "upload_time_iso_8601": "2023-08-04T12:46:54.929270Z",
            "url": "https://files.pythonhosted.org/packages/74/e1/ef8919820f6af8ccddceb64c9590bd566b2accdd2df04cedbb555c632051/markdown_it_pyrs-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d9fabca380ccd3a49c2a096c5335f4625b22c928dcb512fe3408940186d022f",
                "md5": "c0ead71b34219fa680de3453942e6f56",
                "sha256": "44b1de9911a8c0a76ad0bf64bb6815e53670391a079677850f5b6db6b23dbe09"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c0ead71b34219fa680de3453942e6f56",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2304707,
            "upload_time": "2023-08-04T12:46:56",
            "upload_time_iso_8601": "2023-08-04T12:46:56.565049Z",
            "url": "https://files.pythonhosted.org/packages/9d/9f/abca380ccd3a49c2a096c5335f4625b22c928dcb512fe3408940186d022f/markdown_it_pyrs-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ec7f03cbe9356f068f09a9a62d289ac4c12fe629477943920862c2a0a108418",
                "md5": "4ea4226de1f6fee2dc6aaf77ff236d96",
                "sha256": "2373e0d23f73db4a182ae11e67c42542ea0ca0e7b2e6697daf84f7ac8ba32f33"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4ea4226de1f6fee2dc6aaf77ff236d96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 914847,
            "upload_time": "2023-08-04T12:46:58",
            "upload_time_iso_8601": "2023-08-04T12:46:58.873302Z",
            "url": "https://files.pythonhosted.org/packages/6e/c7/f03cbe9356f068f09a9a62d289ac4c12fe629477943920862c2a0a108418/markdown_it_pyrs-0.3.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79c12940f0f88b50864357f5c3d3aca06d0b482b737537a2f3d6046770063b36",
                "md5": "0943736b887f937c7e7ca4d57124fa7c",
                "sha256": "5f112e17e669a6c14c93c81c2522288d4bd65d276b2cc038ceca9401d3871786"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0943736b887f937c7e7ca4d57124fa7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 964930,
            "upload_time": "2023-08-04T12:47:00",
            "upload_time_iso_8601": "2023-08-04T12:47:00.478677Z",
            "url": "https://files.pythonhosted.org/packages/79/c1/2940f0f88b50864357f5c3d3aca06d0b482b737537a2f3d6046770063b36/markdown_it_pyrs-0.3.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdc76bdafb30f95a06a942f878c0ac45e4c466df395cf3bab9f2334e16d603f5",
                "md5": "ff748ff148ab7f47de3da9011b52309d",
                "sha256": "0bd75925e1f2e205c30f8269bb57f77fcec4a8aa78ea1f478da9e50f1ea2f3d5"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ff748ff148ab7f47de3da9011b52309d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2273526,
            "upload_time": "2023-08-04T12:47:02",
            "upload_time_iso_8601": "2023-08-04T12:47:02.116471Z",
            "url": "https://files.pythonhosted.org/packages/fd/c7/6bdafb30f95a06a942f878c0ac45e4c466df395cf3bab9f2334e16d603f5/markdown_it_pyrs-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c106f557cf9ae59ffce4aa37cdc29ae9775f706caa15abc82f861dfc84ca56fa",
                "md5": "582cde4fce452bd89fecf8d034feeec1",
                "sha256": "806581916362c39913f1bc34b6b0cfa6ff4b753045ef53b389e161132f9bec5a"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "582cde4fce452bd89fecf8d034feeec1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2193664,
            "upload_time": "2023-08-04T12:47:04",
            "upload_time_iso_8601": "2023-08-04T12:47:04.267631Z",
            "url": "https://files.pythonhosted.org/packages/c1/06/f557cf9ae59ffce4aa37cdc29ae9775f706caa15abc82f861dfc84ca56fa/markdown_it_pyrs-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f65310d1b267fc98b2bcf05303d099890e7c0b5aa577ce8d576622d5a258ad7f",
                "md5": "2b6b8fae7dd10119eeb5b2a7ba915627",
                "sha256": "108a29af50cf444ba1480d53b2f5907c925c90a6be350feed0d39551abc96ba2"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2b6b8fae7dd10119eeb5b2a7ba915627",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2453530,
            "upload_time": "2023-08-04T12:47:06",
            "upload_time_iso_8601": "2023-08-04T12:47:06.729035Z",
            "url": "https://files.pythonhosted.org/packages/f6/53/10d1b267fc98b2bcf05303d099890e7c0b5aa577ce8d576622d5a258ad7f/markdown_it_pyrs-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3e2f5ea7afc0ed2f8d45573392de40373c7d46ae74031cdfe9caa46242688df",
                "md5": "917e41a65d5a437c9a1e3ea6b017c14b",
                "sha256": "9def6de16027203f4b06939cd08d0ae0ac197a46b71f414622ba9950fe76c383"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "917e41a65d5a437c9a1e3ea6b017c14b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2263578,
            "upload_time": "2023-08-04T12:47:09",
            "upload_time_iso_8601": "2023-08-04T12:47:09.041646Z",
            "url": "https://files.pythonhosted.org/packages/c3/e2/f5ea7afc0ed2f8d45573392de40373c7d46ae74031cdfe9caa46242688df/markdown_it_pyrs-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7695a594d7fc5b99f163321594d013a8d90b258d4971c46da67f4bbad10a2d9",
                "md5": "4ff7c1f7c1857bc4aa9afc4585d9936a",
                "sha256": "611e07531cd153e8f07fef693c549c42a4222c840b3856e5b36bc1bb1596c6c4"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "4ff7c1f7c1857bc4aa9afc4585d9936a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2303095,
            "upload_time": "2023-08-04T12:47:10",
            "upload_time_iso_8601": "2023-08-04T12:47:10.967101Z",
            "url": "https://files.pythonhosted.org/packages/a7/69/5a594d7fc5b99f163321594d013a8d90b258d4971c46da67f4bbad10a2d9/markdown_it_pyrs-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f3a00f531fee3a8065702386ccbde7e248d4f11f64c98d0ddb3aeee831ca1aa",
                "md5": "f380bfeeda977c4cba8f8e3f8accb4b3",
                "sha256": "d642995fcbfa5d593cf3f300fe5c354457548e081c5af2c96195d1a022a86638"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f380bfeeda977c4cba8f8e3f8accb4b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2275430,
            "upload_time": "2023-08-04T12:47:12",
            "upload_time_iso_8601": "2023-08-04T12:47:12.887216Z",
            "url": "https://files.pythonhosted.org/packages/1f/3a/00f531fee3a8065702386ccbde7e248d4f11f64c98d0ddb3aeee831ca1aa/markdown_it_pyrs-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31173a17157b91b112c0ed477b4e055869549e1dc1c72e7fa447b69b28cc1baa",
                "md5": "919d7b8267d606d789e2e86d47836f91",
                "sha256": "7568b353b078e84ca1709059e457823f11a527004f69c20d98cf92e79de7a95b"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "919d7b8267d606d789e2e86d47836f91",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2196907,
            "upload_time": "2023-08-04T12:47:14",
            "upload_time_iso_8601": "2023-08-04T12:47:14.853651Z",
            "url": "https://files.pythonhosted.org/packages/31/17/3a17157b91b112c0ed477b4e055869549e1dc1c72e7fa447b69b28cc1baa/markdown_it_pyrs-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c36112a918ff527fc137934a01b062cce752d8bf44b5524852aeb6721c691fe5",
                "md5": "8a99b53a8bd0254bd5caf65cd0523861",
                "sha256": "0787989160a4537c2336ea9aed2dbbd4aa97828d5b5d2978f253109ca7d9b160"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8a99b53a8bd0254bd5caf65cd0523861",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2457506,
            "upload_time": "2023-08-04T12:47:16",
            "upload_time_iso_8601": "2023-08-04T12:47:16.652832Z",
            "url": "https://files.pythonhosted.org/packages/c3/61/12a918ff527fc137934a01b062cce752d8bf44b5524852aeb6721c691fe5/markdown_it_pyrs-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4ceb70380bd03b7ca040f6fca20298cf76736d46c4e1fab88b6219e6e1c2d94",
                "md5": "513172415a8cf318c72bf720986da979",
                "sha256": "c9a175b33f0b1180b858329cf10a1cb24b8db1dd74f657f49a2abe52e03540fb"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "513172415a8cf318c72bf720986da979",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2265543,
            "upload_time": "2023-08-04T12:47:18",
            "upload_time_iso_8601": "2023-08-04T12:47:18.565936Z",
            "url": "https://files.pythonhosted.org/packages/f4/ce/b70380bd03b7ca040f6fca20298cf76736d46c4e1fab88b6219e6e1c2d94/markdown_it_pyrs-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "235b5f7b5e98ac5645e229cd33ebec3aeae4b6e4ffc7d9c828f801eb2e7b2993",
                "md5": "0b37e53cca23f8f839a0109d98252013",
                "sha256": "81bee03530b3bd3acfb8a887beed2affb6643aab9a2c53c87da6946d10d3fb73"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0b37e53cca23f8f839a0109d98252013",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2305030,
            "upload_time": "2023-08-04T12:47:20",
            "upload_time_iso_8601": "2023-08-04T12:47:20.313092Z",
            "url": "https://files.pythonhosted.org/packages/23/5b/5f7b5e98ac5645e229cd33ebec3aeae4b6e4ffc7d9c828f801eb2e7b2993/markdown_it_pyrs-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b34c2a41747c3e29b464b8fc11d001561e72b32777f4a9ce2a99afc5e9345e0",
                "md5": "720bb96fb968596633f293c48c03b230",
                "sha256": "b962347948c1ca60bfd88e4e4fae31dbe13fe54a0b151f4ed73ec43b6c445cf0"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "720bb96fb968596633f293c48c03b230",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 915165,
            "upload_time": "2023-08-04T12:47:22",
            "upload_time_iso_8601": "2023-08-04T12:47:22.533337Z",
            "url": "https://files.pythonhosted.org/packages/2b/34/c2a41747c3e29b464b8fc11d001561e72b32777f4a9ce2a99afc5e9345e0/markdown_it_pyrs-0.3.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "604bc28864806eb6dee97b960c83463cc82fe3cd8347be4240e6aa114704ea4c",
                "md5": "85bbadb9a3c88ddfb19a8c7f827bc7d2",
                "sha256": "13b9c65ceadf71c320095fe1b90a8d6f1c5279409b493ffe100ce776e157313b"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "85bbadb9a3c88ddfb19a8c7f827bc7d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 964427,
            "upload_time": "2023-08-04T12:47:24",
            "upload_time_iso_8601": "2023-08-04T12:47:24.094684Z",
            "url": "https://files.pythonhosted.org/packages/60/4b/c28864806eb6dee97b960c83463cc82fe3cd8347be4240e6aa114704ea4c/markdown_it_pyrs-0.3.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87af1bafc6ff53610f2166049522be70e6e0657c5004d81afa59a63f39954015",
                "md5": "997ddbf8c7267257cc438ceb53e8229c",
                "sha256": "09b92b86592a214ca0af72a329f2332db7fb3f89930690138d2f73bdfb1408ce"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "997ddbf8c7267257cc438ceb53e8229c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2276455,
            "upload_time": "2023-08-04T12:47:25",
            "upload_time_iso_8601": "2023-08-04T12:47:25.891195Z",
            "url": "https://files.pythonhosted.org/packages/87/af/1bafc6ff53610f2166049522be70e6e0657c5004d81afa59a63f39954015/markdown_it_pyrs-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "070ee953187b9e0066ac8a6c9ba8eb076362457788898a9013f99b4202b1e3ad",
                "md5": "612f3aee2d9f2a76882bb0d868d14b82",
                "sha256": "f35ac607fbe033d28ed328477300e90f35ab908ef8baefb000a3dd104f1db834"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "612f3aee2d9f2a76882bb0d868d14b82",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2196804,
            "upload_time": "2023-08-04T12:47:27",
            "upload_time_iso_8601": "2023-08-04T12:47:27.801440Z",
            "url": "https://files.pythonhosted.org/packages/07/0e/e953187b9e0066ac8a6c9ba8eb076362457788898a9013f99b4202b1e3ad/markdown_it_pyrs-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c749d07cf4552f0867547f2c216682549cc32ce5961c2aa32a05472bb3beeff",
                "md5": "3905f942523352504767b404272aa456",
                "sha256": "64be6b972bed0ca9c2d7937f0cd41dda58886a73e08bbc8fd1c7430a9af5769b"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3905f942523352504767b404272aa456",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2458525,
            "upload_time": "2023-08-04T12:47:29",
            "upload_time_iso_8601": "2023-08-04T12:47:29.662171Z",
            "url": "https://files.pythonhosted.org/packages/8c/74/9d07cf4552f0867547f2c216682549cc32ce5961c2aa32a05472bb3beeff/markdown_it_pyrs-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22a33884fcd0dd16a9d03b140e744131a4d637b7b37a096c4468a76b59491f21",
                "md5": "890f6e154b37a55eefb21ccd246585f7",
                "sha256": "2b1228ade486e24ec3a2c047836755b105e1c67f20f9d2534c29e6986ddbf828"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "890f6e154b37a55eefb21ccd246585f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2266072,
            "upload_time": "2023-08-04T12:47:32",
            "upload_time_iso_8601": "2023-08-04T12:47:32.324375Z",
            "url": "https://files.pythonhosted.org/packages/22/a3/3884fcd0dd16a9d03b140e744131a4d637b7b37a096c4468a76b59491f21/markdown_it_pyrs-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d0f2c6bad5bf1f9afe2d9cfb17d2c655a9690f2b163c77b3d3a1f6a7ebc1a48",
                "md5": "2b7bd534514164059d1cc8d9b3a03384",
                "sha256": "bdfbcfae3af4e09ef115b605cecf96b57eecdf71345c52d42f0e99a2556d9cda"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2b7bd534514164059d1cc8d9b3a03384",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2305324,
            "upload_time": "2023-08-04T12:47:34",
            "upload_time_iso_8601": "2023-08-04T12:47:34.039197Z",
            "url": "https://files.pythonhosted.org/packages/0d/0f/2c6bad5bf1f9afe2d9cfb17d2c655a9690f2b163c77b3d3a1f6a7ebc1a48/markdown_it_pyrs-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8192cb9b6b8e331a3c6eae789644d2710351aa3aecf65b0cd778e9c60c6c2453",
                "md5": "92d588228e2a481ac00a59e1e7b91671",
                "sha256": "1dd1e6a91ee540d34a80084e9c060ee8ddaa8fe7083bc25d8439f698033f8cf6"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "92d588228e2a481ac00a59e1e7b91671",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 914978,
            "upload_time": "2023-08-04T12:47:36",
            "upload_time_iso_8601": "2023-08-04T12:47:36.242180Z",
            "url": "https://files.pythonhosted.org/packages/81/92/cb9b6b8e331a3c6eae789644d2710351aa3aecf65b0cd778e9c60c6c2453/markdown_it_pyrs-0.3.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1023472d48a031c5faad50438b8a673a7ede2d6214d9d977439f497759c72c0b",
                "md5": "8162289625cd199c8f717387d745872c",
                "sha256": "511a614784b521b61fd8d3ccbca33e90033cb502714b2c5222d2d6d159ae4e85"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8162289625cd199c8f717387d745872c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 965126,
            "upload_time": "2023-08-04T12:47:38",
            "upload_time_iso_8601": "2023-08-04T12:47:38.021596Z",
            "url": "https://files.pythonhosted.org/packages/10/23/472d48a031c5faad50438b8a673a7ede2d6214d9d977439f497759c72c0b/markdown_it_pyrs-0.3.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0eecdba9a3aee804beb6dd5dcbdab5f1afdd7b0cd2321579cb273808c2dd4c32",
                "md5": "2672b445c102114278ba202675074de5",
                "sha256": "a00a8394939a610c54f1684bfa0bfe07274c95173bb79ab28c1a205f1356c9a8"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2672b445c102114278ba202675074de5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2276075,
            "upload_time": "2023-08-04T12:47:39",
            "upload_time_iso_8601": "2023-08-04T12:47:39.797172Z",
            "url": "https://files.pythonhosted.org/packages/0e/ec/dba9a3aee804beb6dd5dcbdab5f1afdd7b0cd2321579cb273808c2dd4c32/markdown_it_pyrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83b7f8a79788cdb462f39e437fd94bcbfdfa8e140ab191389a791cd251c5609a",
                "md5": "b4671477f8b834d86bdd1d6cdd55036e",
                "sha256": "793a5eb213bc4b586938a67df1d60dc1c4d6122c48207542ecf9c09922532736"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b4671477f8b834d86bdd1d6cdd55036e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2196378,
            "upload_time": "2023-08-04T12:47:41",
            "upload_time_iso_8601": "2023-08-04T12:47:41.696814Z",
            "url": "https://files.pythonhosted.org/packages/83/b7/f8a79788cdb462f39e437fd94bcbfdfa8e140ab191389a791cd251c5609a/markdown_it_pyrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df83edd3e3239a95d836eb0225d78b5fb9222065033ec9111c13302f8c51b9d9",
                "md5": "02ddecdabd8d84bfd25640807c0d609f",
                "sha256": "95c8233ca50b7f62a4f9c4b8da9e375cbee2cd10159ff66b6639dc7bc0ab7f6f"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "02ddecdabd8d84bfd25640807c0d609f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2457592,
            "upload_time": "2023-08-04T12:47:43",
            "upload_time_iso_8601": "2023-08-04T12:47:43.996188Z",
            "url": "https://files.pythonhosted.org/packages/df/83/edd3e3239a95d836eb0225d78b5fb9222065033ec9111c13302f8c51b9d9/markdown_it_pyrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7f228feec4d89be46df30b46ad1b5a738105d42401c19d661c59949dc9b0e20",
                "md5": "e72f437ee14719277d4dc9aa137ee534",
                "sha256": "5776202653d25d18ba44029eb0b84bfbc9fa80c7c0c2bc906a511e70959c2b08"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e72f437ee14719277d4dc9aa137ee534",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2265746,
            "upload_time": "2023-08-04T12:47:45",
            "upload_time_iso_8601": "2023-08-04T12:47:45.780587Z",
            "url": "https://files.pythonhosted.org/packages/c7/f2/28feec4d89be46df30b46ad1b5a738105d42401c19d661c59949dc9b0e20/markdown_it_pyrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3db8405fedfdd1302275d2f97f9446145e9879be8d73abb991d26c63a71cb7f",
                "md5": "3391c06461965c38783c5ae7642b9d58",
                "sha256": "2ad41536cb1de23b3099712dbe16c54356448e6998ce9ece437e8c0b089ada39"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3391c06461965c38783c5ae7642b9d58",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2304487,
            "upload_time": "2023-08-04T12:47:47",
            "upload_time_iso_8601": "2023-08-04T12:47:47.503391Z",
            "url": "https://files.pythonhosted.org/packages/d3/db/8405fedfdd1302275d2f97f9446145e9879be8d73abb991d26c63a71cb7f/markdown_it_pyrs-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d572700b346b5d6b9bffd2050f15479b3d714839ff426a937c67773712c6ccb8",
                "md5": "7a6229f2d9550fa0c0f995cc9d624478",
                "sha256": "192fe5c6933ccaf9b12ee80a7e2c2a570e8bc2eeaccefdd23d9f831de0ee1e13"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7a6229f2d9550fa0c0f995cc9d624478",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2275276,
            "upload_time": "2023-08-04T12:47:49",
            "upload_time_iso_8601": "2023-08-04T12:47:49.286189Z",
            "url": "https://files.pythonhosted.org/packages/d5/72/700b346b5d6b9bffd2050f15479b3d714839ff426a937c67773712c6ccb8/markdown_it_pyrs-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb47cc64093d9046292af0937645ba617e5e7750d1753b938ab330f759150ba4",
                "md5": "46e55174d4df7e33c26afc0461e9f53c",
                "sha256": "6f282474abf2ae24f61657cbd4f8a070afc1d74d9b870f9919264739a48633ce"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "46e55174d4df7e33c26afc0461e9f53c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2196168,
            "upload_time": "2023-08-04T12:47:51",
            "upload_time_iso_8601": "2023-08-04T12:47:51.092396Z",
            "url": "https://files.pythonhosted.org/packages/cb/47/cc64093d9046292af0937645ba617e5e7750d1753b938ab330f759150ba4/markdown_it_pyrs-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60affbc9bba4ac04f6077d265642eb6e51f8aa6eac08e5fbdfa8aac1ca7ec4e4",
                "md5": "da8ddd1e42e5e5733afc02f4a5388a96",
                "sha256": "271d49f9b59c0005a660cf0a9874b8c9ec99a1b82c5c93ed843c1122bd83a620"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "da8ddd1e42e5e5733afc02f4a5388a96",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2456931,
            "upload_time": "2023-08-04T12:47:52",
            "upload_time_iso_8601": "2023-08-04T12:47:52.825548Z",
            "url": "https://files.pythonhosted.org/packages/60/af/fbc9bba4ac04f6077d265642eb6e51f8aa6eac08e5fbdfa8aac1ca7ec4e4/markdown_it_pyrs-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c07b8513fe0ced725c24f32a61932a9f43118302982849419454f472ad2c973",
                "md5": "b5ec420746fdeaeb80ef87eed4e718de",
                "sha256": "cbf5f87aae9e0a2f2aa0308cc5eb790dbb42a9ea10f1c31082265af3980ab727"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5ec420746fdeaeb80ef87eed4e718de",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2265269,
            "upload_time": "2023-08-04T12:47:54",
            "upload_time_iso_8601": "2023-08-04T12:47:54.639030Z",
            "url": "https://files.pythonhosted.org/packages/1c/07/b8513fe0ced725c24f32a61932a9f43118302982849419454f472ad2c973/markdown_it_pyrs-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26ce7caed623c974ae8ab6b89123f023e0d8e829a19d4feeb5e4b1e840fbf6a5",
                "md5": "746b295201a1970ffdb68680f76818bc",
                "sha256": "0ad7ed0928b1088676eef2bfe9d3269e1d94b1bde86b7a41c68c9797720e0789"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "746b295201a1970ffdb68680f76818bc",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2304762,
            "upload_time": "2023-08-04T12:47:56",
            "upload_time_iso_8601": "2023-08-04T12:47:56.494608Z",
            "url": "https://files.pythonhosted.org/packages/26/ce/7caed623c974ae8ab6b89123f023e0d8e829a19d4feeb5e4b1e840fbf6a5/markdown_it_pyrs-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb45dddb39eaf26e890e7335d27b1085a56d3c33b579d14f83276cd66d50bf9b",
                "md5": "cd62686f9637cd16e05d9110aa1c4190",
                "sha256": "541a8514dfb35a82da67a0eb029d5218a5976e641e5fe954e1a5ffaaf0748e98"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd62686f9637cd16e05d9110aa1c4190",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2275684,
            "upload_time": "2023-08-04T12:47:58",
            "upload_time_iso_8601": "2023-08-04T12:47:58.923160Z",
            "url": "https://files.pythonhosted.org/packages/cb/45/dddb39eaf26e890e7335d27b1085a56d3c33b579d14f83276cd66d50bf9b/markdown_it_pyrs-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "228aa8b2c4491562351d588eb41278860a1d8013f463a0a6d24304d36122522c",
                "md5": "ddaca391bd047cefb45efd7e949d8e75",
                "sha256": "7b088d5f331e099fc6bb71769c1a24298dcfd78fcd21625f1b731d377416a8af"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ddaca391bd047cefb45efd7e949d8e75",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2196412,
            "upload_time": "2023-08-04T12:48:00",
            "upload_time_iso_8601": "2023-08-04T12:48:00.631546Z",
            "url": "https://files.pythonhosted.org/packages/22/8a/a8b2c4491562351d588eb41278860a1d8013f463a0a6d24304d36122522c/markdown_it_pyrs-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f1d8140cce65c531b6e6cf29b05308eed04c6713b34deeefd7db91960df43b0",
                "md5": "7f41a20d37e0243b1b312033c7999215",
                "sha256": "4d6316c1e7bbff2b5eff6c9a8462148cffb1a7d8ad6383dc1d409dd25dc91242"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7f41a20d37e0243b1b312033c7999215",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2457070,
            "upload_time": "2023-08-04T12:48:02",
            "upload_time_iso_8601": "2023-08-04T12:48:02.691725Z",
            "url": "https://files.pythonhosted.org/packages/7f/1d/8140cce65c531b6e6cf29b05308eed04c6713b34deeefd7db91960df43b0/markdown_it_pyrs-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e2e110a9af92479650c2b12a0f228783f67a61ade6d05b3e1b1ded34d8d5944",
                "md5": "8514b06b710c2a93fb4abe9e1d12e193",
                "sha256": "6d343f0e0c8a1acc865c051b92368e8609addc3310f7dc62112d1c5045f43159"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8514b06b710c2a93fb4abe9e1d12e193",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2266066,
            "upload_time": "2023-08-04T12:48:05",
            "upload_time_iso_8601": "2023-08-04T12:48:05.125760Z",
            "url": "https://files.pythonhosted.org/packages/2e/2e/110a9af92479650c2b12a0f228783f67a61ade6d05b3e1b1ded34d8d5944/markdown_it_pyrs-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27844b7a0fea716a3438c55d36a86bafad8dfd21b3a6d418aabff8ff6294bb34",
                "md5": "cb98e6c58c9b88afafca8f9b0f886469",
                "sha256": "9945dd6a198a293ca227e788d3a7cea88a7692294d7a11ce3bf8e1257fdb4d4b"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "cb98e6c58c9b88afafca8f9b0f886469",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2304422,
            "upload_time": "2023-08-04T12:48:06",
            "upload_time_iso_8601": "2023-08-04T12:48:06.848245Z",
            "url": "https://files.pythonhosted.org/packages/27/84/4b7a0fea716a3438c55d36a86bafad8dfd21b3a6d418aabff8ff6294bb34/markdown_it_pyrs-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "509fc4f190f7de01298d9a6ec8b751ed9b5a9823e14e81cb6f54b2f7fd6cf01c",
                "md5": "c064367253526195175e755340644fd9",
                "sha256": "ed7993eea772405fd7c839d2dd496c4a03ca0c49956b8ddc97d937086cfefa19"
            },
            "downloads": -1,
            "filename": "markdown_it_pyrs-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c064367253526195175e755340644fd9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 111743,
            "upload_time": "2023-08-04T12:48:08",
            "upload_time_iso_8601": "2023-08-04T12:48:08.371814Z",
            "url": "https://files.pythonhosted.org/packages/50/9f/c4f190f7de01298d9a6ec8b751ed9b5a9823e14e81cb6f54b2f7fd6cf01c/markdown_it_pyrs-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-04 12:48:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "chrisjsewell",
    "github_project": "markdown-it-pyrs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "markdown-it-pyrs"
}
        
Elapsed time: 0.11736s