view yahoo profiles
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2209
WWW::Yahoo::Movies 0.02
WWW::Yahoo::Movies is a Perl extension to get Yahoo! Movies information. more>>
WWW::Yahoo::Movies is a Perl extension to get Yahoo! Movies information.
SYNOPSIS
use WWW::Yahoo::Movies;
my $movie = new WWW::Yahoo::Movies();
print "TITLE: ".$movie->title." - ".$movie->year."n";
WWW::Yahoo::Movies is Perl interface to the Yahoo! Movies (http://movies.yahoo.com/). Sometimes IMDB doesnt have full information about movie (plot summary, cover etc). In that case its good idea to have another place to get movie info.
Also, there are many Perl extensions for Yahoo! in the CPAN. Hope WWW::Yahoo::Movies will be useful as well!
<<lessSYNOPSIS
use WWW::Yahoo::Movies;
my $movie = new WWW::Yahoo::Movies();
print "TITLE: ".$movie->title." - ".$movie->year."n";
WWW::Yahoo::Movies is Perl interface to the Yahoo! Movies (http://movies.yahoo.com/). Sometimes IMDB doesnt have full information about movie (plot summary, cover etc). In that case its good idea to have another place to get movie info.
Also, there are many Perl extensions for Yahoo! in the CPAN. Hope WWW::Yahoo::Movies will be useful as well!
Download (0.013MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1054 downloads
Yahoo Group Archiver 1.8
Yahoo! Group Archiver is a command line utility to interact with Yahoo! Groups. more>>
Yahoo Group Archiver project is a collection of scripts to interact with Yahoo Groups and download various sections of each group to your local workspace.
Currently the following scripts are being actively supported:
- yahoogroup-messages
- yahoogroup-files
- yahoogroup-photos
- yahoogroup-members
Main features:
yahoogroup-messages
- Downloads all the messages from a group in the order in which they were received.
- Note: Yahoo has user based and group based limits on the number of messages you can download
yahoogroup-files
- Downloads all the content from the Files section in a group maintaining the heirarchy as present on the website
- Note: Yahoo has user based and group based limits on the number of files you can download
yahoogroup-photos
- Downloads all the content from the Photos section in a group maintaining the heirarchy as present on the website
- Note: Yahoo has user based and group based limits on the number of images you can download
yahoogroup-members
- Extract the members list and output it as a tab separated data.
- Note: MS Excel users may read this data by redirecting it to a file with a extension .xls
Enhancements:
- Yahoo! has made HTTPS-based login mandatory, and the script has been updated with the new Yahoo! Group HTML layout.
<<lessCurrently the following scripts are being actively supported:
- yahoogroup-messages
- yahoogroup-files
- yahoogroup-photos
- yahoogroup-members
Main features:
yahoogroup-messages
- Downloads all the messages from a group in the order in which they were received.
- Note: Yahoo has user based and group based limits on the number of messages you can download
yahoogroup-files
- Downloads all the content from the Files section in a group maintaining the heirarchy as present on the website
- Note: Yahoo has user based and group based limits on the number of files you can download
yahoogroup-photos
- Downloads all the content from the Photos section in a group maintaining the heirarchy as present on the website
- Note: Yahoo has user based and group based limits on the number of images you can download
yahoogroup-members
- Extract the members list and output it as a tab separated data.
- Note: MS Excel users may read this data by redirecting it to a file with a extension .xls
Enhancements:
- Yahoo! has made HTTPS-based login mandatory, and the script has been updated with the new Yahoo! Group HTML layout.
Download (0.012MB)
Added: 2007-02-01 License: GPL (GNU General Public License) Price:
1000 downloads
WWW::Yahoo::Groups::Utils 1.89
WWW::Yahoo::Groups::Utils is a Perl module with Sundry utility routines for WYG. more>>
WWW::Yahoo::Groups::Utils is a Perl module with Sundry utility routines for WYG.
This module provides miscellaneous routines to make WYG work nicely.
EXPORTS
One: get_unmangling_table
FUNCTIONS
get_unmangling_table
Returns a reference to an array comprising the address decoding table.
<<lessThis module provides miscellaneous routines to make WYG work nicely.
EXPORTS
One: get_unmangling_table
FUNCTIONS
get_unmangling_table
Returns a reference to an array comprising the address decoding table.
Download (0.065MB)
Added: 2006-12-13 License: Perl Artistic License Price:
1045 downloads
WWW::Yahoo::Groups 1.91
WWW::Yahoo::Groups is an automated access to Yahoo! Groups archives. more>>
WWW::Yahoo::Groups is an automated access to Yahoo! Groups archives.
SYNOPSIS
my $y = WWW::Yahoo::Groups->new();
$y->login( $user => $pass );
$y->list( Jade_Pagoda );
my $email = $y->fetch_message( 2345 );
# Error catching
my $email = eval { $y->fetch_message( 93848 ) };
if ( $@ and ref $@ and $@->isa(X::WWW::Yahoo::Groups) )
{
warn "Problem: ".$@->error;
}
WWW::Yahoo::Groups retrieves messages from the archive of Yahoo Groups. It provides a simple OO interface to logging in and retrieving said messages which you may then do with as you will.
Things it does
Handles access to restricted archives. It lets you login.
Handles the intermittent advertisements. It notes that it got one and progresses straight to the message.
Handle adult confirmation requests. It just goes straight on.
Handles attachments. We get the source which happens to be the raw stuff.
Sanity checking. Could be improved, but it will generally barf if it doesnt understand something.
Header restoration. Ive found that some groups archives have unusually corrupted headers. Evidently it would be beneficial to restore these headers. As far as I can tell, it comes from not being a moderator on the lists in question.
USAGE
Try to be a well behaved bot and sleep() for a few seconds (at least) after doing things. Its considered polite. Theres an autosleep method that should be useful for this. Recently, this has been set to a default of 1 second. Feel free to tweak if necessary.
If youre used to seeing munged email addresses when you view the message archive (i.e. youre not a moderator or owner of the group) then youll be pleased to know that WWW::Yahoo::Groups can demunge those email addresses.
All exceptions are subclasses of X::WWW::Yahoo::Groups, itself a subclass of Exception::Class. See WWW::Yahoo::Groups::Errors for details.
<<lessSYNOPSIS
my $y = WWW::Yahoo::Groups->new();
$y->login( $user => $pass );
$y->list( Jade_Pagoda );
my $email = $y->fetch_message( 2345 );
# Error catching
my $email = eval { $y->fetch_message( 93848 ) };
if ( $@ and ref $@ and $@->isa(X::WWW::Yahoo::Groups) )
{
warn "Problem: ".$@->error;
}
WWW::Yahoo::Groups retrieves messages from the archive of Yahoo Groups. It provides a simple OO interface to logging in and retrieving said messages which you may then do with as you will.
Things it does
Handles access to restricted archives. It lets you login.
Handles the intermittent advertisements. It notes that it got one and progresses straight to the message.
Handle adult confirmation requests. It just goes straight on.
Handles attachments. We get the source which happens to be the raw stuff.
Sanity checking. Could be improved, but it will generally barf if it doesnt understand something.
Header restoration. Ive found that some groups archives have unusually corrupted headers. Evidently it would be beneficial to restore these headers. As far as I can tell, it comes from not being a moderator on the lists in question.
USAGE
Try to be a well behaved bot and sleep() for a few seconds (at least) after doing things. Its considered polite. Theres an autosleep method that should be useful for this. Recently, this has been set to a default of 1 second. Feel free to tweak if necessary.
If youre used to seeing munged email addresses when you view the message archive (i.e. youre not a moderator or owner of the group) then youll be pleased to know that WWW::Yahoo::Groups can demunge those email addresses.
All exceptions are subclasses of X::WWW::Yahoo::Groups, itself a subclass of Exception::Class. See WWW::Yahoo::Groups::Errors for details.
Download (0.033MB)
Added: 2006-06-30 License: Perl Artistic License Price:
1214 downloads
Sethi Yahoo News Grabber 1.0
Sethi Yahoo News Grabber is a small script used for fetching news from Yahoo. more>>
Sethi Yahoo News Grabber is a small script used for fetching news from Yahoo.
Quick and dirty routine to get Yahoo news
Should save result to a text file and then SSI the sucker where you want
<<lessQuick and dirty routine to get Yahoo news
Should save result to a text file and then SSI the sucker where you want
Download (MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
946 downloads
Yahoo Messenger 1.0.4
Yahoo! Messenger for UNIX is an instant messenger. more>>
Yahoo! Messenger for Unix sends instant messages to your Windows and Unix friends!
Enhancements:
- Improved Emoticons - Improved Message Archive - Improved sound on RedHat kernels - Yahoo! Address Book integration - File transfer with Windows clients -
<<lessEnhancements:
- Improved Emoticons - Improved Message Archive - Improved sound on RedHat kernels - Yahoo! Address Book integration - File transfer with Windows clients -
Download (0.91MB)
Added: 2005-06-15 License: LGPL (GNU Lesser General Public License) Price:
1171 downloads
Yahoo::Marketing::Role 0.08
Yahoo::Marketing::Role is an object to represent a user role for an account, e.g. AccountAdministrator or CampaignManager. more>>
Yahoo::Marketing::Role is an object to represent a user role for an account, for example, AccountAdministrator or CampaignManager.
Roles determine the capabilities that a user has, which in turn determine the operations a user can execute within the system. The association between a User, a Role, and an Account is an Authorization.
SYNOPSIS
See http://ysm.techportal.searchmarketing.yahoo.com/docs/reference/dataObjects.asp for documentation of the various data objects.
new
Creates a new instance
METHODS
get/set methods
get (read only) methods
name
<<lessRoles determine the capabilities that a user has, which in turn determine the operations a user can execute within the system. The association between a User, a Role, and an Account is an Authorization.
SYNOPSIS
See http://ysm.techportal.searchmarketing.yahoo.com/docs/reference/dataObjects.asp for documentation of the various data objects.
new
Creates a new instance
METHODS
get/set methods
get (read only) methods
name
Download (0.066MB)
Added: 2006-12-13 License: Perl Artistic License Price:
1045 downloads
WWW::Yahoo::Links 0.02
WWW:Yahoo:Links 0.02 is yet another excellent utility for webmasters. It actually allows you to track Inbound Links in Yahoo Site Explorer API more>>
WWW:Yahoo:Links 0.02 is yet another excellent utility for webmasters. It actually allows you to track Inbound Links in Yahoo Site Explorer API.
Enhancements: 2008-08-06
- Corrected "Errors" response handling
- Fixed JSON version in requirements
- Verbose testing
Added: 2008-10-20 License: Perl Artistic License Price: FREE
14 downloads
Kwiki::Yahoo 0.04
Kwiki::Yahoo is a Wafl Phrase for including RSS feeds in a Kwiki Page. more>>
Kwiki::Yahoo is a Wafl Phrase for including RSS feeds in a Kwiki Page.
{yahoo-doc < query > |args}
Kwiki::Yahoo uses the Yahoo::Search module to use the Yahoo API for web, video, image, news, local, spelling, and related searches.
This is a simple proof of concept that probably has many roads for improvement. A lot of flexibility would be gained by accessing the Results directly rather than using the generated HTML.
DEMONSTRATION
Theres a demonstration, with some explanatory text at http://www.burningchrome.com/wiki/index.cgi?KwikiYahoo
<<less{yahoo-doc < query > |args}
Kwiki::Yahoo uses the Yahoo::Search module to use the Yahoo API for web, video, image, news, local, spelling, and related searches.
This is a simple proof of concept that probably has many roads for improvement. A lot of flexibility would be gained by accessing the Results directly rather than using the generated HTML.
DEMONSTRATION
Theres a demonstration, with some explanatory text at http://www.burningchrome.com/wiki/index.cgi?KwikiYahoo
Download (0.009MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1051 downloads
Mail::Client::Yahoo 1.0
Mail::Client::Yahoo is a Perl module with programmatically access Yahoos web-based email. more>>
Mail::Client::Yahoo is a Perl module with programmatically access Yahoos web-based email.
SYNOPSIS
use Mail::Client::Yahoo;
$y = Mail::Client::Yahoo->login(
username => bob,
password => secret,
secure => 1, # for the paranoid and patient
);
$y->select_folder(Inbox);
$m = $y->message(0); # is equivalent to...
@ids = $y->message_list();
$y->message($id[0]);
$y->delete_message(0);
$y->logout();
This module allows you to access your web-based Yahoo Mail account programatically. Similar in function to Mail::Webmail::Yahoo, this module is more geared towards manipulation of individual messages, rather than simple bulk download. This module is also probably more reliable than Mail::Webmail::Yahoo, as well.
<<lessSYNOPSIS
use Mail::Client::Yahoo;
$y = Mail::Client::Yahoo->login(
username => bob,
password => secret,
secure => 1, # for the paranoid and patient
);
$y->select_folder(Inbox);
$m = $y->message(0); # is equivalent to...
@ids = $y->message_list();
$y->message($id[0]);
$y->delete_message(0);
$y->logout();
This module allows you to access your web-based Yahoo Mail account programatically. Similar in function to Mail::Webmail::Yahoo, this module is more geared towards manipulation of individual messages, rather than simple bulk download. This module is also probably more reliable than Mail::Webmail::Yahoo, as well.
Download (0.006MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1048 downloads
WWW::Yahoo::DrivingDirections 0.08
WWW::Yahoo::DrivingDirections is a Perl module to generate driving directions for multiple-stop trips in the United States. more>>
WWW::Yahoo::DrivingDirections is a Perl module to generate driving directions for multiple-stop trips in the United States, courtesy of maps.yahoo.com.
ABSTRACT
Object-oriented interface to the maps.yahoo.com driving directions.
SYNOPSIS
use WWW::Yahoo::DrivingDirections;
my $yd = WWW::Yahoo::DrivingDirections->new ();
$yd->add_stops ( @ARGV );
$yd->get_maps();
or
use WWW::Yahoo::DrivingDirections;
my $yd = WWW::Yahoo::DrivingDirections->new (
{
roundtrip => 1,
return_html => 1,
save_html => 0,
save_format => output_%d.html,
},
atlanta, ga,
123 fake st, boston, ma,
0 church st, cambridge, ma,
LAX,
);
$yd->add_stops ( paris, tx, 1 main st, springfield, IL );
$yd->roundtrip ( 1 );
$html_array_ref = $yd->get_maps();
WWW::Yahoo::DrivingDirections provides a simple means of generating driving directions for trips with more stops than a start and a finish. Driving from LAX airport to 1 Main St, Portland, OR to Denver, CO? Just do this:
use WWW::Yahoo::DrivingDirections;
my $yd = WWW::Yahoo::DrivingDirections->new (
LAX, 1 Main St, Portland, OR, Denver, CO
);
$yd->get_maps();
and the directions will be saved in trip_leg_1.html and trip_leg_2.html.
<<lessABSTRACT
Object-oriented interface to the maps.yahoo.com driving directions.
SYNOPSIS
use WWW::Yahoo::DrivingDirections;
my $yd = WWW::Yahoo::DrivingDirections->new ();
$yd->add_stops ( @ARGV );
$yd->get_maps();
or
use WWW::Yahoo::DrivingDirections;
my $yd = WWW::Yahoo::DrivingDirections->new (
{
roundtrip => 1,
return_html => 1,
save_html => 0,
save_format => output_%d.html,
},
atlanta, ga,
123 fake st, boston, ma,
0 church st, cambridge, ma,
LAX,
);
$yd->add_stops ( paris, tx, 1 main st, springfield, IL );
$yd->roundtrip ( 1 );
$html_array_ref = $yd->get_maps();
WWW::Yahoo::DrivingDirections provides a simple means of generating driving directions for trips with more stops than a start and a finish. Driving from LAX airport to 1 Main St, Portland, OR to Denver, CO? Just do this:
use WWW::Yahoo::DrivingDirections;
my $yd = WWW::Yahoo::DrivingDirections->new (
LAX, 1 Main St, Portland, OR, Denver, CO
);
$yd->get_maps();
and the directions will be saved in trip_leg_1.html and trip_leg_2.html.
Download (0.020MB)
Added: 2006-12-13 License: Perl Artistic License Price:
1046 downloads
Finance::Quote::Yahoo::Brasil 1.12
Finance::Quote::Yahoo::Brasil is a Perl module to fetch Brasiln stock quotes via Yahoo. more>>
Finance::Quote::Yahoo::Brasil is a Perl module to fetch Brasilian stock quotes via Yahoo.
SYNOPSIS
use Finance::Quote;
my $q = Finance::Quote->new;
my %info = $q->fetch("yahoo_brasil","BHP"); # Use this module only.
my %info = $q->fetch("brasil","BHP"); # Failover with other methods.
This module allows information to be fetched from Yahoo abouts stocks traded on the Brasilian Stock Exchange.
This module is loaded by default on a Finance::Quote object, although it can be explicitly loaded by passing the argument "Yahoo::Brasil" to Finance::Quote->new().
This module provides both the "brasil" and "yahoo_brasil" fetch methods. You should use the "brasil" method if you wish to allow failovers to other sources, and "yahoo_brasil" if you only want to obtain quotes from this module.
Information obtained via this module is governed by Yahoos terms and conditions, see http://br.finance.yahoo.com/ for more details.
LABELS RETURNED
This module returns all the standard labels (where available) provided by Yahoo, as well as the currency label. See Finance::Quote::Yahoo::Base for more information.
<<lessSYNOPSIS
use Finance::Quote;
my $q = Finance::Quote->new;
my %info = $q->fetch("yahoo_brasil","BHP"); # Use this module only.
my %info = $q->fetch("brasil","BHP"); # Failover with other methods.
This module allows information to be fetched from Yahoo abouts stocks traded on the Brasilian Stock Exchange.
This module is loaded by default on a Finance::Quote object, although it can be explicitly loaded by passing the argument "Yahoo::Brasil" to Finance::Quote->new().
This module provides both the "brasil" and "yahoo_brasil" fetch methods. You should use the "brasil" method if you wish to allow failovers to other sources, and "yahoo_brasil" if you only want to obtain quotes from this module.
Information obtained via this module is governed by Yahoos terms and conditions, see http://br.finance.yahoo.com/ for more details.
LABELS RETURNED
This module returns all the standard labels (where available) provided by Yahoo, as well as the currency label. See Finance::Quote::Yahoo::Base for more information.
Download (0.090MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1048 downloads
Finance::Quote::Yahoo::Europe 1.12
Finance::Quote::Yahoo::Europe is a Perl module that fetch quotes from Yahoo Europe. more>>
Finance::Quote::Yahoo::Europe is a Perl module that fetch quotes from Yahoo Europe.
SYNOPSIS
use Finance::Quote;
$q = Finance::Quote->new;
%info = $q->fetch("europe","12150.PA"); # Failover to other methods ok.
%info = $q->fetch("yahoo_europe","12150.PA"); # Use this module only.
This module fetches information from Yahoo Europe. Symbols should be provided in the format "SYMBOL.EXCHANGE", where the exchange code is one of the following:
PA - Paris
BC - Barcelona
BE - Berlin
BI - Bilbao
BR - Breme
CO - Copenhagen
D - Dusseldorf
F - Frankfurt
H - Hamburg
HA - Hanover
L - London
MA - Madrid
MC - Madrid (M.C.)
MI - Milan
MU - Munich
O - Oslo
ST - Stockholm
SG - Stuttgart
VA - Valence
VI - Vienna
DE - Xetra (was FX)
This module provides both the "europe" and "yahoo_europe" methods. The "europe" method should be used if failover methods are desirable. The "yahoo_europe" method should be used you desire to only fetch information from Yahoo Europe.
This module is loaded by default by Finance::Quote, but can be loaded explicitly by specifying the parameter "Yahoo::Europe" to Finance::Quote->new().
Information obtained by this module may be covered by Yahoos terms and conditions. See http://finance.uk.yahoo.com/ for more details.
<<lessSYNOPSIS
use Finance::Quote;
$q = Finance::Quote->new;
%info = $q->fetch("europe","12150.PA"); # Failover to other methods ok.
%info = $q->fetch("yahoo_europe","12150.PA"); # Use this module only.
This module fetches information from Yahoo Europe. Symbols should be provided in the format "SYMBOL.EXCHANGE", where the exchange code is one of the following:
PA - Paris
BC - Barcelona
BE - Berlin
BI - Bilbao
BR - Breme
CO - Copenhagen
D - Dusseldorf
F - Frankfurt
H - Hamburg
HA - Hanover
L - London
MA - Madrid
MC - Madrid (M.C.)
MI - Milan
MU - Munich
O - Oslo
ST - Stockholm
SG - Stuttgart
VA - Valence
VI - Vienna
DE - Xetra (was FX)
This module provides both the "europe" and "yahoo_europe" methods. The "europe" method should be used if failover methods are desirable. The "yahoo_europe" method should be used you desire to only fetch information from Yahoo Europe.
This module is loaded by default by Finance::Quote, but can be loaded explicitly by specifying the parameter "Yahoo::Europe" to Finance::Quote->new().
Information obtained by this module may be covered by Yahoos terms and conditions. See http://finance.uk.yahoo.com/ for more details.
Download (0.090MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1053 downloads
Lingua::EN::Keywords::Yahoo 0.5
Lingua::EN::Keywords::Yahoo it can automatically extracts keywords from text using the Yahoo! API. more>>
Lingua::EN::Keywords::Yahoo it can automatically extracts keywords from text using the Yahoo! API.
SYNOPSIS
use Lingua::EN::Keywords::Yahoo qw(keywords);
my @keywords = keywords($text);
or
my @keywords = keywords($text, $query);
Where $query is an optional term to help with the extraction process.
This uses the Yahoo! keywords API to extract keywords from text.
To quote the Yahoo! page: "The Term Extraction Web Service provides a list of significant words or phrases extracted from a larger content."
<<lessSYNOPSIS
use Lingua::EN::Keywords::Yahoo qw(keywords);
my @keywords = keywords($text);
or
my @keywords = keywords($text, $query);
Where $query is an optional term to help with the extraction process.
This uses the Yahoo! keywords API to extract keywords from text.
To quote the Yahoo! page: "The Term Extraction Web Service provides a list of significant words or phrases extracted from a larger content."
Download (0.003MB)
Added: 2006-12-07 License: Perl Artistic License Price:
1051 downloads
WWW::Yahoo::Groups::Errors 1.91
WWW::Yahoo::Groups::Errors is a Perl module with exception classes for WYG. more>>
WWW::Yahoo::Groups::Errors is a Perl module with exception classes for WYG.
This class provides assorted exceptions for the use of the other modules.
INHERITANCE
All errors are subclasses of X::WWW::Yahoo::Groups which is a subclass of Exception::Class::Bass. See Exception::Classs documentation for methods available on the errors.
EXTRA METHODS
Beyond what Exception::Class provides, there are two extra methods.
fatal
fatal will return true if the error caught should be one that terminates the process.
AVAILABLE CLASSES
These should be obvious from their name. If not, please consult the source or use the description method.
X::WWW::Yahoo::Groups::BadParam
X::WWW::Yahoo::Groups::BadLogin
X::WWW::Yahoo::Groups::NoHere
X::WWW::Yahoo::Groups::AlreadyLoggedIn
X::WWW::Yahoo::Groups::NotLoggedIn
X::WWW::Yahoo::Groups::NoListSet
X::WWW::Yahoo::Groups::UnexpectedPage
X::WWW::Yahoo::Groups::NotThere
X::WWW::Yahoo::Groups::BadFetch
X::WWW::Yahoo::Groups::BadProtected
USE OF THIS MODULE
Due to the nature of how Params::Validate works, we store common options for it in this class (as they mostly relate to error handling). Thus, you should import this module with the following idiom:
require WWW::Yahoo::Groups::Errors;
Params::Validate::validation_options(
WWW::Yahoo::Groups::Errors->import()
);
<<lessThis class provides assorted exceptions for the use of the other modules.
INHERITANCE
All errors are subclasses of X::WWW::Yahoo::Groups which is a subclass of Exception::Class::Bass. See Exception::Classs documentation for methods available on the errors.
EXTRA METHODS
Beyond what Exception::Class provides, there are two extra methods.
fatal
fatal will return true if the error caught should be one that terminates the process.
AVAILABLE CLASSES
These should be obvious from their name. If not, please consult the source or use the description method.
X::WWW::Yahoo::Groups::BadParam
X::WWW::Yahoo::Groups::BadLogin
X::WWW::Yahoo::Groups::NoHere
X::WWW::Yahoo::Groups::AlreadyLoggedIn
X::WWW::Yahoo::Groups::NotLoggedIn
X::WWW::Yahoo::Groups::NoListSet
X::WWW::Yahoo::Groups::UnexpectedPage
X::WWW::Yahoo::Groups::NotThere
X::WWW::Yahoo::Groups::BadFetch
X::WWW::Yahoo::Groups::BadProtected
USE OF THIS MODULE
Due to the nature of how Params::Validate works, we store common options for it in this class (as they mostly relate to error handling). Thus, you should import this module with the following idiom:
require WWW::Yahoo::Groups::Errors;
Params::Validate::validation_options(
WWW::Yahoo::Groups::Errors->import()
);
Download (0.033MB)
Added: 2006-12-13 License: Perl Artistic License Price:
1045 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 view yahoo profiles 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