WWW::Search::AOL::Classifieds::Employment is a class for searching Jobs Classifieds on AOL.
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search('Aol');
my $sQuery = WWW::Search::escape_query("unix c++ java");
$oSearch->native_query($sQuery,
{'qcqs' => ':ca:'});
while (my $res = $oSearch->next_result()) {
print $res->company . "t" . $res->title . "t" . $res->change_date
. "t" . $res->location . "n";
}
This class is a Aol specialization of WWW::Search. It handles making and interpreting Aol searches at http://classifiedplus.aol.com in category employment->JobSearch.
The returned WWW::SearchResult objects contain url, title, company, location and change_date fields.
Product's homepage
Requirements:
· Perl