Skip to content

Instantly share code, notes, and snippets.

@numbcoder
Created September 1, 2010 07:20
Show Gist options
  • Save numbcoder/560356 to your computer and use it in GitHub Desktop.
Save numbcoder/560356 to your computer and use it in GitHub Desktop.
#用ruby看糗百
require 'rubygems'
require 'nokogiri'
require 'open-uri'
url = "http://www.qiushibaike.com"
doc = Nokogiri::HTML(open(url))
doc.css(".qiushi_body").each do |article|
puts "---------------------------------------------------------------"
puts article.at_css("p").text
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment