4 Commits

Author SHA1 Message Date
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
13df6822c8 Shipping v0.4.2 2019-11-02 17:42:36 +01:00
9bb33b6020 Fix exception bug 2019-11-02 17:40:53 +01:00
3 changed files with 4 additions and 3 deletions

View File

@@ -3,6 +3,8 @@
⚠️ this is not an official implementation ⚠️ 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/ Official georide website: https://georide.fr/
This library can control your georide tracker tracker This library can control your georide tracker tracker

View File

@@ -100,7 +100,6 @@ class GeorideSocket():
if self._on_locked_callback is not None: if self._on_locked_callback is not None:
self._on_locked_callback(data) self._on_locked_callback(data)
else: else:
self._initialised = True self._initialised = True
def connect(self, auth_token): def connect(self, auth_token):

View File

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