This library makes it easy to insert data into QuestDB.
This client library implements QuestDB's variant of the InfluxDB Line Protocol (ILP) over TCP.
ILP provides the fastest way to insert data into QuestDB.
This implementation supports authentication and full-connection encryption with TLS.
The latest version of the library is 1.0.2.
python3 -m pip install questdb
from questdb.ingress import Sender
with Sender('localhost', 9009) as sender:
sender.row(
'sensors',
symbols={'id': 'toronto1'},
columns={'temperature': 20.0, 'humidity': 0.5})
sender.flush()
https://py-questdb-client.readthedocs.io/
https://github.com/questdb/py-questdb-client
https://pypi.org/project/questdb/
If you need help, have additional questions or want to provide feedback, you may find us on Slack.
You can also sign up to our mailing list to get notified of new releases.
The code is released under the Apache License 2.0.