python-terminusgps 36.1.2__py3-none-any.whl → 36.1.3__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-36.1.2.dist-info → python_terminusgps-36.1.3.dist-info}/METADATA +1 -1
- {python_terminusgps-36.1.2.dist-info → python_terminusgps-36.1.3.dist-info}/RECORD +5 -5
- terminusgps/wialon/session.py +2 -6
- {python_terminusgps-36.1.2.dist-info → python_terminusgps-36.1.3.dist-info}/WHEEL +0 -0
- {python_terminusgps-36.1.2.dist-info → python_terminusgps-36.1.3.dist-info}/licenses/COPYING +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-terminusgps
|
|
3
|
-
Version: 36.1.
|
|
3
|
+
Version: 36.1.3
|
|
4
4
|
Summary: Provides abstractions/utilities for working with Wialon API, Authorize.NET API, AWS API, and more.
|
|
5
5
|
Project-URL: Documentation, https://docs.terminusgps.com
|
|
6
6
|
Project-URL: Repository, https://github.com/terminusgps/python-terminusgps
|
|
@@ -37,7 +37,7 @@ terminusgps/twilio/caller.py,sha256=RQax2iZ6SYHiuCvBxXkrooRWQ9J8DwKGAjxa8RYjrLI,
|
|
|
37
37
|
terminusgps/wialon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
38
|
terminusgps/wialon/constants.py,sha256=Ju2XL2A4DPFD-w8NjYqEfnnqregl1luPT0XGhGSUnO8,6316
|
|
39
39
|
terminusgps/wialon/flags.py,sha256=M50EdhxQ8IMnJnU0mrHK7-h8Asc6tvNiTOOfd1dBW6A,12815
|
|
40
|
-
terminusgps/wialon/session.py,sha256=
|
|
40
|
+
terminusgps/wialon/session.py,sha256=BN8GBfYNIJcjvev9-qOam2Sbkf7EyCoQXTudRrmA3vc,10533
|
|
41
41
|
terminusgps/wialon/utils.py,sha256=SwpcxLPBLy0u3AT84G-Co4wxmhRrPFyW3jo_9O6ICvk,11008
|
|
42
42
|
terminusgps/wialon/validators.py,sha256=j5vrtcfClAzRdRkWTvRRAmrne1t0R6cKkmYdE7fAkSs,4247
|
|
43
43
|
terminusgps/wialon/items/__init__.py,sha256=3BVthghekMvhMQSzQgBMlD_phxmKSmp3Zvmo-z0O8Bs,211
|
|
@@ -52,7 +52,7 @@ terminusgps/wialon/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
52
52
|
terminusgps/wialon/tests/test_items.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
terminusgps/wialon/tests/test_session.py,sha256=9mBlYchMo9NeqRIZsmxYzrM1zBHorqu4ooxqSNppLpI,1336
|
|
54
54
|
terminusgps/wialon/tests/test_utils.py,sha256=SK4PxJQGECFnzx_EQeRAQfsQ5_3FLaVcis2W9u_ibuI,1730
|
|
55
|
-
python_terminusgps-36.1.
|
|
56
|
-
python_terminusgps-36.1.
|
|
57
|
-
python_terminusgps-36.1.
|
|
58
|
-
python_terminusgps-36.1.
|
|
55
|
+
python_terminusgps-36.1.3.dist-info/METADATA,sha256=3DwmldpvpHiF5EBQbdnTXHXqHqOrOqV2y7ELuX_PKTU,1616
|
|
56
|
+
python_terminusgps-36.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
57
|
+
python_terminusgps-36.1.3.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
58
|
+
python_terminusgps-36.1.3.dist-info/RECORD,,
|
terminusgps/wialon/session.py
CHANGED
|
@@ -102,13 +102,9 @@ class WialonSession:
|
|
|
102
102
|
f"logs/{self.__class__.__name__}.log",
|
|
103
103
|
level=log_level,
|
|
104
104
|
retention=f"{log_days} days",
|
|
105
|
-
diagnose=debug or settings.DEBUG
|
|
106
|
-
)
|
|
107
|
-
self._token = (
|
|
108
|
-
token or settings.WIALON_TOKEN
|
|
109
|
-
if settings.configured
|
|
110
|
-
else os.getenv("WIALON_TOKEN")
|
|
105
|
+
diagnose=debug or settings.DEBUG
|
|
111
106
|
)
|
|
107
|
+
self._token = token or settings.WIALON_TOKEN
|
|
112
108
|
self._username = None
|
|
113
109
|
self._gis_sid = None
|
|
114
110
|
self._hw_gp_ip = None
|
|
File without changes
|
{python_terminusgps-36.1.2.dist-info → python_terminusgps-36.1.3.dist-info}/licenses/COPYING
RENAMED
|
File without changes
|