NAME
Net::GNUDBSearch - Search interface to GNUDB database
SYNOPSIS
use Net::GNUDBSearch;
my $search = Net::GNUDBSearch->new();
my $results = $search->byArtist("The Prodigy");
DESCRIPTION
Net::GNUDBSearch is an interface to the website www.gnudb.org online free CD information database. Based on Net::CDDBSearch by Vitaliy Babiy. This module allows you to search by artist and retrive a list of albums found then get their tracks.
METHODS
new()
my $gnudb = Net::GNUDBSearch->new();
Constructor, returns a new instance of the search object ready for use.
byArtist($query)
my $albums = $gnudb->byArtist("The Prodigy");
Returns an array reference of Net::GNUDBSearch::Cd objects containing CD's found from the artist name given.
Notes
Only retrieves the first page of results as that should be good enough to find data.
Author
MacGyveR <dumb@cpan.org>
Development questions, bug reports, and patches are welcome to the above address.
Thanks
Vitaliy Babiy <admin@mpscope.net> for module Net::CDDBSearch
Copyright
Copyright (c) 2012 MacGyveR. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See Also
Net::CDDBSearch