Skip to content

Instantly share code, notes, and snippets.

@kikyous
Created March 12, 2015 06:31
Show Gist options
  • Save kikyous/27dd5cd63404bc8a9148 to your computer and use it in GitHub Desktop.
Save kikyous/27dd5cd63404bc8a9148 to your computer and use it in GitHub Desktop.
require 'nokogiri'
require 'open-uri'
doc = Nokogiri::HTML(open('http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%253daps&field-keywords=women+dress'))
doc.css('.a-fixed-left-grid-col.a-col-right').each do |c|
a=c.css('.s-access-detail-page')
p [a.text, a.attr('href').value, c.css('.s-price').text]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment