Skip to content

Commit f1f1bce

Browse files
committed
release version 1.1.0
1 parent fb97b11 commit f1f1bce

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

README.rst

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ InfluxDB 2.0 client features
4949
- `Line Protocol <https://docs.influxdata.com/influxdb/v1.6/write_protocols/line_protocol_tutorial>`_
5050
- `Data Point <https://github.com/influxdata/influxdb-client-python/blob/master/influxdb_client/client/write/point.py#L16>`__
5151
- `RxPY <https://rxpy.readthedocs.io/en/latest/>`__ Observable
52-
- Not implemented yet
53-
- write user types using decorator
54-
- write Pandas DataFrame
5552
- `How to writes <#writes>`_
5653
- `InfluxDB 2.0 API <https://github.com/influxdata/influxdb/blob/master/http/swagger.yml>`_ client for management
5754
- the client is generated from the `swagger <https://github.com/influxdata/influxdb/blob/master/http/swagger.yml>`_ by using the `openapi-generator <https://github.com/OpenAPITools/openapi-generator>`_
@@ -691,19 +688,21 @@ How to use Jupyter + Pandas + InfluxDB 2
691688
""""""""""""""""""""""""""""""""""""""""
692689
The first example shows how to use client capabilities to predict stock price via `Keras <https://keras.io>`_, `TensorFlow <https://www.tensorflow.org>`_, `sklearn <https://scikit-learn.org/stable/>`_:
693690

691+
The example is taken from `Kaggle <https://www.kaggle.com/chaitanyacc4/predicting-stock-prices-of-apple-inc>`_.
692+
694693
* sources - `stock-predictions.ipynb <notebooks/stock-predictions.ipynb>`_
695694

696-
.. image:: docs/images/stock-price-prediction.gif
695+
.. image:: https://raw.githubusercontent.com/influxdata/influxdb-client-python/master/docs/images/stock-price-prediction.gif
697696

698697
Result:
699698

700-
.. image:: docs/images/stock-price-prediction-results.png
699+
.. image:: https://raw.githubusercontent.com/influxdata/influxdb-client-python/master/docs/images/stock-price-prediction-results.png
701700

702701
The second example shows how to use client capabilities to realtime visualization via `hvPlot <https://hvplot.pyviz.org>`_, `Streamz <https://streamz.readthedocs.io/en/latest/>`_, `RxPY <https://rxpy.readthedocs.io/en/latest/>`_:
703702

704703
* sources - `realtime-stream.ipynb <notebooks/realtime-stream.ipynb>`_
705704

706-
.. image:: docs/images/realtime-result.gif
705+
.. image:: https://raw.githubusercontent.com/influxdata/influxdb-client-python/master/docs/images/realtime-result.gif
707706

708707

709708
Advanced Usage

influxdb_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,4 +302,4 @@
302302
from influxdb_client.client.influxdb_client import InfluxDBClient
303303
from influxdb_client.client.write.point import Point
304304

305-
__version__ = '1.0.1dev'
305+
__version__ = '1.1.0'

influxdb_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7575
self.default_headers[header_name] = header_value
7676
self.cookie = cookie
7777
# Set default User-Agent.
78-
self.user_agent = 'OpenAPI-Generator/1.0.1dev/python'
78+
self.user_agent = 'OpenAPI-Generator/1.1.0/python'
7979

8080
def __del__(self):
8181
if self._pool:

influxdb_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def to_debug_report(self):
231231
"OS: {env}\n"\
232232
"Python Version: {pyversion}\n"\
233233
"Version of the API: 0.1.0\n"\
234-
"SDK Package Version: 1.0.1dev".\
234+
"SDK Package Version: 1.1.0".\
235235
format(env=sys.platform, pyversion=sys.version)
236236

237237
def update_request_header_params(self, path: str, params: dict):

scripts/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<packageName>influxdb_client</packageName>
2525
<sourceFolder>/</sourceFolder>
2626
<validatable>false</validatable>
27-
<packageVersion>1.0.1dev</packageVersion>
27+
<packageVersion>1.1.0</packageVersion>
2828
</configOptions>
2929
<generateModelDocumentation>false</generateModelDocumentation>
3030
<generateApiDocumentation>false</generateApiDocumentation>

0 commit comments

Comments
 (0)