josuebrunel / myql

mYQL is a Python wrapper of the Yahoo! Query Language a.k.a YQL (Finances, ...)
https://myql.readthedocs.org/en/latest/
MIT License
31 stars 8 forks source link

Add support for REMOTE FILTERS #144

Closed josuebrunel closed 8 years ago

josuebrunel commented 8 years ago

Example or Remote and Local Filters

This code

data = yql.select('geo.counties', remote=(10,20)).where(['place', '=', 'CA'])

Should produce

select * from geo.counties(10,20) where place="CA" 

where the first agrument is the _start_ and the second one is the _count_