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 OFFSET #143

Closed josuebrunel closed 8 years ago

josuebrunel commented 8 years ago

offset for local control . The python code below :

data = select('web.search', limit=3, offset=10).where(['query', '=', 'zidane'])

Should give something such as :

SELECT * from web.search WHERE query="zidane" LIMIT 3 OFFSET 10