4 Commits
0.4.2 ... 0.4.4

Author SHA1 Message Date
e59cd77908 Shipping v0.4.4 2019-11-03 20:26:49 +01:00
1275ffa882 Fix socket init error 2019-11-03 20:26:00 +01:00
6ab8749f11 Shipping v0.4.3 2019-11-02 17:51:48 +01:00
9923f45a95 Add pypi badge 2019-11-02 17:51:25 +01:00
3 changed files with 6 additions and 6 deletions

View File

@@ -3,6 +3,8 @@
⚠️ this is not an official implementation
[![pypi_badge](https://img.shields.io/pypi/v/georideapilib?style=for-the-badge)](https://pypi.org/project/georideapilib/)
Official georide website: https://georide.fr/
This library can control your georide tracker tracker
@@ -10,7 +12,7 @@ This library can control your georide tracker tracker
Some code have been taken from @alexmohr https://github.com/alexmohr/sonyapilib
This library is used as communication interface in a home assistant component to control media players, which can be found here:(Not ready yet ;))
This library is used as communication interface in a home assistant component to control media players, which can be found here: https://github.com/ptimatth/GeorideHA
At the moment not all functions offered by the api are implemented. If you miss a function feel free to create a pull request or open a feature request.
@@ -28,5 +30,4 @@ This library has been tested with python 3.7 and above, functionality for older
- https://github.com/ptimatth/pyGeoride
## Todo
- [ ] Add support of SocketIO connection
- [ ] Add support of "Get a shared trip" endpoint

View File

@@ -99,7 +99,6 @@ class GeorideSocket():
_LOGGER.debug('Locked received: %s', data)
if self._on_locked_callback is not None:
self._on_locked_callback(data)
else:
self._initialised = True
def connect(self, auth_token):

View File

@@ -19,7 +19,7 @@ CURRENT_DIR = os.path.dirname(__file__)
setup(
name='georideapilib',
packages=['georideapilib'], # this must be the same as the name above
version='0.4.2',
version='0.4.4',
description='Lib to control georide tracker devices with their rest api',
author='Matthieu DUVAL',
author_email='georideapilib@duval-dev.fr',