I love the Beautiful Soup scraping library in Python. It just works. Is there a close equivalent in Ruby?
|
|
|
|
|
|
|
This image from Ruby Toolbox indicates the relative popularity of various parsers:
|
||
|
|
|
|
Nokogiri is another HTML/XML parser. It's faster than hpricot according to these benchmarks. Nokogiri uses libxml2 and is a drop in replacement for hpricot. It also has css3 selector support which is pretty nice. Edit: There's a new benchmark comparing nokogiri, libxml-ruby, hpricot and rexml here. |
|||
|
|
|
|
There's scRUBYt!, Rubyful-soup (no longer maintained), WWW::Mechanize, scrAPI and a few more. Or you could just use Hpricot or Nokogiri for parsing. |
||
|
|
|
|
Google is your friend: http://www.crummy.com/software/RubyfulSoup/ |
||
|
|
|
Hpricot? I don't know what others are using... |
||
|
|
|
|
That would be Hpricot. |
||||
|

