pyromark (stands for Python Rust Optimized Markdown) is a blazingly fast CommonMark-compliant Markdown parser for Python. It leverages the `pulldown-cmark` Rust crate under the hood for high performance, often outperforming other Python Markdown libraries significantly. The library is actively maintained and releases new versions periodically. It's designed for speed, including releasing the GIL for better threading performance.
pip install -U pyromarkVerified import paths — ran on the pinned version, not inferred.
Parse a Markdown string to an HTML string using the default CommonMark options.
Always use `pip install pyromark` and `import pyromark`. Double-check documentation for the correct library if uncertain.
Ensure your Python environment is running Python 3.10 or a later version. Upgrade Python if necessary.
Understand your application's concurrency model. For optimal performance in a multi-threaded CPU-bound scenario, ensure your application design leverages the GIL release.
No dependency data recorded yet.