Net::iTMS is a Perl interface to the information within the iTunes Music Store (iTMS).
SYNOPSIS
my $iTMS = Net::iTMS->new;
my $artist = $iTMS->get_artist(2893902);
print "Artist: ", $artist->name, "n";
for my $album ($artist->discography) {
print $album->title, "n";
for my $track ($album->tracks) {
print "t ", $track->number, ": ", $track->title, "n";
}
}
Net::iTMS is the main class (that is, the one you should be using) for interacting with Apple's iTunes Music Store (http://apple.com/itunes/store/).
Currently, it provides means to access individual artist, album, and song information in the iTMS.
Product's homepage
Requirements:
· Perl