Skip to content

Instantly share code, notes, and snippets.

@yury
Created July 18, 2010 09:48
Show Gist options
  • Save yury/480271 to your computer and use it in GitHub Desktop.
Save yury/480271 to your computer and use it in GitHub Desktop.
#encoding: utf-8
require 'mechanize'
KINOPOISK_SEARCH_URL = 'http://kinopoisk.ru/index.php?kp_query='
query = 'терминатор'
agent = Mechanize.new
agent.get "#{KINOPOISK_SEARCH_URL}#{query.encode("windows-1251")}"
agent.page.search("td.news[width]").map do |section|
puts section.at(".all").content
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment