NAME
WWW::Search::Go - backend class for searching with go.com
SYNOPSIS
use
WWW::Search;
my
$oSearch
= new WWW::Search(
'Go'
);
$oSearch
->maximum_to_retrieve(100);
#$oSearch ->{_debug}=1;
my
$sQuery
= WWW::Search::escape_query(
"cgi"
);
$oSearch
->gui_query(
$sQuery
);
while
(
my
$oResult
=
$oSearch
->next_result())
{
$oResult
->url,
"\t"
,
$oResult
->title,
"\n"
;
}
DESCRIPTION
This class is an Go specialization of WWW::Search. It handles making and interpreting Go searches http://www.Go.com, older Infoseek search engine.
This class exports no public interface; all interaction should be done through WWW::Search objects.
On 03/10/2001, Go use GoTo Search Engine. This module is done for previous versions compatibility.
BUGS
Go didn't define a total number of result.
AUTHOR
WWW::Search::Go
is written by Alain BARBET, alian@alianwebserver.com