net google
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1548
Net::Google 1.0
Net::Google is a simple OOP-ish interface to the Google SOAP API. more>>
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
<<lessSYNOPSIS
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
Download (0.016MB)
Added: 2006-11-20 License: Perl Artistic License Price:
1069 downloads
Net::Google::tool 1.0.1
Net::Google::tool is a base class for Net::Google service classes. more>>
Net::Google::tool is a base class for Net::Google service classes.
Base class and shared methods for Net::Google service classes.
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();
<<lessBase class and shared methods for Net::Google service classes.
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();
Download (0.017MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1061 downloads
Net::Google::Cache 1.0.1
Net::Google::Cache is a simple OOP-ish interface to the Google SOAP API for cached documents. more>>
Net::Google::Cache is a simple OOP-ish interface to the Google SOAP API for cached documents.
SYNOPSIS
use Net::Google::Cache;
my $cache = Net::Google::Cache(%args);
$cache->url("http://aaronland.net);
print $cache->get();
Provides a simple OOP-ish interface to the Google SOAP API for cached documents.
This package is used by Net::Google.
<<lessSYNOPSIS
use Net::Google::Cache;
my $cache = Net::Google::Cache(%args);
$cache->url("http://aaronland.net);
print $cache->get();
Provides a simple OOP-ish interface to the Google SOAP API for cached documents.
This package is used by Net::Google.
Download (0.017MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1068 downloads
Net::Google::Service 1.0.1
Net::Google::Service is a SOAP widget(s) for Net::Google. more>>
Net::Google::Service is a SOAP widget(s) for Net::Google.
SYNOPSIS
use Net::Google::Service;
my $search = Net::Google::Service->search({debug=>1});
PACKAGE METHODS
__PACKAGE__->search(%args)
__PACKAGE__->spelling(%args)
__PACKAGE_->cache(%args)
<<lessSYNOPSIS
use Net::Google::Service;
my $search = Net::Google::Service->search({debug=>1});
PACKAGE METHODS
__PACKAGE__->search(%args)
__PACKAGE__->spelling(%args)
__PACKAGE_->cache(%args)
Download (0.017MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1061 downloads
Net::Google::Search 1.0.1
Net::Google::Search is a simple OOP-ish interface to the Google SOAP API for searching. more>>
Net::Google::Search is a 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()}
}
Provides a simple OOP-ish interface to the Google SOAP API for searching.
This package is used by Net::Google.
<<lessSYNOPSIS
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()}
}
Provides a simple OOP-ish interface to the Google SOAP API for searching.
This package is used by Net::Google.
Download (0.017MB)
Added: 2006-11-20 License: Perl Artistic License Price:
1069 downloads
Net::Google::Calendar 0.5
Net::Google::Calendar is a programmatic access to Googles Calendar API. more>>
Net::Google::Calendar is a programmatic access to Googles Calendar API.
SYNOPSIS
my $cal = Net::Google::Calendar->new( url => $url );
$cal->login($u, $p);
for ($cal->get_events()) {
print $_->title."n";
print $_->content->body."n*****nn";
}
my $entry = Net::Google::Calendar::Entry->new();
$entry->title($title);
$entry->content("My content");
$entry->location(London, England);
$entry->transparency(transparent);
$entry->status(confirmed);
$entry->when(DateTime->now, DateTime->now() + DateTime::Duration->new( hours => 6 ) );
my $author = Net::Google::Calendar::Person->new();
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
my $tmp = $cal->add_entry($entry);
die "Couldnt add event: $@n" unless defined $tmp;
print "Events=".scalar($cal->get_events())."n";
$tmp->content(Updated);
$cal->update_entry($tmp) || die "Couldnt update ".$tmp->id.": $@n";
$cal->delete_entry($tmp) || die "Couldnt delete ".$tmp->id.": $@n";
<<lessSYNOPSIS
my $cal = Net::Google::Calendar->new( url => $url );
$cal->login($u, $p);
for ($cal->get_events()) {
print $_->title."n";
print $_->content->body."n*****nn";
}
my $entry = Net::Google::Calendar::Entry->new();
$entry->title($title);
$entry->content("My content");
$entry->location(London, England);
$entry->transparency(transparent);
$entry->status(confirmed);
$entry->when(DateTime->now, DateTime->now() + DateTime::Duration->new( hours => 6 ) );
my $author = Net::Google::Calendar::Person->new();
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
my $tmp = $cal->add_entry($entry);
die "Couldnt add event: $@n" unless defined $tmp;
print "Events=".scalar($cal->get_events())."n";
$tmp->content(Updated);
$cal->update_entry($tmp) || die "Couldnt update ".$tmp->id.": $@n";
$cal->delete_entry($tmp) || die "Couldnt delete ".$tmp->id.": $@n";
Download (0.008MB)
Added: 2006-11-25 License: Perl Artistic License Price:
1063 downloads
Tie::Google 0.03
Tie::Google is a Perl module with single-variable access to Google search results. more>>
Tie::Google is a Perl module with single-variable access to Google search results.
SYNOPSIS
my $KEYFILE = glob "~/.googlekey";
my ($g, @g, %g);
# Tied array interface
tie @g, "Tie::Google", $KEYFILE, "perl";
for my $r (@g) {
printf " *,
$r->{URL}, $r->{title};
}
# Tied hash interface
tie %g, "Tie::Google", $KEYFILE;
for my $term (qw[ perl python ruby ]) {
my $res = $g{$term};
printf "%d results for %s:n", scalar @$res, $term;
for my $r (@$res) {
printf " * ,
$r->{URL}, $r->{title};
}
}
# Tied scalar interface: I Feel Lucky
use LWP::Simple qw(getprint);
tie $g, "Tie::Google", $KEYFILE, "perl";
getprint($g->{URL});
<<lessSYNOPSIS
my $KEYFILE = glob "~/.googlekey";
my ($g, @g, %g);
# Tied array interface
tie @g, "Tie::Google", $KEYFILE, "perl";
for my $r (@g) {
printf " *,
$r->{URL}, $r->{title};
}
# Tied hash interface
tie %g, "Tie::Google", $KEYFILE;
for my $term (qw[ perl python ruby ]) {
my $res = $g{$term};
printf "%d results for %s:n", scalar @$res, $term;
for my $r (@$res) {
printf " * ,
$r->{URL}, $r->{title};
}
}
# Tied scalar interface: I Feel Lucky
use LWP::Simple qw(getprint);
tie $g, "Tie::Google", $KEYFILE, "perl";
getprint($g->{URL});
Download (0.010MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1067 downloads
Net::Google::Spelling 1.0.1
Net::Google::Spelling is a simple OOP-ish interface to the Google SOAP API for spelling suggestions. more>>
Net::Google::Spelling is a simple OOP-ish interface to the Google SOAP API for spelling suggestions.
SYNOPSIS
use Net::Google::Spelling;
my $spelling = Net::Google::Spelling(%args);
$spelling->phrase("muntreal qweebec");
print $spelling->suggest()."n";
Provides a simple OOP-ish interface to the Google SOAP API for spelling suggestions.
This package is used by Net::Google.
<<lessSYNOPSIS
use Net::Google::Spelling;
my $spelling = Net::Google::Spelling(%args);
$spelling->phrase("muntreal qweebec");
print $spelling->suggest()."n";
Provides a simple OOP-ish interface to the Google SOAP API for spelling suggestions.
This package is used by Net::Google.
Download (0.016MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1068 downloads
Net::Google::Response 1.0.1
Net::Google::Response is a simple OOP-ish interface to the Google SOAP API search responses. more>>
Net::Google::Response is a simple OOP-ish interface to the Google SOAP API search responses.
SYNOPSIS
my $service = Net::Google->new(key=>LOCAL_GOOGLE_KEY);
my $session = $service->search();
$session->query(qw(Perl modules));
# You are probably better off calling
# $session->results() but if you want
# the raw response object(s) here ya go :
my $responses = $session->response();
my $count = scalar(@$responses);
# $r is a Net::Google::Response object
foreach my $r (@$responses) {
print sprintf("%s : %sn",$r->searchQuery(),$r->estimatedTotalResults());
}
Provides a simple OOP-ish interface to the Google SOAP API for searching. This package is used by Net::Google.
The Net::Google::Response object is used to contain response information provided by the Google search service in response to a search query. The Response object allows the client program to easily access the data returned from a search.
Response data is accessed using methods with identical names to the elements of a search response (as documented in the Google Web APIs Reference, section 3). For instance, the first example in the SYNOPSIS section, above, would return the estimated number of total results for the query.
Response objects may contain other response objects, where an element would return an array of other elements. For instance, calling $response->resultElements() will return a reference to an array of Net::Google::Response objects, each one representing one result from the search.
The Response module will automatically provide methods for the search response, as described by the service WSDL file. The results format is described by the Google APIs documentation, to which you should refer for the most up-to-date information. As of the April 8th, 2002 release of the Google APIs, the methods below are provided for each search result.
<<lessSYNOPSIS
my $service = Net::Google->new(key=>LOCAL_GOOGLE_KEY);
my $session = $service->search();
$session->query(qw(Perl modules));
# You are probably better off calling
# $session->results() but if you want
# the raw response object(s) here ya go :
my $responses = $session->response();
my $count = scalar(@$responses);
# $r is a Net::Google::Response object
foreach my $r (@$responses) {
print sprintf("%s : %sn",$r->searchQuery(),$r->estimatedTotalResults());
}
Provides a simple OOP-ish interface to the Google SOAP API for searching. This package is used by Net::Google.
The Net::Google::Response object is used to contain response information provided by the Google search service in response to a search query. The Response object allows the client program to easily access the data returned from a search.
Response data is accessed using methods with identical names to the elements of a search response (as documented in the Google Web APIs Reference, section 3). For instance, the first example in the SYNOPSIS section, above, would return the estimated number of total results for the query.
Response objects may contain other response objects, where an element would return an array of other elements. For instance, calling $response->resultElements() will return a reference to an array of Net::Google::Response objects, each one representing one result from the search.
The Response module will automatically provide methods for the search response, as described by the service WSDL file. The results format is described by the Google APIs documentation, to which you should refer for the most up-to-date information. As of the April 8th, 2002 release of the Google APIs, the methods below are provided for each search result.
Download (0.016MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1067 downloads
Plone Google Sitemaps 0.5
Plone Google Sitemaps is a product which allows Plone websites to get better visibility for Google search engine. more>>
Plone Google Sitemaps is a product which allows Plone websites to get better visibility for Google search engine.
The product allows Plone websites to get better visibility for Google search engine by providing it with complete listing of URLs to website content.
What is Google Sitemaps
Google Sitemaps program allow webmasters and site owners to feed it pages theyd like to have included in Googles web index. Participation is free. Inclusion isnt guaranteed, but Googles hoping the new system will help it better gather pages than traditional crawling alone allows. Feeds also let site owners indicate how often pages change or should be revisited.
Usage
Install with Quick Installer.
Go to Google Sitemaps and add http://your.site/google-sitemaps.
Should be working without any intervention.
Enhancements:
- Fix up bug in sed command s
<<lessThe product allows Plone websites to get better visibility for Google search engine by providing it with complete listing of URLs to website content.
What is Google Sitemaps
Google Sitemaps program allow webmasters and site owners to feed it pages theyd like to have included in Googles web index. Participation is free. Inclusion isnt guaranteed, but Googles hoping the new system will help it better gather pages than traditional crawling alone allows. Feeds also let site owners indicate how often pages change or should be revisited.
Usage
Install with Quick Installer.
Go to Google Sitemaps and add http://your.site/google-sitemaps.
Should be working without any intervention.
Enhancements:
- Fix up bug in sed command s
Download (0.013MB)
Added: 2007-03-28 License: ZPL (Zope Public License) Price:
943 downloads
net-tools 1.60
net-tools are programs that form the base set of the NET-3 networking distribution. more>>
The net-tools package contains a collection of programs that form the base set of the NET-3 networking distribution for the Linux operating system.
It contains the important tools for controlling the network subsystem of the Linux kernel including arp, hostname, ifconfig, netstat, rarp and route.
<<lessIt contains the important tools for controlling the network subsystem of the Linux kernel including arp, hostname, ifconfig, netstat, rarp and route.
Download (0.19MB)
Added: 2005-04-06 License: GPL (GNU General Public License) Price:
1664 downloads
Zoogle 0.1
Zoogle provides a Z39.50 gateway to the Google Web index. more>>
Zoogle provides a Z39.50 gateway to the Google Web index.
Zoogle is a Z39.50 gateway to the Google web index. With this gateway you can search the Google index with any Z39.50 client.
It is based upon Googles official search API, the popular YAZ toolkit, and the Perl module Net::Z3950::SimpleServer.
<<lessZoogle is a Z39.50 gateway to the Google web index. With this gateway you can search the Google index with any Z39.50 client.
It is based upon Googles official search API, the popular YAZ toolkit, and the Perl module Net::Z3950::SimpleServer.
Download (0.012MB)
Added: 2007-03-22 License: GPL (GNU General Public License) Price:
947 downloads
Net::Google::Calendar::Entry 0.5
Net::Google::Calendar::Entry is an entry class for Net::Google::Calendar. more>>
Net::Google::Calendar::Entry is an entry class for Net::Google::Calendar.
SYNOPSIS
my $event = Net::Google::Calendar::Entry->new();
$event->title(Party!);
$event->content(P-A-R-T-Why? Because we GOTTA!);
$event->location("My Flat, London, England");
$event->status(confirmed);
$event->transparency(opaque);
$event->visibility(private);
my $author = Net::Google::Calendar::Person->new;
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
<<lessSYNOPSIS
my $event = Net::Google::Calendar::Entry->new();
$event->title(Party!);
$event->content(P-A-R-T-Why? Because we GOTTA!);
$event->location("My Flat, London, England");
$event->status(confirmed);
$event->transparency(opaque);
$event->visibility(private);
my $author = Net::Google::Calendar::Person->new;
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
Download (0.009MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1063 downloads
Google Hacks 1.6
Google Hacks is a compact utility for different Google hacks, like a music search and a product key search. more>>
Google Hacks project is a compilation of carefully crafted Google searches that expose novel functionality from Googles search and map services.
For example, you can use it to view a timeline of your search results, view a map, search for music, search for books, and perform many other specific kinds of searches.
<<lessFor example, you can use it to view a timeline of your search results, view a map, search for music, search for books, and perform many other specific kinds of searches.
Download (1.1MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
530 downloads
DBD::Google 0.11
DBD::Google is a Perl module to treat Google as a datasource for DBI. more>>
DBD::Google is a Perl module to treat Google as a datasource for DBI.
SYNOPSIS
use DBI;
my $dbh = DBI->connect("dbi:Google:", $KEY);
my $sth = $dbh->prepare(qq[
SELECT title, URL FROM google WHERE q = "perl"
]);
while (my $r = $sth->fetchrow_hashref) {
...
DBD::Google allows you to use Google as a datasource; Google can be queried using SQL SELECT statements, and iterated over using standard DBI conventions.
WARNING: This is still alpha-quality software. It works for me, but that doesnt really mean anything.
<<lessSYNOPSIS
use DBI;
my $dbh = DBI->connect("dbi:Google:", $KEY);
my $sth = $dbh->prepare(qq[
SELECT title, URL FROM google WHERE q = "perl"
]);
while (my $r = $sth->fetchrow_hashref) {
...
DBD::Google allows you to use Google as a datasource; Google can be queried using SQL SELECT statements, and iterated over using standard DBI conventions.
WARNING: This is still alpha-quality software. It works for me, but that doesnt really mean anything.
Download (0.020MB)
Added: 2006-10-23 License: Perl Artistic License Price:
1098 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above net google search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed