From a931efd14c3615ee54fb6ab30ee8c21b3d72b531 Mon Sep 17 00:00:00 2001 From: NguyenHoangSon96 Date: Thu, 12 Jun 2025 07:23:22 +0700 Subject: [PATCH 1/2] feat: improve doc --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b1a962..503658f 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ from influxdb_client_3 import InfluxDBClient3, Point ## Initialization If you are using InfluxDB Cloud, then you should note that: -1. Use bucket name for the `database` argument. +1. Use bucket name for `database` or `bucket` in function argument. ```python client = InfluxDBClient3(token="your-token", From 001f79d2540d297525f162c207e3db92ee9a510f Mon Sep 17 00:00:00 2001 From: NguyenHoangSon96 Date: Thu, 12 Jun 2025 07:26:33 +0700 Subject: [PATCH 2/2] feat: improve doc --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c8f825..2434d7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - Also configurable via environment variable (`INFLUX_WRITE_NO_SYNC`). - Long precision string values added from v3 HTTP API: `"nanosecond"`, `"microsecond"`, `"millisecond"`, `"second"` ( in addition to the existing `"ns"`, `"us"`, `"ms"`, `"s"`). +3. [#145](https://github.com/InfluxCommunity/influxdb3-python/pull/145): Improve the document wording for README.md ## 0.13.0 [2025-05-20]