Project

imdb-scan

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby IMDB Parsing Library
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.2.3
>= 1.4.3
>= 1.0.1
>= 0.7.5
>= 1.4.1
 Project Readme

Welcome to Ruby IMDB-SCAN

Features

  • Object Oriented design
  • Fast access to data

Download

Usage

require 'rubygems'
require 'imdb'

s = IMDB::Search.new
s.movie("fear and loathing in las vegas").each do
  |result|
  movie = IMDB::Movie.new(result.id)
  p movie.title
  movie.cast.each do
    |cast|
    p "#{cast.name} as #{cast.char}"
  end
  p movie.poster
end

movie = IMDB::Movie.new(416320)
p movie.title => "Match Point"
p movie.cast.length => 37
p movie.cast.first.name => "Jonathan Rhys Meyers"
p movie.cast.first.char => "Chris Wilton"
p movie.cast.first.person.filmography.length => 82
p movie.director  => "Woody Allen"
p movie.director_person.filmography.length   =>  399   (this are all Movies)

Authors

This library is released under the terms of the GNU/GPL.