.. image:: https://travis-ci.org/jjmalina/pyinfluxql.svg?branch=master :target: https://travis-ci.org/jjmalina/pyinfluxql
A query generator for the InfluxDB SQL query syntax <https://influxdb.com/docs/v0.9/query_language/query_syntax.html/>
_. Like SQLAlchemy but for InfluxDB. Consider this an experimental WIP.
Example
.. code-block:: python
from influxdb import InfluxDBClient
from pyinfluxql import Engine, Query, Mean
client = InfluxDBClient('localhost', 8086, 'root', 'root', 'example')
engine = Engine(client)
query = Query(Mean('value')).from_('cpu_load') \
.where(time__gt=datetime.now() - timedelta(1))
.group_by(time=timedelta(hours=1))
engine.execute(query)
TODO