Parsing websites using C [Answered]
Are there any nuget libraries like NPM cheerio to parse websites according to their CSS selectors?
5 Replies
AngleSharp is my tool of choice
https://github.com/AngleSharp/AngleSharp
Thanks man, gotta check it
includes a built in browsing context and a pretty simple API with
QuerySelector
and QuerySelectorAll
you can also traverse the DOM manually if you have toI build a library for this, rn query selectors are not supported, im going to add them soon tho
✅ This post has been marked as answered!