aioamazondevices 6.2.2__py3-none-any.whl → 6.2.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.

Potentially problematic release.


This version of aioamazondevices might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  """aioamazondevices library."""
2
2
 
3
- __version__ = "6.2.2"
3
+ __version__ = "6.2.3"
4
4
 
5
5
 
6
6
  from .api import AmazonDevice, AmazonEchoApi
aioamazondevices/api.py CHANGED
@@ -639,7 +639,7 @@ class AmazonEchoApi:
639
639
  scale=None,
640
640
  )
641
641
  for feature in endpoint.get("features", {}):
642
- first_property = (feature.get("properties") or [None])[0] or {}
642
+ feature_property = (feature.get("properties") or [{}])[0]
643
643
  if (sensor := SENSORS.get(feature["name"])) is None:
644
644
  # Skip sensors that are not in the predefined list
645
645
  continue
@@ -647,17 +647,21 @@ class AmazonEchoApi:
647
647
  if not (name := sensor["name"]):
648
648
  raise CannotRetrieveData("Unable to read sensor template")
649
649
 
650
- value = first_property[sensor["key"]]
651
- scale = value["scale"] if sensor["scale"] else None
652
- error = bool(sensor.get("error"))
653
- if subkey := sensor["subkey"]:
654
- value = value[subkey]
655
- device_sensors[name] = AmazonDeviceSensor(
656
- name,
657
- value,
658
- error,
659
- scale,
660
- )
650
+ for feature_property in feature.get("properties"):
651
+ if sensor["name"] != feature_property.get("name"):
652
+ continue
653
+
654
+ value = feature_property[sensor["key"]]
655
+ scale = value["scale"] if sensor["scale"] else None
656
+ error = bool(sensor.get("error"))
657
+ if subkey := sensor["subkey"]:
658
+ value = value[subkey]
659
+ device_sensors[name] = AmazonDeviceSensor(
660
+ name,
661
+ value,
662
+ error,
663
+ scale,
664
+ )
661
665
 
662
666
  return device_sensors
663
667
 
aioamazondevices/const.py CHANGED
@@ -77,7 +77,7 @@ SENSORS: dict[str, dict[str, str | None]] = {
77
77
  "scale": "scale",
78
78
  },
79
79
  "motionSensor": {
80
- "name": "motion",
80
+ "name": "detectionState",
81
81
  "key": "detectionStateValue",
82
82
  "subkey": None,
83
83
  "scale": None,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: aioamazondevices
3
- Version: 6.2.2
3
+ Version: 6.2.3
4
4
  Summary: Python library to control Amazon devices
5
5
  License: Apache-2.0
6
6
  Author: Simone Chemelli
@@ -0,0 +1,12 @@
1
+ aioamazondevices/__init__.py,sha256=ceEDIjO_0-izP3c2qIBoA5HFyOQUZy2qAvBkrGhPZzU,276
2
+ aioamazondevices/api.py,sha256=-cwcBemxqHrek0TF5N_AFKizdx9KdhETIA8G-XP625I,42347
3
+ aioamazondevices/const.py,sha256=OMGxpG6kRMN6WJgq-nQ8skhRtSgkm_hXtz9my8hBwbE,11314
4
+ aioamazondevices/exceptions.py,sha256=gRYrxNAJnrV6uRuMx5e76VMvtNKyceXd09q84pDBBrI,638
5
+ aioamazondevices/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ aioamazondevices/query.py,sha256=AGHHzefzfYzB7RLWPtlFxYc_rpUZdoeApsU2jYz3urQ,2053
7
+ aioamazondevices/sounds.py,sha256=CXMDk-KoKVFxBdVAw3MeOClqgpzcVDxvQhFOJp7qX-Y,1896
8
+ aioamazondevices/utils.py,sha256=RzuKRhnq_8ymCoJMoQJ2vBYyuew06RSWpqQWmqdNczE,2019
9
+ aioamazondevices-6.2.3.dist-info/LICENSE,sha256=sS48k5sp9bFV-NSHDfAJuTZZ_-AP9ZDqUzQ9sffGlsg,11346
10
+ aioamazondevices-6.2.3.dist-info/METADATA,sha256=lASZmiHEn_QhxelH0j3SvmN1x3J9unoUD4Rmbo_aucs,7623
11
+ aioamazondevices-6.2.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
12
+ aioamazondevices-6.2.3.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- aioamazondevices/__init__.py,sha256=l0tkEG98GzFalrlMdpBFSWhd8fhDSGHylEp0K3q8hPU,276
2
- aioamazondevices/api.py,sha256=bZi4BVRa5BV5AZV3rWrzsu-viVzOHtlKbINQUNaPYVA,42147
3
- aioamazondevices/const.py,sha256=38dhNRpwEJf0FgFQGjt3ONhLdQxjiNrnlcrmQ1AY8oU,11306
4
- aioamazondevices/exceptions.py,sha256=gRYrxNAJnrV6uRuMx5e76VMvtNKyceXd09q84pDBBrI,638
5
- aioamazondevices/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- aioamazondevices/query.py,sha256=AGHHzefzfYzB7RLWPtlFxYc_rpUZdoeApsU2jYz3urQ,2053
7
- aioamazondevices/sounds.py,sha256=CXMDk-KoKVFxBdVAw3MeOClqgpzcVDxvQhFOJp7qX-Y,1896
8
- aioamazondevices/utils.py,sha256=RzuKRhnq_8ymCoJMoQJ2vBYyuew06RSWpqQWmqdNczE,2019
9
- aioamazondevices-6.2.2.dist-info/LICENSE,sha256=sS48k5sp9bFV-NSHDfAJuTZZ_-AP9ZDqUzQ9sffGlsg,11346
10
- aioamazondevices-6.2.2.dist-info/METADATA,sha256=I-3gSjc6vAZkmqU3KStRg7d-p268Xl4haeDBEeM42iQ,7623
11
- aioamazondevices-6.2.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
12
- aioamazondevices-6.2.2.dist-info/RECORD,,