myhtml
lexbor
myhtml | lexbor | |
---|---|---|
3 | 12 | |
1,673 | 1,751 | |
0.9% | 1.9% | |
2.1 | 8.6 | |
3 months ago | about 1 month ago | |
C | C | |
GNU Lesser General Public License v3.0 only | Apache License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
myhtml
-
How to learn how to make a Web Scraper in C++?
This is, fundamentally, just string processing. You can do it manually (i.e. write all the string handling logic yourself). You can do it via regular expressions (regex). Or you can use a library to do the work for you (e.g. "myhtml" for C++, though "Beautiful Soup" and Python will still be easier). And, of course, you can combine these approaches.
-
Libraries for retrivieng html data from website
if you want to parse it, there is only https://github.com/lexborisov/myhtml
- Any interest in a markup reader for ESP32 (and Arduino)?
lexbor
-
Lexbor – an open source HTML Renderer library
The title made me think this could actually layout and paint HTML, but I couldn't find anything remotely layout-related in the source tree. Then I found this comment saying even block sizing isn't done: https://github.com/lexbor/lexbor/issues/219#issuecomment-207.... Looks like a nice groundwork, though. It's nice to see things like parsing and Unicode being part of the same source tree.
-
Modest: A fast HTML renderer implemented as a pure C99 library
Project is deprecated in favour of the same developer's lexbor project[0].
[0]: https://github.com/lexbor/lexbor
-
Created a performance-focused HTML5 parser for Ruby, trying to be API-compatible with Nokogiri
It supports both CSS selectors and XPath like Nokogiri, but with separate engines - parsing and CSS engine by Lexbor, XPath engine by libxml2. (Nokogiri internally converts CSS selectors to XPath syntax, and uses XPath engine for all searches).
- Lexbor: Fast HTML Renderer library in C
-
Andreas Kling (of SerenityOS fame) is building a new Linux browser using SerenityOS libraries
An HTML parser, probably the simplest relatively modern example I could find is 1MB https://github.com/lexbor/lexbor (haven't used it, but might look more into it now that I know it exists.)
- Lexbor: Open-source HTML Renderer library in C
-
The State of Web Scraping in 2021
Lazyweb link: https://github.com/rushter/selectolax
although I don't follow the need to have what appears to be two completely separate HTML parsing C libraries as dependencies; seeing this in the readme for Modest gives me the shivers because lxml has _seen some shit_
> Modest is a fast HTML renderer implemented as a pure C99 library with no outside dependencies.
although its other dep seems much more cognizant about the HTML5 standard, for whatever that's worth: https://github.com/lexbor/lexbor#lexbor
---
> It looks like the author of the article just googled some libraries for each language and didn't research the topic
Heh, oh, new to the Internet, are you? :-D
-
Libraries for retrivieng html data from website
Lexbor is here: https://github.com/lexbor/lexbor
-
What second language to learn after Python?
Well, regarding HTML5, what I've found was libxml (does not support tag-soup HTML5), https://github.com/lexbor/lexbor, for which I was unable to find good documentation ( see https://lexbor.com/docs/lexbor/#dom), Apache Xerces (appears to not support tag-soup HTML5 as well), and Gumbo, which does not appear to be active and to support selectors and XPath (although there are libraries that add that).
-
You can't parse [X]HTML with regex
I think we've all (mostly?) tried it. It really is the Wild West of the web when you're trying to parse other people's HTML, though.
I've played around with this parser which is extremely quick. https://github.com/lexbor/lexbor
What are some alternatives?
litehtml - Fast and lightweight HTML/CSS rendering engine
gumbo-parser - An HTML5 parsing library in pure C99
obj.h - 🚀 OOP in pure C with a single-header
selectolax - Python binding to Modest and Lexbor engines (fast HTML5 parser with CSS selectors).
gumbo-crystal - Crystal C bindings for Gumbo library
bcc - BCC - Tools for BPF-based Linux IO analysis, networking, monitoring, and more