Last active
August 29, 2015 14:05
-
-
Save igneus/769815f814ca16675e49 to your computer and use it in GitHub Desktop.
Koupaliště Petynka - teplota vzduchu, vody a počet návštěvníků bez otvírání webového prohlížeče
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/env ruby | |
# 2015-05-09 | |
# | |
# prints information from the Koupaliste Petynka's website | |
require 'mechanize' # interaction with websites | |
page = Mechanize.new.get('http://www.koupalistepetynka.cz/') | |
page.search('#tops .moduletable .udaje center').first.children.each do |e| | |
if e.is_a? Nokogiri::XML::Text | |
print e.text.strip | |
elsif e.is_a? Nokogiri::XML::Element | |
print ' ' | |
puts e.text.strip | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment