- #113: Fix import error of
PolarsDataframeSerializer
in batching mode
- #108: Better expose access to response headers in
InfluxDBError
. Examplehandle_http_error
added. - #112: Update batching examples, add integration tests of batching.
- #107: Missing
py.typed
in distribution package - #111: Reduce log level of disposal of batch processor to DEBUG
- #101: Add support for InfluxDB Edge (OSS) authentication
- #98: Missing declaration for
query
module
- #89: Use
datetime.fromisoformat
overdateutil.parse
in Python 3.11+ - #92: Update
user-agent
header value toinfluxdb3-python/{VERSION}
and add it to queries as well.
- #86: Refactor to
timezone
specificdatetime
helpers to avoid use deprecated functions
- #88: Add support for named query parameters:
from influxdb_client_3 import InfluxDBClient3 with InfluxDBClient3(host="https://us-east-1-1.aws.cloud2.influxdata.com", token="my-token", database="my-database") as client: table = client.query("select * from cpu where host=$host", query_parameters={"host": "server01"}) print(table.to_pandas())
- #87: Fix examples to use
write_options
instead of the object nameWriteOptions
- #84: Enable packaging type information -
py.typed
- #77: Support using pandas nullable types
- #80: Integrate code style check into CI