Skip to content

Instantly share code, notes, and snippets.

@kohgpat
Created May 20, 2012 06:12
Show Gist options
  • Save kohgpat/2755077 to your computer and use it in GitHub Desktop.
Save kohgpat/2755077 to your computer and use it in GitHub Desktop.
Fabrika Kino - Movies and Shows - Today
# encoding: UTF-8
require 'nokogiri'
require 'open-uri'
require 'colorize'
doc = Nokogiri::HTML(open('http://fabrikakino.ru/kino/'))
puts "Fabrika Kino\n".colorize(:yellow)
doc.css('table.afisha tr').drop(1).each do |movie|
puts "#{movie.children[0].content.colorize(:green)} #{movie.children[4].content.split.join(' ')}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment