Skip to content

kevindhawkins/yqlcpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

yqlcpp

yqlcpp is a lightweight C++ API for performing Yahoo Query Language queries.

At this time it is intended to be a simple interface with minimal error checking and no concern for thread safety. Built on top of and requires libcurl.

Licensed under the MIT license.

Usage

#include "yqlcpp.hpp"

// query setup, optional parameter to specify JSON/XML defaulting to JSON
yqlcpp::yqlquery query("select * from yahoo.finance.quotes where symbol='AAPL'");

// execute the query
query.execute();

// get the response string
std::string jsonData = query.getResponse();
	
// optional save response data to file	
query.toFile("aaplquote.json");

About

yqlcpp is a lightweight C++ header for applications using the Yahoo Query Language (YQL).

Resources

License

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages