python-terminusgps 1.5.5__py3-none-any.whl → 1.5.6__py3-none-any.whl
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.
- {python_terminusgps-1.5.5.dist-info → python_terminusgps-1.5.6.dist-info}/METADATA +1 -1
- {python_terminusgps-1.5.5.dist-info → python_terminusgps-1.5.6.dist-info}/RECORD +5 -5
- terminusgps/wialon/session.py +0 -2
- {python_terminusgps-1.5.5.dist-info → python_terminusgps-1.5.6.dist-info}/WHEEL +0 -0
- {python_terminusgps-1.5.5.dist-info → python_terminusgps-1.5.6.dist-info}/licenses/COPYING +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-terminusgps
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.6
|
|
4
4
|
Summary: Provides abstractions/utilities for working with Wialon API, Authorize.NET API, AWS API, and more.
|
|
5
5
|
Project-URL: Documentation, https://app.terminusgps.com/docs/apps/python-terminusgps/index.html
|
|
6
6
|
Project-URL: Repository, https://github.com/terminusgps/python-terminusgps
|
|
@@ -8,7 +8,7 @@ terminusgps/wialon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
8
8
|
terminusgps/wialon/constants.py,sha256=dsQaNt3TIjIZbr_m94KmBGFdrqe6HER2r6lol3X8QpU,2802
|
|
9
9
|
terminusgps/wialon/errors.py,sha256=RbHwHuhW8P9L7i3jaPzcMO8ZHxX3Z3V970ypEtqnavw,1236
|
|
10
10
|
terminusgps/wialon/flags.py,sha256=-OoH-eZM54yjRqxsAXL8VImdQu_7C0OAxCrFqaCEuko,13510
|
|
11
|
-
terminusgps/wialon/session.py,sha256=
|
|
11
|
+
terminusgps/wialon/session.py,sha256=yEoOxRqL3dLIAAFAAgYu9K866QZzFiCDApZBQ8f0LTI,8740
|
|
12
12
|
terminusgps/wialon/utils.py,sha256=J8V2F-QDMsLD5x2OhCYI2lnZZdgqKboMve5XJD7Qt30,1877
|
|
13
13
|
terminusgps/wialon/items/__init__.py,sha256=3BVthghekMvhMQSzQgBMlD_phxmKSmp3Zvmo-z0O8Bs,211
|
|
14
14
|
terminusgps/wialon/items/base.py,sha256=MN4FG6U1nWkYAjNfXQJRVrWJoiW4Y64tyqxUO0mhv_w,6593
|
|
@@ -18,7 +18,7 @@ terminusgps/wialon/items/route.py,sha256=qOHPN_rejwiGqvwWzlwmUIAIyc3lKavCalf8ki6
|
|
|
18
18
|
terminusgps/wialon/items/unit.py,sha256=tLAWPfHUUS6_Feh1aYBMFPgyuGlSiAnfumJJmGt3bKw,4662
|
|
19
19
|
terminusgps/wialon/items/unit_group.py,sha256=1yc7ldPIgGbtiTj0djRDWmt6Q9K_VT9sxOaioasbbLY,5212
|
|
20
20
|
terminusgps/wialon/items/user.py,sha256=bkcMw_YiocaMuhP_pBfB7apjAZwnsOzGScnGkn8Ybbw,6107
|
|
21
|
-
python_terminusgps-1.5.
|
|
22
|
-
python_terminusgps-1.5.
|
|
23
|
-
python_terminusgps-1.5.
|
|
24
|
-
python_terminusgps-1.5.
|
|
21
|
+
python_terminusgps-1.5.6.dist-info/METADATA,sha256=-ydcnkpNZo3XBwK4pe9MCouyUryZqstT0lJa76zuuvY,882
|
|
22
|
+
python_terminusgps-1.5.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
23
|
+
python_terminusgps-1.5.6.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
24
|
+
python_terminusgps-1.5.6.dist-info/RECORD,,
|
terminusgps/wialon/session.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
from wialon.api import Wialon, WialonError
|
|
2
|
-
from pprint import pprint
|
|
3
2
|
from django.conf import settings
|
|
4
3
|
from django.core.exceptions import ImproperlyConfigured
|
|
5
4
|
|
|
@@ -243,7 +242,6 @@ class WialonSession:
|
|
|
243
242
|
assert not self.active, "Cannot login to an active session."
|
|
244
243
|
try:
|
|
245
244
|
response = self.wialon_api.token_login(**{"token": token, "fl": flags})
|
|
246
|
-
pprint(response)
|
|
247
245
|
except WialonError as e:
|
|
248
246
|
raise WialonLoginError(token, e)
|
|
249
247
|
else:
|
|
File without changes
|
|
File without changes
|