| WebService-Audioscrobbler documentation | Contained in the WebService-Audioscrobbler distribution. |
WebService::Audioscrobbler::SimilarUser - An object-oriented interface to the Audioscrobbler WebService API
This is a subclass of WebService::Audioscrobbler::User which implements some aditional fields that cover similarity aspects between two users.
use WebService::Audioscrobbler;
my $user = WebService::Audiocrobbler->user('Foo');
for my $neighbour ($user->neighbours) {
print $neighbour->name . ": " . $neighbour->match . "\% similar\n";
}
related_tomatchThe similarity index between this user and the related user. 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.
| WebService-Audioscrobbler documentation | Contained in the WebService-Audioscrobbler distribution. |
package WebService::Audioscrobbler::SimilarUser; use warnings; use strict; use CLASS; use base 'WebService::Audioscrobbler::User';
our $VERSION = '0.07'; # object accessors CLASS->mk_accessors(qw/match related_to/);
1; # End of WebService::Audioscrobbler::SimilarUser