influxdb3-python 0.15.0__tar.gz → 0.16.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {influxdb3_python-0.15.0/influxdb3_python.egg-info → influxdb3_python-0.16.0}/PKG-INFO +8 -1
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/README.md +7 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0/influxdb3_python.egg-info}/PKG-INFO +8 -1
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/version.py +1 -1
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/basic_ssl_example.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/batching_example.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/cloud_dedicated_query.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/cloud_dedicated_write.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/config.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/flight_options_example.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/handle_http_error.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/handle_query_error.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/pandas_write.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/query_async.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/Examples/query_type.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/LICENSE +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb3_python.egg-info/SOURCES.txt +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb3_python.egg-info/dependency_links.txt +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb3_python.egg-info/requires.txt +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb3_python.egg-info/top_level.txt +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/exceptions/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/exceptions/exceptions.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/py.typed +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/query/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/query/query_api.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/read_file.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/_sync/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/_sync/api_client.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/_sync/rest.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/_base.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/influxdb_client.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/logging_handler.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/util/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/util/date_utils.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/util/date_utils_pandas.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/util/helpers.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/util/multiprocessing_helper.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/warnings.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/write/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/write/dataframe_serializer.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/write/point.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/write/polars_dataframe_serializer.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/write/retry.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/write_api.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/configuration.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/domain/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/domain/write_precision.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/domain/write_precision_converter.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/extras.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/rest.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/service/__init__.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/service/_base_service.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/service/signin_service.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/service/signout_service.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/service/write_service.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/pyproject.toml +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/setup.cfg +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/setup.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_api_client.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_dataframe_serializer.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_date_helper.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_deep_merge.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_influxdb_client_3.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_influxdb_client_3_integration.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_merge_options.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_point.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_polars.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_query.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_write_file.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_write_local_server.py +0 -0
- {influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_write_precision_converter.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: influxdb3-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.0
|
|
4
4
|
Summary: Community Python client for InfluxDB 3.0
|
|
5
5
|
Home-page: https://github.com/InfluxCommunity/influxdb3-python
|
|
6
6
|
Author: InfluxData
|
|
@@ -209,6 +209,11 @@ table = reader.read_all()
|
|
|
209
209
|
print(table.to_pandas().to_markdown())
|
|
210
210
|
```
|
|
211
211
|
|
|
212
|
+
### gRPC compression
|
|
213
|
+
The Python client supports gRPC response compression.
|
|
214
|
+
If the server chooses to compress query responses (e.g., with gzip), the client
|
|
215
|
+
will automatically decompress them — no extra configuration is required.
|
|
216
|
+
|
|
212
217
|
## Windows Users
|
|
213
218
|
Currently, Windows users require an extra installation when querying via Flight natively. This is due to the fact gRPC cannot locate Windows root certificates. To work around this please follow these steps:
|
|
214
219
|
Install `certifi`
|
|
@@ -242,6 +247,8 @@ print(table.to_pandas())
|
|
|
242
247
|
```
|
|
243
248
|
You may also include your own root certificate via this manor aswell.
|
|
244
249
|
|
|
250
|
+
If connecting to InfluxDB fails with error `DNS resolution failed` when using domain name, example `www.mydomain.com`, then try to set environment variable `GRPC_DNS_RESOLVER=native` to see if it works.
|
|
251
|
+
|
|
245
252
|
# Contributing
|
|
246
253
|
|
|
247
254
|
Tests are run using `pytest`.
|
|
@@ -162,6 +162,11 @@ table = reader.read_all()
|
|
|
162
162
|
print(table.to_pandas().to_markdown())
|
|
163
163
|
```
|
|
164
164
|
|
|
165
|
+
### gRPC compression
|
|
166
|
+
The Python client supports gRPC response compression.
|
|
167
|
+
If the server chooses to compress query responses (e.g., with gzip), the client
|
|
168
|
+
will automatically decompress them — no extra configuration is required.
|
|
169
|
+
|
|
165
170
|
## Windows Users
|
|
166
171
|
Currently, Windows users require an extra installation when querying via Flight natively. This is due to the fact gRPC cannot locate Windows root certificates. To work around this please follow these steps:
|
|
167
172
|
Install `certifi`
|
|
@@ -195,6 +200,8 @@ print(table.to_pandas())
|
|
|
195
200
|
```
|
|
196
201
|
You may also include your own root certificate via this manor aswell.
|
|
197
202
|
|
|
203
|
+
If connecting to InfluxDB fails with error `DNS resolution failed` when using domain name, example `www.mydomain.com`, then try to set environment variable `GRPC_DNS_RESOLVER=native` to see if it works.
|
|
204
|
+
|
|
198
205
|
# Contributing
|
|
199
206
|
|
|
200
207
|
Tests are run using `pytest`.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: influxdb3-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.0
|
|
4
4
|
Summary: Community Python client for InfluxDB 3.0
|
|
5
5
|
Home-page: https://github.com/InfluxCommunity/influxdb3-python
|
|
6
6
|
Author: InfluxData
|
|
@@ -209,6 +209,11 @@ table = reader.read_all()
|
|
|
209
209
|
print(table.to_pandas().to_markdown())
|
|
210
210
|
```
|
|
211
211
|
|
|
212
|
+
### gRPC compression
|
|
213
|
+
The Python client supports gRPC response compression.
|
|
214
|
+
If the server chooses to compress query responses (e.g., with gzip), the client
|
|
215
|
+
will automatically decompress them — no extra configuration is required.
|
|
216
|
+
|
|
212
217
|
## Windows Users
|
|
213
218
|
Currently, Windows users require an extra installation when querying via Flight natively. This is due to the fact gRPC cannot locate Windows root certificates. To work around this please follow these steps:
|
|
214
219
|
Install `certifi`
|
|
@@ -242,6 +247,8 @@ print(table.to_pandas())
|
|
|
242
247
|
```
|
|
243
248
|
You may also include your own root certificate via this manor aswell.
|
|
244
249
|
|
|
250
|
+
If connecting to InfluxDB fails with error `DNS resolution failed` when using domain name, example `www.mydomain.com`, then try to set environment variable `GRPC_DNS_RESOLVER=native` to see if it works.
|
|
251
|
+
|
|
245
252
|
# Contributing
|
|
246
253
|
|
|
247
254
|
Tests are run using `pytest`.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb3_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/exceptions/__init__.py
RENAMED
|
File without changes
|
{influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/exceptions/exceptions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/__init__.py
RENAMED
|
File without changes
|
{influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/_sync/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/_sync/rest.py
RENAMED
|
File without changes
|
|
File without changes
|
{influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/client/_base.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/configuration.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/influxdb_client_3/write_client/extras.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{influxdb3_python-0.15.0 → influxdb3_python-0.16.0}/tests/test_influxdb_client_3_integration.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|