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 (
imdb /
| name | age | message | |
|---|---|---|---|
| |
README | Wed Feb 13 23:18:58 -0800 2008 | [maddox] |
| |
imdb.rb | Wed Apr 23 18:46:59 -0700 2008 | [maddox] |
| |
imdb/ | Sun Aug 03 11:15:41 -0700 2008 | [maddox] |
| |
movie_spec.rb | Sun Aug 03 11:15:41 -0700 2008 | [maddox] |
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/



