@@ -8,40 +8,63 @@ This client library implements QuestDB's variant of the
88`InfluxDB Line Protocol <https://questdb.io/docs/reference/api/ilp/overview/ >`_
99(ILP) over TCP.
1010
11+ ILP provides the fastest way to insert data into QuestDB.
1112
12- Status of the library
13- =====================
13+ This implementation supports `authentication
14+ <https://questdb.io/docs/reference/api/ilp/authenticate/> `_ and full-connection
15+ encryption with TLS.
1416
15- Work in progress: do not use yet.
16-
17- There will be an announcement on our `slack <http://slack.questdb.io >`_ once
18- it's ready for use.
19-
20-
21- Installation
22- =============
17+ Quickstart
18+ ==========
2319
2420The latest version of the library is 0.0.3.
2521
2622::
2723
2824 python3 -m pip install questdb
2925
26+ .. code-block :: python
27+
28+ from questdb.ingress import Sender
29+
30+ with qi.Sender(' localhost' , 9009 ) as sender:
31+ sender.row(
32+ ' sensors' ,
33+ symbols = {' id' : ' toronto1' },
34+ columns = {' temperature' : 20.0 , ' humidity' : 0.5 })
35+ sender.flush()
36+
3037
3138 Docs
3239====
3340
34- https://py-questdb-client.readthedocs.io/
41+ https://py-questdb-client.readthedocs.io/
3542
3643
3744Code
3845====
3946
40- https://github.com/questdb/py-questdb-client
47+ https://github.com/questdb/py-questdb-client
4148
4249
4350Package on PyPI
4451===============
4552
46- https://pypi.org/project/questdb/
53+ https://pypi.org/project/questdb/
54+
55+
56+ Community
57+ =========
58+
59+ If you need help, have additional questions or want to provide feedback, you
60+ may find us on `Slack <https://slack.questdb.io >`_.
61+
62+ You can also `sign up to our mailing list <https://questdb.io/community/ >`_
63+ to get notified of new releases.
64+
65+
66+ License
67+ =======
4768
69+ The code is released under the `Apache License 2.0
70+ <https://github.com/questdb/py-questdb-client/blob/main/LICENSE.txt> `_.
0 commit comments