Net::DVDProfiler - Get the UPC numbers for your DVD collection, located on DVD Profiler.


Net-DVDProfiler documentation  | view source Contained in the Net-DVDProfiler distribution.

Index


NAME

Top

Net-DVDProfiler - Get the UPC numbers for your DVD collection, located on DVD Profiler.

DESCRIPTION

Top

This is a module that uses LWP to connect to a remote DVDProfiler collection and acquire all available DVD UPC symbols. Once all the symbols have been acquired, they can then be plugged into another application, such as the module Net::Amazon::DVD2IMDB, to get all the IMDB IDs for the DVDs.

SYNOPSIS

Top

    # Print out the names of all the movies in your DVD Profiler collection.

    use Net::DVDProfiler;

    my $ua = new Net::DVDProfiler( alias => 'YOURALIAS' );

    print map { $_->title() . "\n" } @{$ua->getAll()};

new
    my $ua = new Net::DVDProfiler( alias => 'YOURALIAS' );

Instantiates an object with which to perform further requests. Requires a valid user alias to be provided.

getAll, getOwned, getOrdered, and getWishlist
    $ua-getAll();

Returns an array of Net::DVDProfiler::DVD objects. Each of the objects have a title and upc method, which can be accessed to receive that information.

AUTHOR

Top

<a href="http://ejohn.org/">John Resig</a> <jeresig@gmail.com>

DISCLAIMER

Top

This application utilitizes screen-scraping techniques, which are very fickle and susceptable to changes.

COPYRIGHT

Top


Net-DVDProfiler documentation  | view source Contained in the Net-DVDProfiler distribution.