comrak 0.0.1__cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of comrak might be problematic. Click here for more details.

comrak/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ from .comrak import *
2
+
3
+ __doc__ = comrak.__doc__
4
+ if hasattr(comrak, "__all__"):
5
+ __all__ = comrak.__all__
@@ -0,0 +1,67 @@
1
+ Metadata-Version: 2.4
2
+ Name: comrak
3
+ Version: 0.0.1
4
+ Classifier: Intended Audience :: Developers
5
+ Classifier: License :: OSI Approved :: MIT License
6
+ Classifier: Programming Language :: Rust
7
+ Classifier: Programming Language :: Python :: Implementation :: CPython
8
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Requires-Dist: maturin[patchelf]>=1.8.2 ; extra == 'dev'
17
+ Requires-Dist: pre-commit>=4.1.0 ; extra == 'dev'
18
+ Provides-Extra: dev
19
+ Summary: Python bindings for the Comrak Rust library, a fast CommonMark/GFM parser
20
+ Keywords: markdown,html,rust,commonmark,gfm,parser
21
+ Author-email: Louis Maddox <louismmx@gmail.com>
22
+ License: MIT
23
+ Requires-Python: >=3.9
24
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
25
+ Project-URL: Homepage, https://github.com/lmmx/comrak
26
+ Project-URL: Repository, https://github.com/lmmx/comrak.git
27
+
28
+ # comrak
29
+
30
+ <!-- [![downloads](https://static.pepy.tech/badge/comrak/month)](https://pepy.tech/project/comrak) -->
31
+ [![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
32
+ [![pdm-managed](https://img.shields.io/badge/pdm-managed-blueviolet)](https://pdm.fming.dev)
33
+ [![PyPI](https://img.shields.io/pypi/v/comrak.svg)](https://pypi.org/project/comrak)
34
+ [![Supported Python versions](https://img.shields.io/pypi/pyversions/comrak.svg)](https://pypi.org/project/comrak)
35
+ [![License](https://img.shields.io/pypi/l/comrak.svg)](https://pypi.python.org/pypi/comrak)
36
+ [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/lmmx/comrak/master.svg)](https://results.pre-commit.ci/latest/github/lmmx/comrak/master)
37
+
38
+ Python bindings for the Comrak Rust library, a fast CommonMark/GFM parser
39
+
40
+ ## Installation
41
+
42
+ ```bash
43
+ pip install comrak
44
+ ```
45
+
46
+ ### Requirements
47
+
48
+ - Python 3.9+
49
+
50
+ ## Features
51
+
52
+ Fast Markdown to HTML parser in Rust, shipped for Python via PyO3.
53
+
54
+ ## Contributing
55
+
56
+ Maintained by [lmmx](https://github.com/lmmx). Contributions welcome!
57
+
58
+ 1. **Issues & Discussions**: Please open a GitHub issue or discussion for bugs, feature requests, or questions.
59
+ 2. **Pull Requests**: PRs are welcome!
60
+ - Install the dev extra (e.g. with [uv](https://docs.astral.sh/uv/): `uv pip install -e .[dev]`)
61
+ - Run tests (when available) and include updates to docs or examples if relevant.
62
+ - If reporting a bug, please include the version and the error message/traceback if available.
63
+
64
+ ## License
65
+
66
+ This project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
67
+
@@ -0,0 +1,5 @@
1
+ comrak-0.0.1.dist-info/METADATA,sha256=_MMAHkIjdsk8fCTBigfT18qSGDZyenzvoeyY0k3TTAs,2872
2
+ comrak-0.0.1.dist-info/WHEEL,sha256=Phm6cCaZq4rQ7-vRP4T5cvESiolFQpKFVu5LBH41bwI,132
3
+ comrak/__init__.py,sha256=H-lprYD1Pf1TgIMrspnMxaKc6nzSR58I8zQEItFxzJg,107
4
+ comrak/comrak.cpython-313t-aarch64-linux-gnu.so,sha256=HPRM3-FyDdgpFrgFvEl2OYCJ4XbQsWxcwBviLKCmtS4,1372304
5
+ comrak-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.8.2)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64