Yahoo::Photos is a Perl module that allows you to manage Yahoo photos.
SYNOPSIS
# This is the programmatic interface.
# The distribution also ships with a handy wrapper script
# for simple uploading from the shell,
# its documentation is linked at the end of this file.
use Yahoo::Photos qw();
my $yp = Yahoo::Photos->new(
credentials => undef,
);
my $album = $yp->create_album(
name => 'Visiting the zoo',
access => 'public',
);
$yp->upload(
album => $album,
files => [glob('dscf*.jpg')],
);
$yp->delete_album($album);
Product's homepage
Requirements:
· Perl