Net::Google

Net::Google is a simple OOP-ish interface to the Google SOAP API.
Download

Net::Google Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Aaron Straup Cope
  • Publisher web site:
  • http://search.cpan.org/~ascope/Net-Flickr-Geo-0.72/lib/Net/Flickr/Geo/ModestMaps.pm

Net::Google Tags


Net::Google Description

Net::Google is a simple OOP-ish interface to the Google SOAP API. Net::Google is a simple OOP-ish interface to the Google SOAP API.SYNOPSIS use Net::Google; use constant LOCAL_GOOGLE_KEY => "********************************"; my $google = Net::Google->new(key=>LOCAL_GOOGLE_KEY); my $search = $google->search(); # Search interface $search->query(qw(aaron straup cope)); $search->lr(qw(en fr)); $search->starts_at(5); $search->max_results(15); 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->resultElements()}; } # Spelling interface print $google->spelling(phrase=>"muntreal qwebec")->suggest(),"n"; # Cache interface my $cache = $google->cache(url=>"http://search.cpan.org/recent"); print $cache->get();Provides a simple OOP-ish interface to the Google SOAP API Requirements: · Perl


Net::Google Related Software