始めてスクレイピングをやり、
うまくいったので、自分のメモとして残しておきます。
yahoo_scrape.rb
require 'open-uri'
require 'nokogiri'
url = 'https://www.yahoo.co.jp/'
doc = Nokogiri::HTML(open(url))
puts
doc.css('h1').each do |link|
puts link.content
end
Go to list of users who liked
More than 3 years have passed since last update.
始めてスクレイピングをやり、
うまくいったので、自分のメモとして残しておきます。
require 'open-uri'
require 'nokogiri'
url = 'https://www.yahoo.co.jp/'
doc = Nokogiri::HTML(open(url))
puts
doc.css('h1').each do |link|
puts link.content
end
Register as a new user and use Qiita more conveniently
Go to list of users who liked