wyzeapy 0.5.25__tar.gz → 0.5.26__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.
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/PKG-INFO +2 -1
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/pyproject.toml +1 -1
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/base_service.py +2 -2
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/LICENSES/GPL-3.0-only.txt +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/__init__.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/const.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/crypto.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/exceptions.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/payload_factory.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/__init__.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/bulb_service.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/camera_service.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/hms_service.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/lock_service.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/sensor_service.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/switch_service.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/thermostat_service.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/update_manager.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/wall_switch_service.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/types.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/utils.py +0 -0
- {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/wyze_auth_lib.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wyzeapy
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.26
|
|
4
4
|
Summary: A library for interacting with Wyze devices
|
|
5
5
|
License: GPL-3.0-only
|
|
6
6
|
Author: Katie Mulliken
|
|
@@ -10,6 +10,7 @@ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
14
|
Requires-Dist: aiodns (>=3.2.0,<4.0.0)
|
|
14
15
|
Requires-Dist: aiohttp (>=3.10.8,<4.0.0)
|
|
15
16
|
Requires-Dist: pycryptodome (>=3.21.0,<4.0.0)
|
|
@@ -592,7 +592,7 @@ class BaseService:
|
|
|
592
592
|
|
|
593
593
|
url_path = "/openapi/lock/v1/control"
|
|
594
594
|
|
|
595
|
-
device_uuid = device.mac.split(".")[
|
|
595
|
+
device_uuid = device.mac.split(".")[-1]
|
|
596
596
|
|
|
597
597
|
payload = {
|
|
598
598
|
"uuid": device_uuid,
|
|
@@ -611,7 +611,7 @@ class BaseService:
|
|
|
611
611
|
|
|
612
612
|
url_path = "/openapi/lock/v1/info"
|
|
613
613
|
|
|
614
|
-
device_uuid = device.mac.split(".")[
|
|
614
|
+
device_uuid = device.mac.split(".")[-1]
|
|
615
615
|
|
|
616
616
|
payload = {
|
|
617
617
|
"uuid": device_uuid,
|
|
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
|