html5-parser 0.4.11-ok1 source package in openKylin
Changelog
html5-parser (0.4.11-ok1) nile; urgency=medium * Build for openkylin. -- rtlhq <nobelxyz@163.com> Sat, 02 Sep 2023 18:10:25 +0800
html5-parser (0.4.11-ok1) nile; urgency=medium * Build for openkylin. -- rtlhq <nobelxyz@163.com> Sat, 02 Sep 2023 18:10:25 +0800
Series | Published | Component | Section |
---|
File | Size | SHA-256 Checksum |
---|---|---|
html5-parser_0.4.11.orig.tar.gz | 264.4 KiB | 85bb16faa3cdf3c6c6842e0cb2ce02807cbaefc6e3bb0f3b8e18dabe51070763 |
html5-parser_0.4.11-ok1.debian.tar.xz | 2.4 KiB | c4e0f367c4170969c7d34f8fce7ce1d660c497e2da78bced694e32a6a3535f60 |
html5-parser_0.4.11-ok1.dsc | 1.8 KiB | 4b359ba0fa7a89d93180c69635c11c8b66c962c94d9032733113618fc1c7090c |
A fast implementation of the HTML 5 parsing spec for Python. Parsing is
done in C using a variant of the gumbo parser. The gumbo parse tree is
then transformed into an lxml tree, also in C, yielding parse times that
can be a thirtieth of the html5lib parse times. That is a speedup of 30x.
This differs, for instance, from the gumbo python bindings, where the
initial parsing is done in C but the transformation into the final
tree is done in python.