I would like to extract information from a web page. Unfortunately, the website (4chan) doesn't have a public API, for as far as I know.

What is a good library to extract specific data from an HTML document? I prefer a free software library that works on UNIX systems.


Edit: basically I want to get posts and images from 4chan. The webpage isn't valid HTML (and doesn't have a doctype) so the parser shouldn't be too strict.

link|improve this question

73% accept rate
Many exist. You could easily write a book on this subject. It is, after all, just XML. – Styne666 Jan 23 at 13:13
2  
@Styne HTML is not XML. Only XHTML is valid XML. – R. Martinho Fernandes Jan 23 at 13:15
@R.Martinho For the purposes of scraping, it's much of a muchness – Styne666 Jan 23 at 13:17
@Styne Yeh, appart from the fact that unless it's XHTML it's not actually valid XML so you can't use an XML parser on it... HTML is actually a markup of SGML and there are specific HTML DOM parsers. – Benj Jan 23 at 13:20
@Benj That depends on how strict your parser is. – Styne666 Jan 23 at 13:21
show 3 more comments
feedback

2 Answers

What you are looking for is an HTML Dom Parse.

This link of a previous question should help you out. Also check out this question

link|improve this answer
feedback

It is correct, there are lots of libraries for parsing html data. For example, if you use Perl, you can use HTML::Parse.

If you just want a fast result and you agree to use a system command you can use:

lynx -dump http://4chan.org

or

links -dump http://4chan.org
link|improve this answer
Note that the question has c++, objective-c and c tags when it comes to languages ;-) – Michael Krelin - hacker Jan 23 at 13:58
@MichaelKrelin-hacker just saw that. Sorry for being noob :) – atz Jan 23 at 16:52
No prob. Not my prob, for sure ;-) – Michael Krelin - hacker Jan 23 at 17:11
feedback

Your Answer

 
or
required, but never shown

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