NAME

Net::Google::Search - simple OOP-ish interface to the Google SOAP API for searching


SYNOPSIS

 use Net::Google::Search;
 my $search = Net::Google::Search->new(\%args);
 $search->query(qw(aaron cope));
 map { print $_->title()."\n"; } @{$search->results()};
 # or
 foreach my $r (@{$search->response()}) {
   print "Search time :".$r->searchTime()."\n";
   # returns an array ref of Result objects
   # the same as the $search->results() method
   map { print $_->URL()."\n"; } @{$r->resultElement()}
 }


DESCRIPTION

Provides a simple OOP-ish interface to the Google SOAP API for searching.

This package is used by Net::Google.


PACKAGE METHODS

__PACKAGE__->new(\%args)

Valid arguments are :

The object constructor in Net::Google 0.53, and earlier, expected a GoogleSearchService object as its first argument followed by a hash reference of argument. Versions 0.6 and higher are backwards compatible.

Returns an object. Woot!


OBJECT METHODS

$obj->key($string)

Get/set the Google API key for this object.

$obj->http_proxy($url)

Get/set the HTTP proxy for this object.

Returns a string.

$obj->query(@data)

If the first item in @data is empty, then any existing query data will be removed before the new data is added.

Returns a string of words separated by white space. Returns undef if there was an error.

$obj->starts_at($at)

Returns an int. Default is 0.

Returns undef if there was an error.

$obj->max_results($max)

The default set by Google is 10 results. However, if you pass a number greater than 10 the results method will make multiple calls to Google API.

Returns an int.

Returns undef if there was an error.

$obj->restrict(@types)

If the first item in @types is empty, then any existing restrict data will be removed before the new data is added.

Returns a string. Returns undef if there was an error.

$obj->filter($bool)

Returns true or false. Returns undef if there was an error.

$obj->safe($bool)

Returns true or false. Returns undef if there was an error.

$obj->lr(@lang)

Language restriction.

If the first item in @lang is empty, then any existing lr data will be removed before the new data is added.

Returns a string. Returns undef if there was an error.

$obj->ie(@types)

Input encoding.

If the first item in @types is empty, then any existing ie data will be removed before the new data is added.

Returns a string. Returns undef if there was an error.

$obj->oe(@types)

Output encoding.

If the first item in @types is empty, then any existing oe data will be removed before the new data is added.

Returns a string. Returns undef if there was an error.

$obj->return_estimatedTotal($bool)

Toggle whether or not to return all the results defined by the '__estimatedTotalResultsCount' key.

Default is false.

$obj->response()

Returns an array ref of Net::Google::Response objects, from which the search response metadata as well as the search results may be obtained.

Use this method if you would like to receive a full response as documented in the Google Web APIs Reference (the whole of section 3).

$obj->results()

Returns an array ref of Result objects (see docs for Net::Google::Response), each of which represents one result from the search.

Use this method if you don't care about the search response metadata, and only care about the resources that are found by the search, as described in section 3.2 of the Google Web APIs Reference.


VERSION

0.4


DATE

$Date: 2003/04/17 13:25:47 $


AUTHOR

Aaron Straup Cope


CONTRIBUTORS

Marc Hedlund <marc@precipice.org>


TO DO


SEE ALSO

the Net::Google manpage


LICENSE

Copyright (c) 2002-2003, Aaron Straup Cope. All Rights Reserved.

This is free software, you may use it and distribute it under the same terms as Perl itself.