FilmAffinity-UserRating

Build Status Coverage Status

Perl interface to FilmAffinity

Synopsis

Get filmaffinity voted movies from a user

use FilmAffinity::UserRating;

my $parser = FilmAffinity::UserRating->new( userID => '123456' );
my $ref_movies = $parser->parse();

Retrieve information about a filmaffinity movie

use FilmAffinity::Movie;

my $movie = FilmAffinity::Movie->new( id => '348488' );
$movie->parse();

my $title = $movie->title;

Via the command-line program

filmaffinity-get-rating.pl --userid=123456

filmaffinity-get-movie-info.pl --id=348488

Installation

To install this module, run the following commands:

perl Build.PL
./Build
./Build test
./Build install

Support and documentation

After installing, you can find documentation for this module with the perldoc command.

perldoc FilmAffinity::UserRating
perldoc FilmAffinity::Utils
perldoc FilmAffinity::Movie

You can also look for information at:

Copyright (C) 2013 William Belle

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.