NAME
WWW::Search::Yandex - class for searching http://www.yandex.ru.
SYNOPSIS
use WWW::Search;
my $search = new WWW::Search ("Yandex");
$search->native_query ("Test page");
while (my $r = $search->next_result ()) {
printf "%s <URL:%s>\n\t%s\n",$r->title,$r->url,$r->description;
}
DESCRIPTION
This class is an Rambler specialization of WWW::Search
. It handles making and interpreting Rambler searches http://www.rambler.ru.
This class exports no public interface; all interaction should be done through WWW::Search
objects.
As example for building my module I using WWW::Search::AltaVista
and WWW::Search::Yahoo
.
SEE ALSO
WWW::Search, http://www.yandex.ru/, http://www.ya.ru.
AUTHOR
Artur Penttinen, <artur+perl@niif.spb.su>
COPYRIGHT AND LICENSE
Copyright (C) 2004 by Artur Penttinen
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.x or, at your option, any later version of Perl 5 you may have available.