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.
Copy file name to clipboardExpand all lines: README.rst
+47-24Lines changed: 47 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,5 @@
1
-
2
-
3
-
InfluxDB-Python is a client for interacting with InfluxDB_. Maintained by @aviau (https://github.com/aviau).
4
-
5
-
**Help needed:** Development of this library is made by the community and help is needed. A co-maintainer would be welcome. To contribute, take a look at the issues list of simply contact @aviau.
InfluxDB-Python is a client for interacting with InfluxDB_. Development of this library is maintained by
18
+
19
+
+-----------+-------------------------------+
20
+
| Github ID | URL |
21
+
+===========+===============================+
22
+
| @aviau | (https://github.com/aviau) |
23
+
+-----------+-------------------------------+
24
+
| @xginn8 | (https://github.com/xginn8) |
25
+
+-----------+-------------------------------+
26
+
| @sebito91 | (https://github.com/sebito91) |
27
+
+-----------+-------------------------------+
28
+
18
29
.. _readme-about:
19
30
20
-
InfluxDB is an open-source distributed time series database, find more about InfluxDB_ at http://influxdata.com/
31
+
InfluxDB is an open-source distributed time series database, find more about InfluxDB_ at https://docs.influxdata.com/influxdb/latest
21
32
22
33
23
34
.. _installation:
24
35
25
36
InfluxDB pre v1.1.0 users
26
-
=========================
37
+
-------------------------
38
+
39
+
This module is tested with InfluxDB v1.2.4, our recommended version. Though there have been v1.3 (initial TSI branch) and v1.4 releases these are not
40
+
yet supported.
27
41
28
-
InfluxDB 1.1.0 was released and it is the new recommended version. InfluxDB 0.8.x users may still use the legacy client by using ``from influxdb.influxdb08 import InfluxDBClient`` instead.
42
+
Those users still on InfluxDB v0.8.x users may still use the legacy client by importing ``from influxdb.influxdb08 import InfluxDBClient``.
29
43
30
44
Installation
31
-
============
45
+
------------
32
46
33
-
Install, upgrade and uninstall InfluxDB-Python with these commands::
47
+
Install, upgrade and uninstall influxdb-python with these commands::
34
48
35
49
$ pip install influxdb
36
50
$ pip install --upgrade influxdb
@@ -41,9 +55,9 @@ On Debian/Ubuntu, you can install it with this command::
41
55
$ sudo apt-get install python-influxdb
42
56
43
57
Dependencies
44
-
============
58
+
------------
45
59
46
-
The InfluxDB-Python distribution is supported and tested on Python 2.7, 3.3, 3.4, 3.5, 3.6, PyPy and PyPy3.
60
+
The influxdb-python distribution is supported and tested on Python 2.7, 3.3, 3.4, 3.5, 3.6, PyPy and PyPy3.
47
61
48
62
**Note:** Python 3.2 is currently untested. See ``.travis.yml``.
49
63
@@ -61,9 +75,9 @@ Additional dependencies are:
61
75
62
76
63
77
Documentation
64
-
=============
78
+
-------------
65
79
66
-
InfluxDB-Python documentation is available at http://influxdb-python.readthedocs.org
80
+
Documentation is available at https://influxdb-python.readthedocs.io/en/latest/.
67
81
68
82
You will need Sphinx_ installed to generate the documentation.
69
83
@@ -76,7 +90,7 @@ Generated documentation can be found in the *docs/build/html/* directory.
76
90
77
91
78
92
Examples
79
-
========
93
+
--------
80
94
81
95
Here's a basic example (for more see the examples directory)::
82
96
@@ -110,7 +124,7 @@ Here's a basic example (for more see the examples directory)::
110
124
111
125
112
126
Testing
113
-
=======
127
+
-------
114
128
115
129
Make sure you have tox by running the following::
116
130
@@ -122,34 +136,43 @@ To test influxdb-python with multiple version of Python, you can use Tox_::
122
136
123
137
124
138
Support
125
-
=======
139
+
-------
126
140
127
141
For issues with, questions about, or feedback for InfluxDB_, please look into
128
142
our community page: http://influxdb.com/community/.
129
143
144
+
We are also lurking on the following:
145
+
146
+
- #influxdb on irc.freenode.net
147
+
- #influxdb on gophers.slack.com
148
+
130
149
131
150
Development
132
-
===========
151
+
-----------
133
152
134
153
All development is done on Github_. Use Issues_ to report
0 commit comments