influxdb3-python
influxdb3-python copied to clipboard
Python module that provides a simple and convenient way to interact with InfluxDB 3.0.
### Use Case A long running application will often manage a database client as a Singleton, where the instance is shared between multiple services and used throughout the application lifetime....
### Specifications * Client Version: Latest influxdb3-python 0.16.0 (installed via conda) * InfluxDB Version: v3 (Cloud, details on request) * Platform: Windows 11, Python 3.12.7 ### Code sample to reproduce...
Having reviewed this client library, I found it to be poorly structured and lacking adequate type support. The documentation is also out of date. The dependencies on pandas and pyarrow...
``` def bulk_save_item_data(obj: SyncInfluxDbObject): """批量同步数据""" try: conn = _create_connection() # 插入pd.Dataframe数据 conn.write(record=obj.bulk_data_pd, data_frame_measurement_name=obj.coll, data_frame_tag_columns=[obj.code_field], data_frame_timestamp_column='time') conn.close() except Exception as err: logging.error(f"Failed to insert to influxdb, ErrMessage:{err}") raise err with ThreadPoolExecutor(max_workers=10)...
查到InfluxDB在3.2.1版本中已支持删除功能,请问该库是否能支持一下下,万分感谢!