Skip to main content

A query generator for the SQL dialect of the Influx Query Language (InfluxQL)

Project description

https://github.com/daq-tools/pyinfluxql/workflows/Tests/badge.svg https://img.shields.io/pypi/pyversions/pyinfluxql.svg https://img.shields.io/pypi/v/pyinfluxql.svg https://img.shields.io/pypi/dm/pyinfluxql.svg https://img.shields.io/pypi/status/pyinfluxql.svg https://img.shields.io/pypi/l/pyinfluxql.svg

About

A query generator for the SQL dialect of the Influx Query Language (InfluxQL). Like SQLAlchemy but for InfluxDB. Consider this an experimental WIP.

Synopsis

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)

Tests

How to invoke the test suite.

Using Tox

Run InfluxDB within Docker:

docker run -it --rm --publish 8086:8086 influxdb:1.8.3

Run tox:

tox

Using sandbox

Alternatively, setup package in development mode:

python3 -mvenv .venv
source .venv/bin/activate
pip install --editable=.[test]

Run pytest:

pytest tests -vvv

Credits

Thanks a stack to the original author Jeremiah Malina for his excellent work as well as Michael Pérez for adding integration tests, timezone support and for improving the documentation.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyinfluxql-0.1.3.tar.gz (7.9 kB view details)

Uploaded Source

File details

Details for the file pyinfluxql-0.1.3.tar.gz.

File metadata

  • Download URL: pyinfluxql-0.1.3.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pyinfluxql-0.1.3.tar.gz
Algorithm Hash digest
SHA256 09e9a27bc9ddec65bfaaec6ff7b4e12f5819e03ea7d377ef609156213f71d503
MD5 94221989075c0c6cdce3d6bced9a27e2
BLAKE2b-256 a3cc5f4f9e0b101b1931e55841e5116273d5bfc9d4b344d2f192547157c61fcc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page