NAME
    WWW::Search::Feedster - Search Feedster

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.

Specific searches
    Aside from generic searches, more specific searches can be performed by
    setting the `category` modifier and its attributes. Take note of the
    following examples.

      my $search = WWW::Search->new(
        'Feedster',
        category => 'blogs'
      );
      ...

    OR

      my $search = WWW::Search->new(
        'Feedster',
        category => 'jobs',
        location => 'California' # Optional
      );
      ...

      my $search = WWW::Search->new(
        'Feedster',
        category => 'links',
      );
      $search->native_query('http://www.feedster.com');
      ...

    Valid categories include blogs, jobs, feedfinder and links.

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.

