LoginSignup
0
1

More than 3 years have passed since last update.

初学者の為のスクレイピング(Ruby)

Posted at

始めてスクレイピングをやり、
うまくいったので、自分のメモとして残しておきます。

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
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1