influxdb-python
influxdb-python copied to clipboard
Python client for InfluxDB
In this page: https://influxdb-python.readthedocs.io/en/latest/api-documentation.html The "timeout" argument of InfluxDBClient are documented as: `number of seconds Requests will wait for your client to establish a connection, defaults to None` But in...
Hi everyone, I'm trying to run a simple SELECT query from my database but it fails with following error message: `influxdb.exceptions.InfluxDBClientError: 403: {"error":"error authorizing query: my_user not authorized to execute...
This is the same issue as #567, I could not re-open that so instead I filed a new one. I have more details and a patch. (The patch is probably...
Add support for using UNIX sockets along with hostname and IP addresses in `InfluxDBClient` and `DataFrameClient`
- **InfluxDB version:1.24.0 - **InfluxDB-python version: 5.3.1 - **Python version: 3.8.5 - **Operating system version: Ubuntu 20.04 sample query client.query(query='SELECT mean( $var ) FROM "TABLE" WHERE time > $peroid GROUP...
- **InfluxDB version:** 1.7.6 - **InfluxDB-python version:** 5.3.1 - **Python version:** 3.8.6 - **Operating system version:** Linux version 5.4.85-1-MANJARO (builduser@LEGION) (gcc version 10.2.0 (GCC)) #1 SMP PREEMPT Mon Dec 21...
- **InfluxDB version:** 1.6.4 - **InfluxDB-python version:** 5.2.0 - **Python version:** e.g. 3.8.5 - **Operating system version:** Ubuntu 20.04 & Debian 10 I am trying to insert a fairly small...
- **InfluxDB version:** e.g. 2.1.1 - **Python version:** e.g. 3.7.4 (output of the `python --version` command) - **Operating system version: windows10** I am now using influxdb 2.1 version, and found...
pypi has a 5.3.1 release, but the github repo lacks the 5.3.1 tag.
I initialized the client: ```python def as_utc_with_z(date): date_str = date.astimezone(tz.UTC).isoformat() return f"{date_str[:-6]}Z" def parse_datetime(dt): d = dateutil.parser.parse(dt) if d.tzinfo is None: d = d.replace(tzinfo=tz.tzlocal()) return d def main(): parser =...