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.
Files changed (22) hide show
  1. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/PKG-INFO +2 -1
  2. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/pyproject.toml +1 -1
  3. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/base_service.py +2 -2
  4. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/LICENSES/GPL-3.0-only.txt +0 -0
  5. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/__init__.py +0 -0
  6. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/const.py +0 -0
  7. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/crypto.py +0 -0
  8. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/exceptions.py +0 -0
  9. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/payload_factory.py +0 -0
  10. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/__init__.py +0 -0
  11. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/bulb_service.py +0 -0
  12. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/camera_service.py +0 -0
  13. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/hms_service.py +0 -0
  14. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/lock_service.py +0 -0
  15. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/sensor_service.py +0 -0
  16. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/switch_service.py +0 -0
  17. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/thermostat_service.py +0 -0
  18. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/update_manager.py +0 -0
  19. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/services/wall_switch_service.py +0 -0
  20. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/types.py +0 -0
  21. {wyzeapy-0.5.25 → wyzeapy-0.5.26}/src/wyzeapy/utils.py +0 -0
  22. {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.25
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)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "wyzeapy"
3
- version = "0.5.25"
3
+ version = "0.5.26"
4
4
  description = "A library for interacting with Wyze devices"
5
5
  authors = ["Katie Mulliken <katie@mulliken.net>"]
6
6
  license = "GPL-3.0-only"
@@ -592,7 +592,7 @@ class BaseService:
592
592
 
593
593
  url_path = "/openapi/lock/v1/control"
594
594
 
595
- device_uuid = device.mac.split(".")[2]
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(".")[2]
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