public
Fork of maddox/imdb
Description: Imdb library to get movie meta from IMDB.com, since they're too cool to give us an API
Clone URL: git://github.com/mschrag/imdb.git
Mike Schrag (author)
Wed Apr 23 17:44:51 -0700 2008
commit  ca386f4c86094c9344384c88c7850604ab9fdda2
tree    36edba0884bbffa08980a4ab3aa6cf6d9708ab9d
parent  feebdd336066f41b285b454ef0f9d14af0906878
imdb /
name age message
file README Wed Feb 13 23:18:58 -0800 2008 reorganzied and changed up the api [maddox]
file imdb.rb Wed Apr 23 00:31:14 -0700 2008 Added company, directors, writers, genres, tagl... [Mike Schrag]
directory imdb/ Wed Apr 23 17:44:51 -0700 2008 (hopefully) fixed date parser [Mike Schrag]
file movie_spec.rb Wed Apr 23 17:25:14 -0700 2008 added release date rspec [Mike Schrag]
README
A simple ruby library to scrape IMDB

USAGE:

require 'Imdb'

movie = Imdb.find_movie_by_id('tt0382932')

puts "IMDB ID: #{movie.imdb_id}"
puts "Title: #{movie.title}"
puts "Plot: #{movie.plot}"
puts "Runtime: #{movie.runtime}"
puts "Rating: #{movie.rating}"
puts "Poster URL: #{movie.poster_url}"

Thats about all it does. its simple. I only made it to work with another project.
Thanks to 'We <} Code' for the jump start via http://www.weheartcode.com/2007/04/03/scraping-imdb-with-ruby-and-hpricot/