You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HTML parser used by [django-components](https://github.com/django-components/django-components). Written in Rust, exposed as a Python package with [maturin](https://www.maturin.rs/).
6
-
7
-
This implementation was found to be 40-50x faster than our Python implementation, taking ~90ms to parse 5 MB of HTML.
5
+
Rust-based parsers and toolings used by [django-components](https://github.com/django-components/django-components). Exposed as a Python package with [maturin](https://www.maturin.rs/).
8
6
9
7
## Installation
10
8
11
9
```sh
12
-
pip install djc-core-html-parser
10
+
pip install djc-core
13
11
```
14
12
15
-
## Usage
13
+
## Packages
14
+
15
+
### HTML transfomer
16
+
17
+
Transform HTML in a single pass. This is a simple implementation.
18
+
19
+
This implementation was found to be 40-50x faster than our Python implementation, taking ~90ms to parse 5 MB of HTML.
0 commit comments