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
{{ message }}
This repository was archived by the owner on Oct 29, 2024. It is now read-only.
* chore(docs): Update version advice and tox build requirements:
- Updates the version advice and removes the succession statement to be consistent with the OSS 1.11 release.
- Adds explicit relations to v2 and v3.
- Removes redundancies.
- Fixes formatting errors reported by the linter.
- Updates dependencies for docs build.
* fix(docs): mention 1.x compat endpoints in 2.x
InfluxDB-Python is a client for interacting with InfluxDB_.
30
18
31
-
**Note: This library is for use with InfluxDB 1.x. For connecting to InfluxDB 2.x instances, please use the the** `influxdb-client-python <https://github.com/influxdata/influxdb-client-python>`_ **client.**
19
+
.. important::
32
20
33
-
Development of this library is maintained by:
21
+
**This project is no longer in development**
22
+
23
+
This v1 client library is for interacting with `InfluxDB 1.x <https://docs.influxdata.com/influxdb/v1/>`_ and 1.x-compatible endpoints in `InfluxDB 2.x <https://docs.influxdata.com/influxdb/v2/>`_.
24
+
Use it to:
25
+
26
+
- Write data in line protocol.
27
+
- Query data with `InfluxQL <https://docs.influxdata.com/influxdb/v1/query_language/>`_.
34
28
35
-
+-----------+-------------------------------+
36
-
| Github ID | URL |
37
-
+===========+===============================+
38
-
| @aviau | (https://github.com/aviau) |
39
-
+-----------+-------------------------------+
40
-
| @xginn8 | (https://github.com/xginn8) |
41
-
+-----------+-------------------------------+
42
-
| @sebito91 | (https://github.com/sebito91) |
43
-
+-----------+-------------------------------+
29
+
If you use `InfluxDB 2.x (TSM storage engine) <https://docs.influxdata.com/influxdb/v2/>`_ and `Flux <https://docs.influxdata.com/flux/v0/>`_, see the `v2 client library <https://github.com/influxdata/influxdb-client-python>`_.
30
+
31
+
If you use `InfluxDB 3.0 <https://www.influxdata.com/get-influxdb/>`_, see the `v3 client library <https://github.com/influxdata/influxdb3-python>`_.
32
+
33
+
For new projects, consider using InfluxDB 3.0 and v3 client libraries.
34
+
35
+
Description
36
+
===========
37
+
38
+
InfluxDB-python, the InfluxDB Python Client (1.x), is a client library for interacting with `InfluxDB 1.x <https://docs.influxdata.com/influxdb/v1/>`_ instances.
44
39
45
40
.. _readme-about:
46
41
47
-
InfluxDB is an open-source distributed time series database, find more about InfluxDB_ at https://docs.influxdata.com/influxdb/latest
42
+
`InfluxDB`_ is the time series platform designed to handle high write and query loads.
48
43
49
44
50
45
.. _installation:
51
46
52
-
InfluxDB pre v1.1.0 users
53
-
-------------------------
54
47
55
-
This module is tested with InfluxDB versions: v1.2.4, v1.3.9, v1.4.3, v1.5.4, v1.6.4, and 1.7.4.
48
+
For InfluxDB pre-v1.1.0 users
49
+
-----------------------------
56
50
57
-
Those users still on InfluxDB v0.8.x users may still use the legacy client by importing ``from influxdb.influxdb08 import InfluxDBClient``.
51
+
This module is tested with InfluxDB versions v1.2.4, v1.3.9, v1.4.3, v1.5.4, v1.6.4, and 1.7.4.
58
52
59
-
Installation
60
-
------------
53
+
Users on InfluxDB v0.8.x may still use the legacy client by importing ``from influxdb.influxdb08 import InfluxDBClient``.
54
+
55
+
For InfluxDB v1.1+ users
56
+
------------------------
61
57
62
58
Install, upgrade and uninstall influxdb-python with these commands::
63
59
@@ -165,21 +161,33 @@ We are also lurking on the following:
165
161
Development
166
162
-----------
167
163
164
+
The v1 client libraries for InfluxDB 1.x were typically developed and maintained by InfluxDB community members. If you are an InfluxDB v1 user interested in maintaining this client library (at a minimum, keeping it updated with security patches) please contact the InfluxDB team at on the `Community Forums <https://community.influxdata.com/>`_ or
0 commit comments