|
WWW::Search::VoilaFr - class for searching voila.fr
|
WWW::Search::VoilaFr - class for searching voila.fr
This module is not included with the standard ActivePerl distribution. It is available as a separate download using PPM.
require WWW::Search;
$search = new WWW::Search('VoilaFr');
This class is a specialization of WWW::Search for voila.fr.
A french search engine.
All searchs are based on and ONLY on gui_query function.
This class exports no public interface; all interaction should be done
through WWW::Search objects.
use WWW::Search;
my $oSearch = new WWW::Search('VoilaFr');
$oSearch->maximum_to_retrieve(100);
#$oSearch ->{_debug}=1;
my $sQuery = WWW::Search::escape_query("bretagne");
$oSearch->gui_query($sQuery);
while (my $oResult = $oSearch->next_result())
{
print $oResult->url,"\t",$oResult->title,"\n";
}
WWW::Search::VoilaFr is written by Mikou,
mikou@spip.viewline.net
|
WWW::Search::VoilaFr - class for searching voila.fr
|
|