From d07a51cb9a10fc6935827a0965a5d7457320fd64 Mon Sep 17 00:00:00 2001 From: karel rehor Date: Tue, 5 May 2026 14:04:18 +0200 Subject: [PATCH] docs: update README.md to match new examples, and mention pandas requirement for some PyArrow data conversion methods. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 807ce13..b1f4734 100644 --- a/README.md +++ b/README.md @@ -47,12 +47,14 @@ You can install 'influxdb3-python' using `pip`: pip install influxdb3-python ``` -Note: This does not include Pandas support. If you would like to use key features such as `to_pandas()` and `write_file()` you will need to install `pandas` separately. +Note: This does not include Pandas support. If you would like to use key features such as `to_pandas()` and `write_file()`, or to use PyArrow data conversion methods with nanosecond timestamp precision, you will need to install `pandas` separately. *Note: Please make sure you are using 3.9 or above. For the best performance use 3.11+* # Usage -One of the easiest ways to get started is to checkout the ["Pokemon Trainer Cookbook"](https://github.com/InfluxCommunity/influxdb3-python/blob/main/Examples/pokemon-trainer/cookbook.ipynb). This scenario takes you through the basics of both the client library and Pyarrow. +One of the easiest ways to get started is to check out the ["Influxdb3 Python Basic Usage"](https://github.com/InfluxCommunity/influxdb3-python/blob/main/examples/jupyter/basic-write-query.ipynb) notebook. This scenario takes you through the core write and read APIs of the client library. + +Additional examples independent of jupyter are detailed in the [`./examples`](./examples/README.md) directory. ## Importing the Module ```python