This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Mike Schrag (author)
Wed Apr 23 17:59:24 -0700 2008
imdb /
| name | age | message | |
|---|---|---|---|
| |
README | Wed Feb 13 23:18:58 -0800 2008 | [maddox] |
| |
imdb.rb | Wed Apr 23 00:31:14 -0700 2008 | [Mike Schrag] |
| |
imdb/ | Wed Apr 23 17:59:24 -0700 2008 | [Mike Schrag] |
| |
movie_spec.rb | Wed Apr 23 17:25:14 -0700 2008 | [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/



