The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::Search::Deja - class for www.deja.com searching

SYNOPSIS

  require WWW::Search;
  $search = new WWW::Search('Deja');
  my $sQuery = WWW::Search::escape_query("stupid Virginia school closings");
  $oSearch->native_query($sQuery);
  while (my $oResult = $oSearch->next_result())
    { print $oResult->url, "\n"; }

DESCRIPTION

This class implements the Deja.com search (specializing WWW::Search). It handles making and interpreting Deja.com searches http://www.deja.com.

This class exports no public interface; all interaction should be done through WWW::Search objects.

TESTING

This module just points everything to Dejanews.pm; there is no local testing.

AUTHOR

WWW::Search::Deja was written by Martin Thurn <MartinThurn@iname.com>