The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

SYNOPSIS

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";
    }

FIELDS

The related user from which this SimilarUser object has been constructed from.

match

The similarity index between this user and the related user. It's returned as a number between 0 (not similar) and 100 (very similar).

AUTHOR

Nilson Santos Figueiredo Junior, <nilsonsfj at cpan.org>

COPYRIGHT & LICENSE

Copyright 2006-2007 Nilson Santos Figueiredo Junior, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.