Welcome to aioinflux’s documentation!¶
Asynchronous Python client for InfluxDB. Built on top of aiohttp and asyncio. Aioinflux is an alternative to the official InfluxDB Python client.
Aioinflux supports interacting with InfluxDB in a non-blocking way by using aiohttp. It also supports writing and querying of Pandas dataframes, among other handy functionality.
Contributing¶
To contribute, fork the repository on GitHub, make your changes and
submit a pull request.
Aioinflux is not a mature project yet, so just simply raising issues
is also greatly appreciated :)
Alternatives¶
- InfluxDB-Python: The official blocking-only client. Based on Requests.
- influx-sansio: Fork of aioinflux using curio/trio and asks as a backend.