|
NAMEIMDB::Persons - Perl extension for retrieving movies persons from IMDB.com SYNOPSIS use IMDB::Persons;
#
# Retrieve a person information by IMDB code
#
my $person = new IMDB::Persons(crit => '0000129');
or
#
# Retrieve a person information by name
#
my $person = new IMDB::Persons(crit => 'Tom Cruise');
or
#
# Process already stored HTML page from IMDB
#
my $person = new IMDB::Persons(file => 'imdb.html');
if($person->status) {
print "Name: ".$person->name."\n";
print "Birth Date: ".$person->date_of_birth."\n";
} else {
print "Something wrong: ".$person->error."!\n";
}
DESCRIPTIONIMDB::Persons allows to retrieve an information about IMDB persons (actors, actresses, directors etc): full name, photo, date and place of birth, mini bio and filmography. Object Private Methods
Object Public Methods
EXPORTSNo Matches.=head1 BUGS Please, send me any found bugs by email: stepanov.michael@gmail.com. SEE ALSOIMDB::Film IMDB::BaseClass WWW::Yahoo::Movies HTML::TokeParser AUTHORMikhail Stepanov AKA nite_man (stepanov.michael@gmail.com) COPYRIGHTCopyright (c) 2004 - 2007, Mikhail Stepanov. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself.
|