vote up 1 vote down star
1

I'm looking for a good C++ library for web scraping.
It has to be C/C++ and nothing else so please do not direct me to Options for HTML scraping or other SO questions/answers where C++ is not even mentioned.

flag

65% accept rate
is converting the HTML to XML first an option? there aren't many good HTML parsers for C++ out there, there are for XML however. – daniel May 7 at 13:59
@daniel This is exactly what I wrote here stackoverflow.com/questions/489522/… Maybe you could add something to this topic? – Piotr Dobrogost May 8 at 10:20

1 Answer

vote up 4 vote down
  • libcurl to download the html file
  • libtidy to convert to valid xml
  • libxml to parse/navigate the xml
link|flag
your second link should probably go to tidy.sourceforge.net ? – therefromhere May 7 at 14:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.