Compare commits
25 Commits
61af626207
...
v1.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
| a7d7c2864c | |||
| b32c84e3db | |||
| 8b3cf944dd | |||
| c1497f0b00 | |||
| ef926fd983 | |||
| 23d8fa5624 | |||
| 1c541fa4d6 | |||
| ec399c8b0a | |||
| 736182b200 | |||
| 39b2c3c776 | |||
| 733ef83127 | |||
| b53fdc07f8 | |||
| eb260b7a7e | |||
| 6db3afcd28 | |||
| 00c66320b5 | |||
| 5823012259 | |||
| 7dec38109a | |||
| b6ede1af3b | |||
| e38a402d44 | |||
| e59cd77908 | |||
| 6ab8749f11 | |||
| 13df6822c8 | |||
| b78c503b31 | |||
| e69b2dfab9 | |||
| f168ad9e47 |
@@ -22,7 +22,8 @@ from georideapilib.exception import (
|
||||
UnauthorizedException
|
||||
)
|
||||
|
||||
GEORIDE_API_HOST = "https://api.georide.fr"
|
||||
GEORIDE_API_HOST = "https://api.georide.com"
|
||||
GEORIDE_SOCKET_HOST = "https://socket.georide.com"
|
||||
GEORIDE_API_ENDPOINT_LOGIN = "/user/login"
|
||||
GEORIDE_API_ENDPOINT_NEW_TOKEN = "/user/new-token"
|
||||
GEORIDE_API_ENDPOINT_LOGOUT = "/user/logout"
|
||||
|
||||
@@ -496,7 +496,7 @@ class GeoRideTracker(metaclass=JsonMgtMetaClass): # pylint: disable=R0904,R0902
|
||||
cls.json_field_protect(json,'autoLockFreezedTo'),
|
||||
cls.json_field_protect(json,'fixtime'),
|
||||
cls.json_field_protect(json,'role', "owner"),
|
||||
cls.json_field_protect(json,'lastPaymentDate', null),
|
||||
cls.json_field_protect(json,'lastPaymentDate', None),
|
||||
cls.json_field_protect(json,'giftCardId'),
|
||||
cls.json_field_protect(json,'expires'),
|
||||
cls.json_field_protect(json,'activationDate'),
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
import logging
|
||||
import socketio
|
||||
|
||||
from georideapilib.api import GEORIDE_API_HOST
|
||||
from georideapilib.api import GEORIDE_SOCKET_HOST
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
@@ -104,7 +104,7 @@ class GeoRideSocket():
|
||||
def connect(self, auth_token):
|
||||
""" connect to the georide socket"""
|
||||
if self._initialised is not False:
|
||||
sio.connect(GEORIDE_API_HOST, headers={'token': auth_token})
|
||||
sio.connect(GEORIDE_SOCKET_HOST, headers={'token': auth_token})
|
||||
sio.wait()
|
||||
else:
|
||||
_LOGGER.error("Please call init() before")
|
||||
|
||||
6
setup.py
6
setup.py
@@ -19,16 +19,16 @@ CURRENT_DIR = os.path.dirname(__file__)
|
||||
setup(
|
||||
name='georideapilib',
|
||||
packages=['georideapilib', 'georideapilib.objects'], # this must be the same as the name above
|
||||
version='0.9.5',
|
||||
version='1.0.0',
|
||||
description='Lib to control GeoRide tracker devices with theire rest api',
|
||||
author='Matthieu DUVAL',
|
||||
author_email='georideapilib@duval-dev.fr',
|
||||
# use the URL to the github repo
|
||||
url='https://github.com/hacf/georide-api',
|
||||
download_url='https://codeload.github.com/hacf/georide-api/tar.gz/0.9.3',
|
||||
download_url='https://codeload.github.com/hacf/georide-api/tar.gz/1.0.0',
|
||||
keywords=['rest', 'georide', 'api', 'grutier', 'GeoRide'], # arbitrary keywords
|
||||
classifiers=[],
|
||||
install_requires=["python-socketio[client]==4.6.1"],
|
||||
install_requires=["python-socketio[client]==5.8.0"],
|
||||
tests_require=[
|
||||
'pytest>=3.7',
|
||||
'pytest-pep8',
|
||||
|
||||
Reference in New Issue
Block a user