Created
November 26, 2015 15:17
-
-
Save guilhermeslk/c578946a4a66c76a6432 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'open-uri' | |
require 'nokogiri' | |
SEARCH_URL = 'http://www.ofertaesperta.com/?ContentViewMode=Search&Search=ps4' | |
doc = Nokogiri::HTML(open(SEARCH_URL)) | |
rows = doc.css('.oferta-title h4').select { |h4| h4.text =~ /Console/ } | |
prices = [] | |
rows.each do |row| | |
div = row.ancestors('.top-note').first | |
prices << div.css('.preco').text().strip unless div.nil? | |
end | |
system "notify-send 'Menor Preço:' '#{prices.sort.first}'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment