WWW::Search::EuroSeek is a Perl class for searching EuroSeek.
SYNOPSIS
use WWW::Search;
%opts = (
ilang => param(lang),
domain => param(domain),
);
my $search = new WWW::Search('EuroSeek');
$search->native_query(WWW::Search::escape_query($query),%opts);
$search->maximum_to_retrieve('100');
while (my $result = $search->next_result())
{
print $result->url, "n";
}
EuroSeek is a class specialization of WWW::Search. It handles making and interpreting EuroSeek searches http://www.euroseek.com.
This class exports no public interface; all interaction should be done through WWW::Search objects. See SYNOPSIS and OPTIONS for usage insight.
NOTES
printing $result->raw will print raw misc. page data of such things as the Language, Region and date. Example:
Language: english Region:com Sun Feb 20 02:55:44 2000
Print $result->raw after the description for a nice finish if desired.
EuroSeek does not seem to return uniform number of hits per page. Seem like only 8 or 9 are returned per page unlike standard 10+.
Requirements:
· Perl
Product's homepage
Requirements:
· Perl