File: google.pl

package info (click to toggle)
soap-lite 0.55-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,100 kB
  • ctags: 516
  • sloc: perl: 8,038; makefile: 55; cs: 16
file content (24 lines) | stat: -rw-r--r-- 804 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!perl -w
#!d:\perl\bin\perl.exe 

# -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --

# Google Web API: http://www.google.com/apis/
# NB: Register and get your own key first
# see also:
#   http://interconnected.org/home/more/GoogleSearch.pl.txt
#   http://aaronland.net/weblog/archive/4205
#   http://www.oreillynet.com/cs/weblog/view/wlg/1283

use SOAP::Lite;

my $key = '0'; # <<< put your key here
my $query = shift || 'soap';

# use GoogleSearch.wsdl file from Google developer's kit
my $google = SOAP::Lite->service('file:./GoogleSearch.wsdl');
my $result = $google->doGoogleSearch(
  $key, $query, 0, 10, 'false', '', 'false', '', 'latin1', 'latin1');

die $google->call->faultstring if $google->call->fault;
print "About $result->{'estimatedTotalResultsCount'} results.\n";