You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1.[#88](https://github.com/InfluxCommunity/influxdb3-python/pull/88): Add support for named query parameters:
8
+
```python
9
+
from influxdb_client_3 import InfluxDBClient3
10
+
11
+
with InfluxDBClient3(host="https://us-east-1-1.aws.cloud2.influxdata.com",
12
+
token="my-token",
13
+
database="my-database") as client:
14
+
15
+
table = client.query("select * from cpu where host=$host", query_parameters={"host": "server01"})
16
+
17
+
print(table.to_pandas())
18
+
19
+
```
20
+
6
21
### Bugfix
7
22
8
-
-[#87](https://github.com/InfluxCommunity/influxdb3-python/pull/87): Fix examples to use `write_options` instead of the object name `WriteOptions`
23
+
1. [#87](https://github.com/InfluxCommunity/influxdb3-python/pull/87): Fix examples to use `write_options` instead of the object name `WriteOptions`
9
24
10
25
### Others
11
26
12
-
-[#84](https://github.com/InfluxCommunity/influxdb3-python/pull/84): Enable packaging type information - `py.typed`
27
+
1. [#84](https://github.com/InfluxCommunity/influxdb3-python/pull/84): Enable packaging type information - `py.typed`
13
28
14
29
## 0.4.0 [2024-04-17]
15
30
@@ -19,4 +34,4 @@
19
34
20
35
### Others
21
36
22
-
-[#80](https://github.com/InfluxCommunity/influxdb3-python/pull/80): Integrate code style check into CI
37
+
1. [#80](https://github.com/InfluxCommunity/influxdb3-python/pull/80): Integrate code style check into CI
0 commit comments