We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70f42dd commit 15ceaa5Copy full SHA for 15ceaa5
README.md
@@ -199,3 +199,23 @@ table = client.query(
199
print(table.to_pandas())
200
```
201
You may also include your own root certificate via this manor aswell.
202
+
203
+# Contributing
204
205
+Tests are run using `pytest`.
206
207
+```bash
208
+# Clone the repository
209
+git clone https://github.com/InfluxCommunity/influxdb3-python
210
+cd influxdb3-python
211
212
+# Create a virtual environment and activate it
213
+python3 -m venv .venv
214
+source .venv/bin/activate
215
216
+# Install the package and its dependencies
217
+pip install -e .[pandas,polars,dataframe,test]
218
219
+# Run the tests
220
+python -m pytest .
221
+```
0 commit comments