search yahoo
WWW::Search::Yahoo 2.405
WWW::Search::Yahoo is a Perl backend for searching www.yahoo.com more>>
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo);
my $sQuery = WWW::Search::escape_query("sushi restaurant Columbus Ohio");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";
This class is a Yahoo specialization of WWW::Search. It handles making and interpreting Yahoo searches http://www.yahoo.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
WWW::Search::Yahoo::UK 2.405
WWW::Search::Yahoo::UK is a Perl class for searching Yahoo! UK (not Ireland). more>>
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo::UK);
my $sQuery = WWW::Search::escape_query("Surrey");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";
This class is a Yahoo! UK specialization of WWW::Search. It handles making and interpreting searches on Yahoo! UK http://uk.yahoo.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
WWW::Search::Yahoo::DE 2.405
WWW::Search::Yahoo::DE is Perl class for searching Yahoo! Deutschland. more>>
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo::DE);
my $sQuery = WWW::Search::escape_query("Perl OOP Freelancer");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result()) {
print $oResult->url, "n";
}
This class is a Yahoo! Deutschland (Germany) specialization of WWW::Search. It handles making and interpreting searches on Yahoo! Deutschland (Germany) http://de.yahoo.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
pYsearch 2.0
pYsearch allows developers to use Yahoo! Search Web Services to access Yahoo content and services from their own applications. more>>
It implements easy to use, flexible and extensible APIs.
Main features:
- Extendandable API, with replaceable backend XML parsers, and I/O interface.
- Type and value checking on search parameters, including automatic type conversion (when appropriate and possible)
- Flexible return format, including DOM objects, or fully parsed result objects
Enhancements:
- This release is a major refactoring of all the search classes for easier use and maintenance.
- It also updates all existing classes with recent API chances, as well as adding support for new search services (like Audio and Site Explorer).
- Documentation has been greatly improved, and there are many minor bugfixes.
WWW::Search::YahooNews 1.00
WWW::Search::YahooNews is a Perl backend for searching Yahoo News. more>>
SYNOPSIS
use WWW::Search; $query = "Bob Hope"; $search = new WWW::Search(YahooNews); $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;
$desc
n"; }
This class is a Yahoo specialization of WWW::Search. It handles making and interpreting Yahoo News Searches. Yahoo allows searching a wide variety of news sources like SEC and PRWire to name a few. http://www.search.news.yahoo.com.
HOW DOES IT WORK?
native_setup_search is called (from WWW::Search::setup_search) before we do anything. It initializes our private variables (which all begin with underscore) and sets up a URL to the first results page in {_next_url}.
native_retrieve_some is called (from WWW::Search::retrieve_some) whenever more hits are needed. It calls WWW::Search::http_request to fetch the page specified by {_next_url}. It then parses this page, appending any search hits it finds to {cache}. If it finds a ``next button in the text, it sets {_next_url} to point to the page for the next set of results, otherwise it sets it to undef to indicate were done.
WWW::Search::Yahoo::China 2.405
WWW::Search::Yahoo::China is a Perl class for searching Yahoo! China. more>>
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo::China);
my $sQuery = WWW::Search::escape_query(" $BK=So4+Gi (B");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";
This class is a Yahoo! China specialization of WWW::Search. It handles making and interpreting searches on Yahoo! China http://cn.yahoo.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
WWW::Search::Yahoo::Korea 2.405
WWW::Search::Yahoo::Korea is a Perl class for searching Yahoo! Korea. more>>
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo::Korea);
my $sQuery = WWW::Search::escape_query("Tokyo");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";
This class is a Yahoo! Korea specialization of WWW::Search. It handles making and interpreting searches on Yahoo! Korea http://kr.yahoo.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
pro-search 0.17.2
pro-search is a crawler for FTP servers, SMB shares, HTTP servers, and DC++ networks. more>>

SearchBox Sync 1.3
SearchBox Sync allows you to synchronize the searchbox content. more>>
SearchBox Sync 1.3v is one of the most marvelous tools which can automatically update the search box content when you search directly in a search engine (Google, Yahoo, Live, MSN, YouTube, ...). Custom synchronization rules can be easily added for your preferred search engine.
Enhancements: Improved: Compatibility for Firefox 3.5.
<<lessWWW::Search::Yahoo::TV::Echostar 2.405
WWW::Search::Yahoo::TV::Echostar is a backend for searching tv.yahoo.com more>>
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo::TV::Echostar);
my $sQuery = WWW::Search::escape_query("Bai Ling");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";
This class is a Yahoo specialization of WWW::Search. It handles making and interpreting Yahoo TV searches http://tv.yahoo.com.
NOTES
This backend does a basic keyword search against the Echostar (Dish Network) East Coast channel lineup. The query is a set of words (phrase searching is not supported at tv.yahoo.com). By default, the query terms are ORed and applied to all available fields (title, subtitle, description, and cast/crew). See below for how to do Advanced search on these fields individually.
WWW::Search::Yahoo::Japan::News 2.405
WWW::Search::Yahoo::Japan::News is a Perl class for searching News on Yahoo Japan (in Japanese). more>> <<less
WWW::Search::Yahoo::News::Advanced 2.405
WWW::Search::Yahoo::News::Advanced is a Perl class for searching Yahoo! News using the advanced interface. more>>
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo::News::Advanced);
my $sQuery = WWW::Search::escape_query("George Lucas");
$oSearch->date_from(2001-05-05);
$oSearch->date_to( 2001-07-05);
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";
This class is a Yahoo! News specialization of WWW::Search. It handles making and interpreting searches on Yahoo! News http://search.news.yahoo.com using the Advanced search interface.
This class exports no public interface; all interaction should be done through WWW::Search objects.
Yahoo::Search 1.7.10
Yahoo::Search is a Perl interface to the Yahoo! Search public API. more>>
The following search spaces are supported:
Doc
Common web search for documents (html, pdf, doc, ...), including Y!Q contextual search.
Image
Image search (jpeg, png, gif, ...)
Video
Video file search (avi, mpeg, realmedia, ...)
News
News article search
Local
Yahoo! Local area (ZIP-code-based Yellow-Page like search)
Terms
A pseudo-search to report the important search terms from the provided content or content+query.
Spell
A pseudo-search to fetch a "did you mean?" spelling suggestion for a search term.
Related
A pseudo-search to fetch "also try" related-searches for a search term.
(Note: what this Perl API calls "Doc" Search is what Yahoo! calls "Web" Search. But gee, arent all web searches "Web" search, including Image/News/Video/etc?)
Yahoo!s raw API, which this package uses, is described at:
http://developer.yahoo.net/
Sethi Yahoo News Grabber 1.0
Sethi Yahoo News Grabber is a small script used for fetching news from Yahoo. more>>
Quick and dirty routine to get Yahoo news
Should save result to a text file and then SSI the sucker where you want

Okapiland Search Toolbar 1.3
Okapiland Search Toolbar provides Internet search in Composite Page Mode (CPM) that displays linked pages themselves. more>>
Okapiland Search Toolbar 1.3 will make your Firefox browser even more powerful as it is designed to provide Internet search in Composite Page Mode (CPM) that displays linked pages themselves in addition to hyperlinks.
All pages can be displayed by scrolling the pages. Internet Search is good for the quick search or clear search, but the deep search or ambiguous search requires your effort. The CPM can save your operation. To prevent unexpected intruder at displaying the linked pages, the dynamic type of contents, e.g. JavaScript or Applet, is not displayed.
Enhancements:
- Support Firefox 2.0, and add an improvement.
- The width of each frame is automatically adjusted at the resize of the browser.
Requirements:
- Mozilla Firefox