What is the best way to parse a web page in Ruby? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T15:10:43Zhttp://stackoverflow.com/feeds/question/137605http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/137605/what-is-the-best-way-to-parse-a-web-page-in-ruby9What is the best way to parse a web page in Ruby?Mutewinter2008-09-26T03:31:55Z2009-04-18T11:08:52Z
<p>I have been looking at XML and HTML libraries on rubyforge for a simple way to pull data out of a web page. For example if I want to parse a user page on stackoverflow how can I get the data into a usable format?</p>
<p>Say I want to parse my own user page for my current reputation score and badge listing. I tried to convert the source retrieved from my user page into xml but the conversion failed due to a missing div. I know I could do a string compare and find the text I'm looking for, but there has to be a much better way of doing this.</p>
<p>I want to incorporate this into a simple script that spits out my user data at the command line, and possibly expand it into a GUI application.</p>
http://stackoverflow.com/questions/137605/what-is-the-best-way-to-parse-a-web-page-in-ruby/137618#1376183Answer by ethyreal for What is the best way to parse a web page in Ruby?ethyreal2008-09-26T03:35:19Z2008-09-26T03:35:19Z<p>try <a href="http://code.whytheluckystiff.net/hpricot/" rel="nofollow">hpricot</a>, its well... awesome</p>
<p>I've used it several times for screen scraping.</p>
http://stackoverflow.com/questions/137605/what-is-the-best-way-to-parse-a-web-page-in-ruby/137639#13763915Answer by Armin Ronacher for What is the best way to parse a web page in Ruby?Armin Ronacher2008-09-26T03:41:45Z2008-09-26T03:41:45Z<p>Unfortunately stackoverflow is claiming to be XML but actually isn't. <a href="http://code.whytheluckystiff.net/hpricot/" rel="nofollow">Hpricot</a> however can parse this tag soup into a tree of elements for you.</p>
<pre><code>require 'hpricot'
require 'open-uri'
doc = Hpricot(open("http://stackoverflow.com/users/19990/armin-ronacher"))
reputation = (doc / "td.summaryinfo div.summarycount").text.gsub(/[^\d]+/, "").to_i
</code></pre>
<p>And so forth.</p>
http://stackoverflow.com/questions/137605/what-is-the-best-way-to-parse-a-web-page-in-ruby/144101#1441010Answer by Cameron Booth for What is the best way to parse a web page in Ruby?Cameron Booth2008-09-27T17:33:29Z2008-09-27T17:33:29Z<p>I always really like what Ilya Grigorik writes, and he <a href="http://www.igvita.com/2007/02/04/ruby-screen-scraper-in-60-seconds/" rel="nofollow">wrote up a nice post</a> about using hpricot.</p>
<p>I also <a href="http://www.rubyrailways.com/data-extraction-for-web-20-screen-scraping-in-rubyrails" rel="nofollow">read this post</a> a while back and it looks like it would be useful for you.</p>
<p>Haven't done either myself, so YMMV but these seem pretty useful.</p>
http://stackoverflow.com/questions/137605/what-is-the-best-way-to-parse-a-web-page-in-ruby/144347#1443470Answer by Atiaxi for What is the best way to parse a web page in Ruby?Atiaxi2008-09-27T19:59:44Z2008-09-27T19:59:44Z<p>Something I ran into trying to do this before is that few web pages are well-formed XML documents. Hpricot may be able to deal with that (I haven't used it) but when I was doing a similar project in the past (using Python and its library's built in parsing functions) it helped to have a pre-processor to clean up the HTML. I used the python bindings for <a href="http://tidy.sourceforge.net/" rel="nofollow">HTML Tidy</a> as this and it made life a lot easier. Ruby bindings are <a href="http://tidy.rubyforge.org/" rel="nofollow">here</a> but I haven't tried them.</p>
<p>Good luck!</p>