Thread overview
parserino 0.2.0
Oct 19, 2022
Andrea Fontana
Oct 19, 2022
rassoc
Oct 20, 2022
psyscout
Oct 20, 2022
Andrea Fontana
Oct 21, 2022
Guillaume Piolat
Oct 22, 2022
Enjoys Math
Oct 22, 2022
Adam D Ruppe
Oct 23, 2022
Andrea Fontana
October 19, 2022

Hello!

Finally I released the public version of parserino, a html5 parser for linux, macos and windows.

Link:
https://github.com/trikko/parserino

October 19, 2022
On 10/19/22 10:30, Andrea Fontana via Digitalmars-d-announce wrote:
> Finally I released the public version of parserino, a html5 parser for linux, macos and windows.

Sweet, thanks for sharing, will check it out later!
October 20, 2022

Wow, it uses builtin browser. Cool! I have a coming project, will try it out. Thank You for your effort!

October 20, 2022

On Thursday, 20 October 2022 at 13:24:27 UTC, psyscout wrote:

>

Wow, it uses builtin browser. Cool! I have a coming project, will try it out. Thank You for your effort!

You're welcome :)

October 21, 2022

On Wednesday, 19 October 2022 at 08:30:57 UTC, Andrea Fontana wrote:

>

Hello!

Finally I released the public version of parserino, a html5 parser for linux, macos and windows.

Link:
https://github.com/trikko/parserino

Nice, thanks for this!

October 22, 2022

On Wednesday, 19 October 2022 at 08:30:57 UTC, Andrea Fontana wrote:

>

Hello!

Finally I released the public version of parserino, a html5 parser for linux, macos and windows.

Link:
https://github.com/trikko/parserino

Nice! So it's D's answer to Python's BeautifulSoup.

October 22, 2022
On Saturday, 22 October 2022 at 21:58:54 UTC, Enjoys Math wrote:
> Nice!  So it's D's answer to Python's BeautifulSoup.

D has had a html tag soup parser since 2009 in my dom.d.

The parserino might be more html5 compliant specifically though, as mine was written before html5 was a thing. It's been updated with it but still an independent parser (capable of reading in-the-wild html as well as things like xml and even php tags) instead of following their specific algorithm.
October 23, 2022
On Saturday, 22 October 2022 at 22:14:26 UTC, Adam D Ruppe wrote:
> On Saturday, 22 October 2022 at 21:58:54 UTC, Enjoys Math wrote:
>> Nice!  So it's D's answer to Python's BeautifulSoup.
>
> D has had a html tag soup parser since 2009 in my dom.d.
>
> The parserino might be more html5 compliant specifically though, as mine was written before html5 was a thing. It's been updated with it but still an independent parser (capable of reading in-the-wild html as well as things like xml and even php tags) instead of following their specific algorithm.

Ah-ah! Adam is worried 😃
Just kidding, he helped me to compile parserino on Windows, so thanks Adam!