
WWW::Search::Yahoo::Japan - WWW::Search backend for searching Yahoo! Japan

use WWW::Search;
my $oSearch = new WWW::Search('Yahoo::Japan');
my $sQuery = WWW::Search::escape_query("Iijima Ai");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "\n";

This class is a Yahoo! Japan specialization of WWW::Search. It handles making and interpreting searches on Yahoo! Japan http://yahoo.co.jp.
This class exports no public interface; all interaction should be done through WWW::Search objects.

If your query is in UTF-8, send option {ei => 'UTF-8'} in the second argument to native_query().

This is part of the basic WWW::Search::Yahoo mechanism.

To make new back-ends, see WWW::Search.

Please tell the maintainer if you find any!

Martin Thurn <mthurn@cpan.org>

This module is licensed under the same terms as Perl itself.