yqlient
v0.1.0
Published
Simple nodejs connector for Yahoo Query Language (YQL)
Downloads
4
Readme
yqlient
Simple nodejs connector for Yahoo Query Language (YQL)
Installation
npm install yqlient
Usage
Using yqlient is simple; this is how:
var yqlient = require('yqlient');
var yql = yqlient.initYQL();
yql.query('select Symbol, Ask from yahoo.finance.quotes where symbol in ("YHOO","AAPL","GOOG","MSFT")', function(err, data) {
if(err) console.log(err);
else console.log(data);
});
Author
Bachar Wehbi, [email protected]