Sha256: 2d406f7d559d0639dfe1ad3e7a3b515b199861edc40d28507cb346135bb6bfa5

Contents?: true

Size: 795 Bytes

Versions: 3

Compression:

Stored size: 795 Bytes

Contents

# ImdbParty!

## How To Use

### Create an instance

    imdb = ImdbParty::Imdb.new
### Search for a movie by title

    imdb.find_movie_by_title("The Dark Knight") => [{:title => "The Dark Knight", :year => "2008", :imdb_id => "tt0468569"}, {:title => "Batman Unmasked", ...}]

### Get a movie by its imdb_id    

    movie = imdb.find_movie_by_id("tt0468569")

    movie.title => "The Dark Knight"
    movie.rating => 8.1
    movie.certification => "PG-13"

### Find the top 250 movies of all time
    
    imdb.top_250 => [{:title => "Shawshank Redemption", :year => "1994", :imdb_id => "tt0111161"}, {:title => "The Godfather", ...}]

### Get the currently popular tv shows

    imdb.top_shows => [{:title => "Glee", :year => "2009", :imdb_id => "tt1327801"}, {:title => "Dexter", ...}]
    

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
imdb_party-0.3.0 README.md
imdb_party-0.2.0 README.md
imdb_party-0.1.0 README.md