NAME
    WWW::Search::Feedster - Search Feedster

SYNOPSIS
      use WWW::Search;
      my $search = WWW::Search->new('Feedster');
      $search->native_query('gerakines');
      while (my $result = $search->next_result() ) {
        print $result->title."\n";
        print $result->url."\n";
        print $result->description."\n";
      }

DESCRIPTION
    Class specialization of WWW::Search for searching
    http://www.feedster.com.

AUTHOR
    Nick Gerakines <nick@socklabs.com>

COPYRIGHT
    Copyright (C) 2005-2006, Nick Gerakines

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

