pycloudedge 0.1.5.dev0__tar.gz → 0.1.6.dev0__tar.gz
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.
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/PKG-INFO +1 -1
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/_version.py +3 -3
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/client.py +7 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/pycloudedge.egg-info/PKG-INFO +1 -1
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/.env.example +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/.gitignore +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/LICENSE +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/MANIFEST.in +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/README.md +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/__init__.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/cli.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/constants.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/exceptions.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/iot_parameters.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/logging_config.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/mqtt.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/utils.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/cloudedge/validators.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/examples/README.md +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/examples/basic_example.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/examples/device_control.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/examples/network_ping_status.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/pycloudedge.egg-info/SOURCES.txt +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/pycloudedge.egg-info/dependency_links.txt +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/pycloudedge.egg-info/entry_points.txt +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/pycloudedge.egg-info/requires.txt +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/pycloudedge.egg-info/top_level.txt +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/pyproject.toml +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/requirements-dev.txt +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/requirements.txt +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/setup.cfg +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/setup.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/tests/test_basic.py +0 -0
- {pycloudedge-0.1.5.dev0 → pycloudedge-0.1.6.dev0}/tests/test_improvements.py +0 -0
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.1.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 1,
|
|
31
|
+
__version__ = version = '0.1.6.dev0'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 1, 6, 'dev0')
|
|
33
33
|
|
|
34
|
-
__commit_id__ = commit_id = '
|
|
34
|
+
__commit_id__ = commit_id = 'g782ac8af8'
|
|
@@ -562,6 +562,13 @@ class CloudEdgeClient:
|
|
|
562
562
|
self.session_data = self._load_session_cache()
|
|
563
563
|
if self.session_data:
|
|
564
564
|
self._log("Using cached session")
|
|
565
|
+
# Fetch MQTT config if not already present in the cached session
|
|
566
|
+
if not self.session_data.get("mqtt"):
|
|
567
|
+
try:
|
|
568
|
+
self._fetch_iot_config()
|
|
569
|
+
self._save_session_cache(self.session_data)
|
|
570
|
+
except Exception as exc:
|
|
571
|
+
self._log(f"IoT config fetch failed (non-fatal): {exc}")
|
|
565
572
|
return True
|
|
566
573
|
|
|
567
574
|
self._log("Performing CloudEdge login...")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|