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
Search Repo:
imdb /
name age message
folder README Wed Feb 13 23:18:58 -0800 2008 reorganzied and changed up the api [maddox]
folder imdb.rb Wed Apr 23 00:31:14 -0700 2008 Added company, directors, writers, genres, tagl... [Mike Schrag]
folder imdb/ Wed Apr 23 17:59:24 -0700 2008 back to the original .. stupid require [Mike Schrag]
folder 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/