This commit is contained in:
Andre Basche 2023-03-08 22:18:44 +01:00
parent c4d21be388
commit f52f84711f
3 changed files with 7 additions and 6 deletions

View File

View File

@ -23,7 +23,7 @@ class HonDevice:
if "." in item:
result = self.data
for key in item.split("."):
if all([k in "0123456789" for k in key]):
if all([k in "0123456789" for k in key]) and type(result) is list:
result = result[int(key)]
else:
result = result[key]
@ -31,15 +31,16 @@ class HonDevice:
else:
if item in self.data:
return self.data[item]
return self.attributes["parameters"].get(item, self.appliance[item])
if item in self.attributes["parameters"]:
return self.attributes["parameters"].get(item)
return self.appliance[item]
def get(self, item, default=None):
try:
return self[item]
except KeyError | IndexError:
except (KeyError, IndexError):
return default
@property
def appliance_model_id(self):
return self._appliance.get("applianceModelId")
@ -127,7 +128,7 @@ class HonDevice:
@property
def data(self):
result = {"attributes": self.attributes, "appliance": self.appliance, "statistics": self.statistics,
"commands": self.parameters}
**self.parameters}
if self._extra:
return result | self._extra.Appliance(result).get()
return result

View File

@ -7,7 +7,7 @@ with open("README.md", "r") as f:
setup(
name="pyhOn",
version="0.3.1",
version="0.3.2",
author="Andre Basche",
description="Control hOn devices with python",
long_description=long_description,