
WebService::Audioscrobbler::SimilarArtist - An object-oriented interface to the Audioscrobbler WebService API

This is a subclass of WebService::Audioscrobbler::Artist which implements some aditional fields that cover similarity aspects between two artists.
use WebService::Audioscrobbler;
my $artist = WebService::Audiocrobbler->artist('Foo');
for my $similar ($artist->similar_artists) {
print $similar->name . ": " . $similar->match . "\% similar\n";
}

related_toThe related artist from which this SimilarArtist object has been constructed from.
matchThe similarity index between this artist and the related artist. It's returned as a number between 0 (not similar) and 100 (very similar).

Nilson Santos Figueiredo Júnior, <nilsonsfj at cpan.org>

Copyright 2006-2007 Nilson Santos Figueiredo Júnior, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.