
WWW::Search::AlltheWeb - class for searching AlltheWeb

use WWW::Search; $query = "sprinkler system installation how to"; $search = new WWW::Search('AlltheWeb'); $search->native_query(WWW::Search::escape_query($query)); $search->maximum_to_retrieve(100); while (my $result = $search->next_result()) {
$url = $result->url; $title = $result->title; $desc = $result->description;
print "<a href=$url>$title</a> $source<br>$date<br>$desc<p>\n"; }

AlltheWeb is a class specialization of WWW::Search. It handles making and interpreting AlltheWeb searches. This is one of the fastest and largest search engines around. http://www.alltheweb.com.
This class exports no public interface; all interaction should be done through WWW::Search objects. See SYNOPSIS.

WWW::Search::AlltheWeb is written by Jim Smyser Author e-mail <jsmyser@bigfoot.com>

Copyright (c) 1996-1999 University of Southern California. All rights reserved.
THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.