NAME REST::Google::Search - OO interface to Google Search API SYNOPSIS use REST::Google::Search; REST::Google::Search->http_referer('http://example.com'); my $res = REST::Google::Search->new( q => 'Larry Wall', ); die "response status failure" if $res->responseStatus != 200; my $data = $res->responseData; my $cursor = $data->cursor; my $pages = $cursor->pages; printf "current page index: %s\n", $c