
WWW::Search::CraigsList - backend for searching www.craigslist.com

use WWW::Search;
my $oSearch = new WWW::Search('CraigsList');
my $sQuery = WWW::Search::escape_query("rolex gold");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "\n";

This class is a craigslist.com specialization of WWW::Search. It handles making and interpreting searches on the infamous Craig's List website http://www.craigslist.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.


To make new back-ends, see WWW::Search.

Please tell the maintainer if you find any!

Robert Nicholson

THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

See the Changes file