--- id: pyromark version: "0.9.13" license: unclear license_treatment: unclear maintenance: active --- # pyromark — Blazingly fast Markdown parser License: unclear · Maintenance: active · Downloads: 290.8K/mo ## What it is and what it does pyromark is a Markdown parser for Python that wraps the Rust pulldown-cmark crate to provide fast CommonMark-compliant parsing. It offers two main interfaces: a simple `html()` function to convert Markdown strings directly to HTML, and an `events()` function that yields a stream of structured parsing events (headings, text, etc.) that you can pattern-match and process programmatically. The package is built as a compiled extension with wheels for multiple Python versions and architectures, and it releases the Python GIL during parsing to enable efficient multithreaded use. The package depends only on typing-extensions at runtime and supports Python 3.10 through 3.14 on CPython and PyPy. It is actively maintained, with the repository last updated on 2026-08-13 and a release cycle of roughly two months. Use it for: - Convert Markdown files or strings to HTML for web publishing or documentation rendering. - Parse Markdown documents into an event stream to build custom processors or AST transformations. - Build high-throughput Markdown processing pipelines where GIL contention would otherwise be a bottleneck. - Integrate CommonMark-compliant parsing into Python applications that need strict spec compliance. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. pyromark is a CommonMark-compliant Markdown parser that converts Markdown to HTML and exposes a structured event stream for programmatic element access. Yes, if you need fast Markdown parsing and can target Python 3.10+. The package is actively maintained, has no known vulnerabilities, and offers a clean API for both simple HTML conversion and structured event access. The only caveat is that license metadata is unclear in the fact sheet—verify the actual license terms match your use case before adopting it. ## Install pip install pyromark uv add pyromark poetry add pyromark ## Installing pyromark Before you install: Medium install friction due to compiled wheels, but well-supported across platforms (macOS, Linux, Windows, multiple architectures). Active maintenance with recent releases; last commit 2026-08-13. License in practice: License treatment is unclear—the description references MIT, but the fact sheet shows license_spdx and license_raw as null. Verify the actual license terms before relying on this package in proprietary or restricted-license contexts. Quickstart: pip install pyromark import pyromark html = pyromark.html("# Hello world") print(html) Requires Python 3.10 or later. Verify before relying: - Whether the MIT license mentioned in the description excerpt is the actual license, given that license metadata is marked unclear in the fact sheet. ## Package facts - License: not declared (unclear) - Python support: supports_current - Install friction: medium - Maintenance: active - Downloads: 290.8K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags markdown to html parser, commonmark parser python, markdown event stream, fast markdown converter, rust markdown binding, markdown-parser, rust-binding, commonmark [View on SkillFed](https://skillfed.io/packages/pyromark) · [View on PyPI](https://pypi.org/project/pyromark/)