Main > Free Download Search >

Free yahoo software for linux

yahoo

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 303
Kwiki::Yahoo 0.04

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
Download (0.009MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1051 downloads
Yahoo::BBAuth 0.01

Yahoo::BBAuth 0.01


Yahoo::BBAuth is a Perl interface to the Yahoo! Browser-Based Authentication. more>>
Yahoo::BBAuth is a Perl interface to the Yahoo! Browser-Based Authentication.

SYNOPSIS

my $bbauth = Yahoo::BBAuth->new(
appid => $appid,
secret => $secret,
);
# Create an authentication link
printf, $bbauth->auth_url;
# After the user authenticates successfully, Yahoo returns the user to the page you
# dictated when you signed up. To verify whether authentication succeeded, you need to
# validate the signature:
if ($bbauth->validate_sig()) {
print Authentication Successful;
} else {
print Authentication Failed. Error is: .$bbauth->sig_validation_error;
}
my $url = http://photos.yahooapis.com/V1.0/listAlbums;
my $xml = $bbauth->auth_ws_get_call($url);
unless ($xml) {
print WS call setup Failed. Error is: . $bbauth->access_credentials_error;
} else {
print Look at response for other errors or success: .$xml;
}

This module priovides you an Object Oriented interface for Yahoo! Browser-Based Authentication.

This module is ported from official PHP class library(http://developer.yahoo.com/auth/quickstart/bbauth_quickstart.zip).

<<less
Download (0.004MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1053 downloads
Yahoo Messenger 1.0.4

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 -
<<less
Download (0.91MB)
Added: 2005-06-15 License: LGPL (GNU Lesser General Public License) Price:
1171 downloads
Yahoo::Search 1.7.10

Yahoo::Search 1.7.10


Yahoo::Search is a Perl interface to the Yahoo! Search public API. more>>
Yahoo::Search is a Perl interface to the Yahoo! Search public API.

The following search spaces are supported:

Doc
Common web search for documents (html, pdf, doc, ...), including Y!Q contextual search.

Image
Image search (jpeg, png, gif, ...)

Video
Video file search (avi, mpeg, realmedia, ...)

News
News article search

Local
Yahoo! Local area (ZIP-code-based Yellow-Page like search)

Terms
A pseudo-search to report the important search terms from the provided content or content+query.

Spell
A pseudo-search to fetch a "did you mean?" spelling suggestion for a search term.

Related
A pseudo-search to fetch "also try" related-searches for a search term.

(Note: what this Perl API calls "Doc" Search is what Yahoo! calls "Web" Search. But gee, arent all web searches "Web" search, including Image/News/Video/etc?)

Yahoo!s raw API, which this package uses, is described at:

http://developer.yahoo.net/

<<less
Download (0.035MB)
Added: 2006-09-13 License: Perl Artistic License Price:
1136 downloads
Yahoo::Marketing 0.08

Yahoo::Marketing 0.08


Yahoo::Marketing is an interface for Yahoo! Search Marketings Web Services. more>>
Yahoo::Marketing is an interface for Yahoo! Search Marketings Web Services.

SYNOPSIS

This collection of modules makes interacting with Yahoo! Search Marketings Web Services as easy as possible.

Sample Usage:

use Yahoo::Marketing::Keyword;
use Yahoo::Marketing::KeywordService;

my $service = Yahoo::Marketing::KeywordService->new;

# setup your credentials

$service->username( your username )
->password( your password )
->license( your license )
->master_account( your master account ID )
->account( your account ID )
->endpoint( https://sandbox.marketing.ews.yahooapis.com/services );

# OR

$service->parse_config( section => sandbox );


# create a keyword object, and add it

my $keyword = Yahoo::Marketing::Keyword->new
->adGroupID( $ad_group_id )
->text( some text )
->alternateText( some alternate text )
->sponsoredSearchMaxBid( 1.00 )
->status( On )
->advancedMatchON( true )
->url( http://www.someurl.com )
;

my $keyword_response = $service->addKeyword( keyword => $keyword );

# added keyword will have ID set

my $added_keyword = $keyword_response->keyword;
...

Yahoos Marketing API allows you to manage your search marketing account in an automated fashion rather than manually. The API is exposed as a standard SOAP service that you can make calls to. This set of modules is designed to make using the SOAP service easier than using SOAP::Lite (for example) directly. There are 2 main types of modules available.

The service modules (CampaignService, AdGroupService, BidInformationService, etc) are used to make the actual calls to each of the SOAP services in the API. The other type of module provided are the complex type modules, each of which represents one of the complex types defined in one of the WSDLs of the SOAP service. Examples include Campaign, AdGroup, Ad, PendingAd, CreditCardInfo, etc.

Yahoo::Marketing will call LocationService for you, and cache the results. This should be completely transparent. See the documtation for cache, cache_expire_time, purge_cache and clear_cache in Yahoo::Marketing::Service for more details.

<<less
Download (0.066MB)
Added: 2006-12-07 License: Perl Artistic License Price:
1051 downloads
WWW::Yahoo::Links 0.02

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
<<less
Added: 2008-10-20 License: Perl Artistic License Price: FREE
14 downloads
Geo::Coder::Yahoo 0.02

Geo::Coder::Yahoo 0.02


Geo::Coder::Yahoo is a Perl module with geocode addresses with the Yahoo! API. more>>
Geo::Coder::Yahoo is a Perl module with geocode addresses with the Yahoo! API.

SYNOPSIS

Provides a thin Perl interface to the Yahoo! Geocoding API.
use Geo::Coder::Yahoo;

my $geocoder = Geo::Coder::Yahoo->new(appid => my_app );
my $location = $geocoder->geocode( location => Hollywood and Highland, Los Angeles, CA );

<<less
Download (0.005MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1052 downloads
Yahoo Mail Sucker pr79

Yahoo Mail Sucker pr79


Yahoo Mail Sucker is a Perl script that allows you to fetch Yahoo Mail messages. more>>
As you probably know, Yahoo Mail does not provide free POP access to its users any more. You can still use your YM account for free, but you have to use a Yahoo Mail web site to access your account.
This is not very convenient as you always have to be online, you cannot use your favourite e-mail client to read your messages, and so on. You can easily immagine the disadvantages of having to manage all your corespondence via web.
When Yahoo disabled its free POP access, the first thing that came to my mind was to change my e-mail account. But then I realized, there are far too many people used to my current Yahoo Mail address, that I am used to my YM address very much too and I thought - if Yahoo closes a free service, the other services will follow sooner or later. So changing an e-mail service/account wasnt really solution.
That is when I have decided to write YoSucker as a simple portable perl application, that would simulate a user actions to retrieve my mail to my local inbox. Yahoo Mail Sucker simply connects to the Yahoo Mail web site, parses the HTML code and fetches new messages.
With time I have added lots of other features and functionality (like support for multiple accounts, support for procmail, support for local Yahoo Mail sites, for proxy connection and much more) but the basic idea still stay the same...
Main features:
- secure SSL login
- support for multiple accounts
- encrypted passwords for enhanced security
- transaction safe writes
- support for various folders (including BULK mail)
- support for multiuser environment
- support for multiple mailboxes in one config file
- support for procmail (output to a pipe)
- support for localized Yahoo Mail sites
- support for proxy
- support for basic proxy authorization
- support of command line parameters
- powerful digest feature for listing mailbox content
- handles virtually unlimited number of messages
- LeaveOnServer, EmptyTrash and OnlyNew features
- restore message unread flag feature
- powerful CLEAN option
- quota storage warning system
- session Respawn feature
Enhancements:
- This things been around too long be be a prototype any longer.
- Filtered the annoying "Yahoo! Domain Keys" message in From header
<<less
Download (0.043MB)
Added: 2007-06-14 License: GPL (GNU General Public License) Price:
864 downloads
WWW::Yahoo::Movies 0.02

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!

<<less
Download (0.013MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1054 downloads
WWW::Yahoo::Groups 1.91

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.

<<less
Download (0.033MB)
Added: 2006-06-30 License: Perl Artistic License Price:
1214 downloads
Mail::Client::Yahoo 1.0

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.

<<less
Download (0.006MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1048 downloads
WWW::Search::Yahoo 2.405

WWW::Search::Yahoo 2.405


WWW::Search::Yahoo is a Perl backend for searching www.yahoo.com more>>
WWW::Search::Yahoo is a Perl backend for searching www.yahoo.com

SYNOPSIS

use WWW::Search;
my $oSearch = new WWW::Search(Yahoo);
my $sQuery = WWW::Search::escape_query("sushi restaurant Columbus Ohio");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";

This class is a Yahoo specialization of WWW::Search. It handles making and interpreting Yahoo searches http://www.yahoo.com.

This class exports no public interface; all interaction should be done through WWW::Search objects.

<<less
Download (0.027MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1049 downloads
Yahoo Group Archiver 1.8

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.
<<less
Download (0.012MB)
Added: 2007-02-01 License: GPL (GNU General Public License) Price:
1000 downloads
Yahoo::Marketing::Ad 0.08

Yahoo::Marketing::Ad 0.08


Yahoo::Marketing::Ad is an object to represent a Yahoo Marketing Ad. more>>
Yahoo::Marketing::Ad is an object to represent a Yahoo Marketing Ad.

SYNOPSIS

See http://ysm.techportal.searchmarketing.yahoo.com/docs/reference/dataObjects.asp for documentation of the various data objects.

METHODS

new

Creates a new instance

get/set methods

ID
accountID
adGroupID
contentMatchQualityScore
description
displayUrl
editorialStatus
name
shortDescription
sponsoredSearchQualityScore
status
title
update
url

get (read only) methods

createTimestamp
deleteTimestamp
lastUpdateTimestamp

<<less
Download (0.066MB)
Added: 2006-12-08 License: Perl Artistic License Price:
1051 downloads
Text::Emoticon::Yahoo 0.02

Text::Emoticon::Yahoo 0.02


Text::Emoticon::Yahoo is a emoticon filter of Yahoo! Messenger. more>>
Text::Emoticon::Yahoo is a emoticon filter of Yahoo! Messenger.

SYNOPSIS

use Text::Emoticon::Yahoo;

my $emoticon = Text::Emoticon::Yahoo->new(
imgbase => "http://example.com/emo",
);

my $text = "Yet Another Perl Hacker ;)";
print $emoticon->filter($text);

# it prints
# Yet Another Perl Hacker

Text::Emoticon::Yahoo is a text filter that replaces text emoticons like ":)", ";P", etc. to the icons of Yahoo! Messenger, detailed in http://messenger.yahoo.com/emoticons.php

<<less
Download (0.003MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1069 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5