WebService::YQL - Simple interface for Yahoo Query Language


WebService-YQL documentation  | view source Contained in the WebService-YQL distribution.

Index


NAME

Top

WebService::YQL - Simple interface for Yahoo Query Language

SYNOPSIS

Top

  use WebService::YQL;

  my $yql = WebService::YQL->new;

  my $data = $yql->query("select * from search.web where query = 'YQL'");
  for my $result ( @{ $data->{'query'}{'results'}{'result'} } ) {
      print $result->{'title'}, "\n";
      print $result->{'abstract'}, "\n";
      print '* ', $result->{'url'}, "\n\n";
  }

DESCRIPTION

Top

This is a simple wrapper to the Yahoo Query Language service. Instead of manually sending a GET request to Yahoo and getting XML or JSON you can now use a simple function call and get a deep Perl data structure.

USAGE

Top

  my $data = $yql->query("select * from table");

FUNCTIONS

Top

new

New instance of WebService::YQL. Accepts one argument, 'env', to load more data tables, e.g. WebService::YQL->new(env => 'http://datatables.org/alltables.env');

query

Run an YQL query. Accepts one argument, the query as a string.

useragent

Returns the LWP::UserAgent object used to contact yahoo. You can tweak that object as required, e.g. $yql->useragent->env_proxy in order to use the proxy set in environment.

BUGS

Top

As any software, it has bugs, but I'm hunting them down.

SUPPORT

Top

Check the source code or contact author for support.

AUTHOR

Top

Viorel Stirbu CPAN ID: VIORELS http://stirbu.name

COPYRIGHT

Top

SEE ALSO

Top

http://developer.yahoo.com/yql http://developer.yahoo.com/yql/console


WebService-YQL documentation  | view source Contained in the WebService-YQL distribution.