Main > Free Download Search >

Free net google 1.0 software for linux

net google 1.0

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4389
Net::Google 1.0

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

<<less
Download (0.016MB)
Added: 2006-11-20 License: Perl Artistic License Price:
1069 downloads
Net::Google::tool 1.0.1

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();

<<less
Download (0.017MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1061 downloads
Net::Google::Cache 1.0.1

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.

<<less
Download (0.017MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1068 downloads
net-tools 1.60

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.
<<less
Download (0.19MB)
Added: 2005-04-06 License: GPL (GNU General Public License) Price:
1664 downloads
Net::Google::Service 1.0.1

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)

<<less
Download (0.017MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1061 downloads
Net::Google::Search 1.0.1

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.

<<less
Download (0.017MB)
Added: 2006-11-20 License: Perl Artistic License Price:
1069 downloads
Tie::Google 0.03

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});

<<less
Download (0.010MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1067 downloads
Net::Google::Spelling 1.0.1

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.

<<less
Download (0.016MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1068 downloads
Net::Google::Response 1.0.1

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.

<<less
Download (0.016MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1067 downloads
CSE-Tool 1.0.0

CSE-Tool 1.0.0


CSE-Tool allows you to easily deploy a Google Custom Search Engine. more>>
CSE-Tool allows you to easily deploy a Google Custom Search Engine by copying and pasting a few lines of code provided to you by Google.

CSE-Tool doesnt require a database.
<<less
Download (0.003MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1067 downloads
Google Hacks 1.6

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.
<<less
Download (1.1MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
530 downloads
Npgsql 1.0

Npgsql 1.0


Npgsql is a .Net data provider for Postgresql. more>>
Npgsql is a .Net data provider for Postgresql. It allows any program developed for .Net framework to access database server.

Npgsql library is implemented in 100% C# code. Works with Postgresql 7.x and 8.x.
<<less
Download (0.20MB)
Added: 2006-10-10 License: LGPL (GNU Lesser General Public License) Price:
1113 downloads
Zoogle 0.1

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.

<<less
Download (0.012MB)
Added: 2007-03-22 License: GPL (GNU General Public License) Price:
947 downloads
Net::Google::Calendar 0.5

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";

<<less
Download (0.008MB)
Added: 2006-11-25 License: Perl Artistic License Price:
1063 downloads
Ruby/Google 0.6.0

Ruby/Google 0.6.0


Ruby/Google offers a higher-level abstraction of Googles SOAP-driven Web API. more>>
Ruby/Google offers a higher-level abstraction of Googles SOAP-driven Web API. Ruby/Google module allows the user to programatically query the Google search engine from Ruby.

The aim of the library is to shield the programmer from the details of the raw data structures returned by the Web API, and in the process make the API more accessible for everyday use.

<<less
Download (0.025MB)
Added: 2006-02-10 License: GPL (GNU General Public License) Price:
1351 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5