Google::Ranker is a Perl module to find the ranking of a site/result against a search.
SYNOPSIS
use Google::Ranker;
my $rank = Google::Ranker->rank("search.cpan.org", { q => "perl network", key => ..., referer => ... });
# (Make sure to get a valid key and referer from http://code.google.com/apis/ajaxsearch/signup.html first)
# Or pass in a prepared search:
my $search = Google::Search->Local(...);
my $rank = Google::Ranker->rank("example.com", $search);
# You can also rank against different criteria:
my $search = Google::Search->Video(q => "tay zonday", ...);
my $rank = Google::Ranker->rank(sub { $_[0]->titleNoFormatting =~ m/Chocolate Rain/i }, $search);
Google::Ranker will determine the rank of a result matching some criteria within a search. The search can be done on any of Google's search services, including web, local, news, blogs, images, videos, and books.
Product's homepage
Requirements:
· Perl