WWW::Search::Jobserve ofers a backend for searching the www.jobserve.com website.
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search('Jobserve');
my $sQuery = WWW::Search::escape_query("(Fast Food Operative) and PERL");
$oSearch->native_query($sQuery, { job_category => 'it' });
while (my $oResult = $oSearch->next_result())
{
print $oResult->url, "
";
print $oResult->title, "
";
print $oResult->description, "
";
}
This class is a Jobserve specialisation of WWW::Search. It handles making, retrieving and interpreting Jobserve searches http://www.jobserve.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
NOTES
This class can be used to query both the UK and Australian Jobserve sites, see below.
The search will terminate unless job_category is set in the native_query options.
The results are ordered Best Match first (unless 'job_order' => 'DateTime' is specified).
Product's homepage
Requirements:
· Perl