py-questdb-client
py-questdb-client copied to clipboard
Python client for QuestDB InfluxDB Line Protocol
Using the questdb python client version 2.0.0 it seems that the default http timeouts are not being respected when the network connection degrades. The minimal reproducible code is as follows:...
With the 2.0.2 client, when http is being used it seems that every flush instantiates a new connection. This makes sense and therefore does not require any "reconnection" methodology. However,...
We have a Cython package that doesn't do a great job of exposing typing information to PyCharm. It looks like this needs additional `.pyi` files to get it working: https://stackoverflow.com/questions/41734836/what-does-i-represent-in-python-pyi-extension...
When trying to install the questdb client using pip, it fails when using 3.12. It fails with both `pip install questdb` and with `pip install questdb[dataframe]`. Seems to be something...
For reasons yet to be determined, on some platforms py 3.12 will attempt to build from source rather than use the provided binaries. See: https://github.com/questdb/py-questdb-client/issues/81 * That issue is being...
I'm adding the questdb package via PyCharm and it shows this window: I'm all for conciseness, but this is probably too much :) I'm not sure where is this info...
# Overview A new API to make it easier to work with the sender asynchronously with true parallelism. ```python from questdb.ingress.pool import SenderPool with SenderPool('http::addr=localhost:9000;') as pool: # Buffers can...