Project

imdb_lists

0.0
No commit activity in last 3 years
No release in over 3 years
Get easy access to any public IMDb list, such as; Watchlists and Vote history lists. Extract information from each movie like; title, release date, rating, actors
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

 Project Readme

IMDb Lists

Get easy access to any public IMDb movie list.

How to use

Find by url

require "imdb_lists"
result = ImdbLists.fetch("http://www.imdb.com/user/ur10777143/ratings")

result.movies.count # => 693
result.movies.first.title # => Die Hard

Data to work with

Accessors

  • name (String) List name.
  • url (String) Full URL to the IMDb list itself.
  • movies (Array) A list of movies.
  • csv (String) Url to movie CSV file.

A movie object

The movies method returns a list of movies.

  • id (String) IMDb movie id.
  • title (String) Movie title.
  • directors (Array< String >) A list of directors.
  • rating (Fixnum) Movie rating, from 0.0 to 10.0.
  • runtime (Fixnum) Runtime in minutes.
  • genres (Array< String >) A list of genres.
  • votes (Fixnum) The amount of votes.
  • released_at (Time) When was the movie released?
  • details (String) Url to a IMDb details page.
  • created_at (Time) When was it added to the given list?
  • order (Fixnum) Where is the movie?

Only for vote lists

  • you_rated (Fixnum) Your rating, from 0.0 to 10.0.

How do install

[sudo] gem install imdb_lists

How to use it in a rails 3 project

Add gem 'imdb_lists' to your Gemfile and run bundle.

Requirements

IMDb Lists is tested in OS X 10.6.6, 10.7.1 using Ruby 1.9.2.

License

IMDb Lists is released under the MIT license.