File tree Expand file tree Collapse file tree 6 files changed +34
-3
lines changed
influxdb_client_3/write_client/client Expand file tree Collapse file tree 6 files changed +34
-3
lines changed Original file line number Diff line number Diff line change 17171 . [ #180 ] ( https://github.com/InfluxCommunity/influxdb3-python/pull/180 ) : Add ` flush() ` method to ` InfluxDBClient3 ` :
1818 - Allows flushing the write buffer without closing the client when using batching mode.
1919 - Enables applications to ensure data is written before querying, while keeping the client open for further operations.
20+ 1 . [ #185 ] ( https://github.com/InfluxCommunity/influxdb3-python/pull/185 ) :
21+ - Add API Reference page on document page
22+ - Remove old document link.
23+ - Add link to document page in README.md
2024
2125### Bug Fixes
2226
Original file line number Diff line number Diff line change 44</p >
55
66<p align =" center " >
7+ <a href="https://influxdb3-python.readthedocs.io/en/latest/">
8+ <img src="https://img.shields.io/readthedocs/influxdb3-python/latest" alt="Readthedocs document">
9+ </a>
710 <a href="https://pypi.org/project/influxdb3-python/">
811 <img src="https://img.shields.io/pypi/v/influxdb3-python.svg" alt="PyPI version">
912 </a>
Original file line number Diff line number Diff line change 1+ # API Reference
2+
3+ ::: __ init__ .InfluxDBClient3
4+ options:
5+ members:
6+ - from_env
7+ - write
8+ - write_file
9+ - write_dataframe
10+ - query
11+ - query_dataframe
12+ - query_async
13+ - get_server_version
14+ - flush
15+ - close
Original file line number Diff line number Diff line change @@ -2,5 +2,14 @@ site_name: InfluxDB 3.0 Python Client
22docs_dir : .
33nav :
44 - Home : index.md
5+ - API Reference : api_reference.md
56plugins :
67 - include-markdown
8+ - mkdocstrings :
9+ handlers :
10+ python :
11+ paths : [ ../influxdb_client_3 ]
12+ options :
13+ summary : true
14+ show_symbol_type_toc : true
15+ show_symbol_type_heading : true
Original file line number Diff line number Diff line change 11mkdocs
22mkdocs-include-markdown-plugin
3+ mkdocstrings
4+ mkdocstrings-python
Original file line number Diff line number Diff line change @@ -296,9 +296,7 @@ def __init__(self,
296296
297297 if self ._write_options .write_type is WriteType .asynchronous :
298298 message = """The 'WriteType.asynchronous' is deprecated and will be removed in future major version.
299-
300- You can use native asynchronous version of the client:
301- - https://influxdb-client.readthedocs.io/en/stable/usage.html#how-to-use-asyncio
299+ You can use native asynchronous version of the client:
302300 """
303301 # TODO above message has link to Influxdb2 API __NOT__ Influxdb3 API !!! - illustrates different API
304302 warnings .warn (message , DeprecationWarning )
You can’t perform that action at this time.
0 commit comments