irb -> require 'Nokogiri' and require 'open-uri' -> doc = Nokogiri::HTML(open('http://www.google.com/'))
and no need to store the HTML via wget on my machine. Am I missing something?
Example: nokogiri https://news.ycombinator.com -e 'puts $_.css("td.title a @href")'
irb -> require 'Nokogiri' and require 'open-uri' -> doc = Nokogiri::HTML(open('http://www.google.com/'))
and no need to store the HTML via wget on my machine. Am I missing something?