0
私はウェブサイトを削り取ろうとしています。私はそのウェブサイトからデータをスクラップすることができます。あなたはブロックが始まる前にopen
コール()
右用閉じ括弧が欠落している
Webscrapedデータを保存する
require 'rubygems'
require 'open-uri'
require 'hpricot'
article = []
doc = open("http://www.cmegroup.com/trading/interest-rates/cleared-otc/irs.html"{|f| Hpricot(f) }
(doc/"/html/body/div/div/div/div/table/").each do |article|
puts "#{article.inner_html}"
end
File.open('test.yaml', 'w') { |f|
f <<article.to_yaml
}