The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::Search::Infoseek::Web - class for Infoseek Web searching

SYNOPSIS

use WWW::Search;
my $oSearch = new WWW::Search('Infoseek::Web');
my $sQuery = WWW::Search::escape_query("+sushi restaurant +Columbus Ohio");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
  { print $oResult->url, "\n"; }

DESCRIPTION

This class implements the Infoseek Web search (specializing Infoseek and WWW::Search). It handles making and interpreting Infoseek Web searches http://www.infoseek.com.

This class exports no public interface; all interaction should be done through WWW::Search objects.

TESTING

This module adheres to the WWW::Search test harness.

'mrfglbqnx NoSuchWord'       --> no hits
'Martin Thurn AND Star Wars' --> 11 hits on one page
'Greedo AND collectible'     --> 38 hits on two pages

AUTHOR

WWW::Search::Infoseek::Web was written by Martin Thurn <MartinThurn@iname.com>