NAME
WWW::Search::Feedster - Search a Bookmarks server via XMLRPC
SYNOPSIS
use WWW::Search;
my $search = WWW::Search->new(
'Feedster',
);
$search->native_query('world of warcraft linux');
while (my $result = $search->next_result() ) {
print $result->title, "\n";
print $result->url, "\n";
print $result->description, "\n";
}
DESCRIPTION
This is an implimentation of Feedster search results as part of the WWW::Search library. This module makes use of the rss export functionality of Feedster search results to easily parse and return data.
This class exports no public interface; all interaction should be done through WWW::Search objects.
AUTHOR
Nick Gerakines <nick@socklabs.com>
COPYRIGHT
Copyright (C) 2005, Nick Gerakines
This module is free software; you can redistribute it or modify it under the same terms as Perl itself.