Skip to content

Commit

Permalink
initial import of Yahoo-Search 1.0.0 from CPAN
Browse files Browse the repository at this point in the history
git-cpan-module:   Yahoo-Search
git-cpan-version:  1.0.0
git-cpan-authorid: JFRIEDL
git-cpan-file:     authors/id/J/JF/JFRIEDL/Yahoo-Search-1.0.0.tar.gz
  • Loading branch information
jeffrey-friedl authored and schwern committed Dec 14, 2009
0 parents commit a3413fe
Show file tree
Hide file tree
Showing 11 changed files with 4,504 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -0,0 +1,3 @@
0.9.001 Feb 18, 2005
----------------------
Yahoo!-Internal release
11 changes: 11 additions & 0 deletions MANIFEST
@@ -0,0 +1,11 @@
Yahoo/Search.pm
Yahoo/Search/Request.pm
Yahoo/Search/Response.pm
Yahoo/Search/Result.pm
Yahoo/Search/XML.pm
Changes
Makefile.PL
MANIFEST
README
test.pl
META.yml
13 changes: 13 additions & 0 deletions META.yml
@@ -0,0 +1,13 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Yahoo-Search
version: 1.0.0
version_from: Yahoo/Search.pm
installdirs: site
requires:
HTTP::Request: 0
LWP::UserAgent: 0
URI: 0

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.17
16 changes: 16 additions & 0 deletions Makefile.PL
@@ -0,0 +1,16 @@
#!/usr/local/bin/perl -w
use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Yahoo::Search',
ABSTRACT_FROM => 'Yahoo/Search.pm',
VERSION_FROM => 'Yahoo/Search.pm',
PREREQ_PM => {
'LWP::UserAgent' => 0,
'HTTP::Request' => 0,
'URI' => 0,
},
AUTHOR => 'Jeffrey Friedl <jfriedl@yahoo.com>',
);
17 changes: 17 additions & 0 deletions README
@@ -0,0 +1,17 @@
This is the Perl interface to Yahoo! Search's web services.

This package provides a simple but complete programmatic interface to
Yahoo's document search, image search, video search, news search, and
"Local" search, as well as its "related terms" and "did you misspell?"
features.

It uses their XML web services behind the scenes (no screen scraping), so
is fast and consistent.

For more info about the underlying service this package uses, see
http://developer.yahoo.net/


Written by Jeffrey Friedl <jfriedl@yahoo.com>
The entire work Copyright (C) 2005 Yahoo! Inc.

0 comments on commit a3413fe

Please sign in to comment.