NAME
WWW::Search::Monster - A backend for searching www.monster.com jobs.
SYNOPSIS
my $oSearch = new WWW::Search('Monster');
my $sQuery = WWW::Search::escape_query("embedded software engineer");
$oSearch->native_query($sQuery, { country => 'US' });
while (my $oResult = $oSearch->next_result())
{
print $oResult->title, "\n";
print $oResult->url, "\n";
}
DESCRIPTION
This class is a specialization of WWW::Search for searching job advertisements using monster.com. Note that the results will all be links to monster's own server.
This class exports no public interface; all interaction should be done through WWW::Search objects.
Works for any country connected to the monster network. It is possible to specify the country, using the 'country' parameter to the native_query method of WWW::Search.
AUTHOR
WWW::Search::Monster
is written by Craig Kadziolka, <craigk@interia.pl>
COPYRIGHT
Copyright 2004 by Craig Kadziolka <craigk@interia.pl>. All rights reserved.
This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.