influxdb-python
influxdb-python copied to clipboard
Python client for InfluxDB
- **InfluxDB version: InfluxDB shell version: 1.8.2** - **InfluxDB-python version: 5.3.1** - **Python version: Python 3.8.10** - **Operating system version: Ubuntu 20.04** Write in your influxdb at least 2 datapoint:...
- **InfluxDB version:** e.g. 1.7.7 (output of the `influx version` command) - **InfluxDB-python version:** e.g. 5.2.2 (output of the `python -c "from __future__ import print_function; import influxdb; print(influxdb.__version__)"` command) -...
Hello. I spotted 5.3.1 version on pypi and there's no tag like that here. I'd like to update package on alpine linux repository, but we are using github tarball so...
A DSN like: `influxdb://user:sec#ret@host:port` should be written as `influxdb://user:sec%23ret@host:port` RFC 3986 allows characters like # ? to appear %-quoted in username / password which should be properly unquoted before using...
- **InfluxDB version:** 1.7.8 - **InfluxDB-python version:** 5.2.2 - **Python version:** 3.6.8 - **Operating system version:** Ubuntu 18.04 (EC2) - **Nginx:** nginx/1.16.1 - **Flask:** 1.1.0 `client.write_points(jsonData, time_precision='ms', protocol='json')` I am...
The v1 client libraries for InfluxDB were typically developed and maintained by community members. They have all now been succeeded by v2 client libraries developed and maintained by InfluxData in...
May I ask ,is there some plan to support for async/await in Python3.5+?
- **InfluxDB version:** 2.0 - **InfluxDB-python version:** e.g. 5.3.1 - **Python version:** 3.9 - **Operating system version:** Docker on MacOS When upgrading influxDB from 1.8 to 2.0, and trying to...
I'm using influxdb-python with an InfluxDB instance with a self-signed SSL certificate. I have `ssl=True`, and `ssl_verify=False` is on by default (although I have also tried explicitly setting it): However,...
I'm trying to write a simple dataframe into influx: | Index | Tag 1 | Field 1 | Field 2 | |-------|-------|---------|---------| I have checked various documentation, tried a number...