influxdb-client-python icon indicating copy to clipboard operation
influxdb-client-python copied to clipboard

InfluxDB 2.0 python client

Results 75 influxdb-client-python issues
Sort by recently updated
recently updated
newest added

Closes #490 ## Proposed Changes Fixed creating `Task` with import statement: ```python task_flux = 'import "http"\n\n' \ 'from(bucket: "iot_center")\n' \ ' |> range(start: -30d)\n' \ ' |> filter(fn: (r) =>...

__Steps to reproduce:__ List the minimal actions needed to reproduce the behavior. 1. Calling `InfluxDBClient.TasksApi.create_task()` with an import statement does not work. 2. Similarly, creating a task directly using the...

bug

__Steps to reproduce:__ List the minimal actions needed to reproduce the behavior. 1. We use one connection with InfluxDBClient -> query_api(). 2. Run multiple threads re-using this same connection. 3....

question

is it possible to send multiple queries to InfluxDB in a single API call ? see: Multiple Queries in https://docs.influxdata.com/influxdb/v1.7/guides/querying_data/

question

__Steps to reproduce:__ Run the following code: ```python import time import multiprocessing from influxdb_client import InfluxDBClient, Point, WritePrecision from influxdb_client.client.write_api import WriteType, WriteOptions from influxdb_client.client.util.multiprocessing_helper import MultiprocessingWriter token = "TOKEN...

bug

__Proposal:__ Warn when a measurement name starts with a #. __Current behavior:__ When a measurement starts with #, it is silently ignored. When such a name is written in the...

enhancement

Related to https://app.circleci.com/pipelines/github/influxdata/influxdb-client-python/2046/workflows/8fdf747c-83b7-4fed-a1e7-647c216f211f ## Proposed Changes Use correct `start` bound for `PeriodIndex` to be compatible with Pandas 1.5. - https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases ## Checklist - [x] Rebased/mergeable - [x] `pytest tests` completes...

In Python 2.x client library: Automated split of large number of points into smaller chunks where minimal chunk size is user-defined batch size, for synchronous WriteAPI.

Closes #632 ## Proposed Changes Add support from Python 3.12. ## Checklist - [x] CHANGELOG.md updated - [x] Rebased/mergeable - [x] A test has been added if appropriate - [x]...

Closes # ## Proposed Changes Officially support Python 3.12 ## Checklist - [x] CHANGELOG.md updated - [x] Rebased/mergeable - [x] A test has been added if appropriate - [ ]...