Main > Free Download Search >

Free submitting site to google software for linux

submitting site to google

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2339
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
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
Kwiki::SOAP::Google 0.04

Kwiki::SOAP::Google 0.04


Kwiki::SOAP::Google is an experiment with SOAP request to Google through wafl. more>>
Kwiki::SOAP::Google is an experiment with SOAP request to Google through wafl.

SYNOPSIS

{googlesoap my search terms}

This is a WAFL phrase for Kwiki that allows searches of google through their SOAP API. You must have your own Google API key to use it. If you do not have one you can get one from Google:

http://www.google.com/apis/

After installation you must edit the Kwiki::SOAP::Google file to add your key (this will be improved at a later time).

<<less
Download (0.009MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
WebService::StreetMapLink::Google 0.1

WebService::StreetMapLink::Google 0.1


WebService::StreetMapLink::Google is a WebService::StreetMapLink subclass for Google Maps. more>>
WebService::StreetMapLink::Google is a WebService::StreetMapLink subclass for Google Maps.

SYNOPSIS

use WebService::StreetMapLink;

my $map =
WebService::StreetMapLink->new
( country => usa,
address => 100 Some Street,
city => Testville,
state => MN,
postal_code => 12345,
);

my $uri = $map->uri;

This subclass generates links to Google Maps.

<<less
Download (0.017MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Geo::Google::Path 0.02

Geo::Google::Path 0.02


Geo::Google::Path is a path, by automobile, between two loci. more>>
Geo::Google::Path is a path, by automobile, between two loci.

SYNOPSIS

use Geo::Google::Path;
# you shouldnt need to construct these yourself,
# have a Geo::Google object do it for you.

Google Maps is able to serve up directions between two points. Directions consist of two types of components:

1. a series of points along a "polyline".
2. a series of annotations, each of which applies to a contiguous
range of points.

In the Geo::Google object model, directions are available by calling path() on a Geo::Google instance. The return value is a Geo::Google::Path object, which is a composite of Geo::Google::Segment objects, which are in turn composites of Geo::Google::Location objects.

<<less
Download (0.010MB)
Added: 2006-11-24 License: Perl Artistic License Price:
1064 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
Lyrics::Fetcher::Google 0.02

Lyrics::Fetcher::Google 0.02


Lyrics::Fetcher::Google is a Perl module to get some lyrics. more>>
Lyrics::Fetcher::Google is a Perl module to get some lyrics.

SYNOPSIS

use Lyrics::Fetcher;

$Lyrics::Fetcher::gid = ;

print Lyrics::Fetcher->fetch(" "," ","Google");

This module tries to find lyrics on the web. Sometimes it works. But it probably wont.
It searches google for an initial set. It then finds the largest block of plain text in the top 5 results. Those results are then compared to one another and weighted.

The idea being that a large block of text on one site may be a bunch of poo, but a large area of similar text on multiple sites most likely is the lyrics for which you are looking.

<<less
Download (0.010MB)
Added: 2006-11-24 License: Perl Artistic License Price:
1065 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::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
Geo::Google::Segment 0.02

Geo::Google::Segment 0.02


Geo::Google::Segment is an annotated segment of a path. more>>
Geo::Google::Segment is an annotated segment of a path.

SYNOPSIS

use Geo::Google::Segment;
# you shouldnt need to construct these yourself,
# have a Geo::Google object do it for you.

Google Maps is able to serve up directions between two points. Directions consist of two types of components:

1. a series of points along a "polyline".
2. a series of annotations, each of which applies to a contiguous
range of points.

In the Geo::Google object model, directions are available by calling path() on a Geo::Google instance. The return value is a Geo::Google::Path object, which is a composite of Geo::Google::Segment objects, which are in turn composites of Geo::Google::Location objects.

<<less
Download (0.010MB)
Added: 2006-11-24 License: Perl Artistic License Price:
1064 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
Geo::Google::Location 0.02

Geo::Google::Location 0.02


Geo::Google::Location is a geographical point. more>>
Geo::Google::Location is a geographical point.

SYNOPSIS

use Geo::Google::Point;
# you shouldnt need to construct these yourself,
# have a Geo::Google object do it for you.

OBJECT METHODS

Geo::Google::Location objects provide the following accessor methods

Method Description
------ -----------
icon an icon to use when drawing this point.
id a unique identifier for this point.
infostyle unknown function.
latitude latitude of the point, to hundred-thousandth degree precision.
lines a few lines describing the point, useful as a label
longitude longitude of the point, to hundred-thousandth degree precision.
title a concise description of the point.
toString a method that renders the point in Google Maps XML format.

<<less
Download (0.010MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1062 downloads
Plone Google Maps 0.2

Plone Google Maps 0.2


Plone Google Maps is a product which enables integration of Google Maps into Plone sites. more>>
Plone Google Maps is a product which enables integration of Google Maps into Plone sites.

Plone Google Maps (qPloneGoogleMaps) is a Google Maps view product for the Plone content management system which enables integration of Google Maps into Plone sites.

Due to qPloneGoogleMaps you can set up the latitude and longitude of your site objects and have their maps exhibited on your site.

Any object with the latitude-longitude has an additional map portlet displaying this object. This portlet, in turn, has a template "Large screen". If you click on the large screen below the portlet, you will be able to see the full-size map of the page with its description.

The folders containing objects with the latitude-longitude parameters have an additional display view - "maps view", which gives an opportunity to see the full-size map with all these objects.

There is a new content type "Map" which can have other content types - "overlays". It enables the positioning of different objects on one map showing them with the markers of different colours.

Plone Google Maps Installation

Install qPloneGoogleMaps and geolocation as Zope products
Install these two products in your Plone instance with Quick Installer (Plone Control Panel ->Add/remove Products)

<<less
Download (0.042MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
945 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
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5