python-tado 0.18.9__tar.gz → 0.18.10__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.
- {python_tado-0.18.9/python_tado.egg-info → python_tado-0.18.10}/PKG-INFO +3 -2
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/interface/api/hops_tado.py +1 -1
- {python_tado-0.18.9 → python_tado-0.18.10}/pyproject.toml +1 -1
- {python_tado-0.18.9 → python_tado-0.18.10/python_tado.egg-info}/PKG-INFO +3 -2
- {python_tado-0.18.9 → python_tado-0.18.10}/AUTHORS +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/LICENSE +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/__init__.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/__main__.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/const.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/exceptions.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/http.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/interface/__init__.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/interface/api/__init__.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/interface/api/my_tado.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/interface/interface.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/logger.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/zone/__init__.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/zone/hops_zone.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/PyTado/zone/my_zone.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/README.md +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/python_tado.egg-info/SOURCES.txt +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/python_tado.egg-info/dependency_links.txt +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/python_tado.egg-info/entry_points.txt +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/python_tado.egg-info/not-zip-safe +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/python_tado.egg-info/requires.txt +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/python_tado.egg-info/top_level.txt +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/setup.cfg +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/tests/test_hops_zone.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/tests/test_http.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/tests/test_my_tado.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/tests/test_my_zone.py +0 -0
- {python_tado-0.18.9 → python_tado-0.18.10}/tests/test_tado_interface.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: python-tado
|
|
3
|
-
Version: 0.18.
|
|
3
|
+
Version: 0.18.10
|
|
4
4
|
Summary: PyTado from chrism0dwk, modfied by w.malgadey, diplix, michaelarnauts, LenhartStephan, splifter, syssi, andersonshatch, Yippy, p0thi, Coffee2CodeNL, chiefdragon, FilBr, nikilase, albertomontesg, Moritz-Schmidt, palazzem
|
|
5
5
|
Author-email: Chris Jewell <chrism0dwk@gmail.com>, "w.malgadey" <w.malgadey@gmail.com>, FilBr <filippo.barba@protonmail.com>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -707,6 +707,7 @@ Requires-Dist: pytest; extra == "dev"
|
|
|
707
707
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
708
708
|
Provides-Extra: all
|
|
709
709
|
Requires-Dist: python-tado[dev]; extra == "all"
|
|
710
|
+
Dynamic: license-file
|
|
710
711
|
|
|
711
712
|
# PyTado -- Pythonize your central heating
|
|
712
713
|
|
|
@@ -62,7 +62,7 @@ class TadoX(Tado):
|
|
|
62
62
|
for device in devices:
|
|
63
63
|
request = TadoXRequest()
|
|
64
64
|
request.domain = Domain.DEVICES
|
|
65
|
-
request.device = device["
|
|
65
|
+
request.device = device["serialNumber"]
|
|
66
66
|
device.update(self._http.request(request))
|
|
67
67
|
|
|
68
68
|
if "otherDevices" in rooms_and_devices:
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-tado"
|
|
7
|
-
version = "0.18.
|
|
7
|
+
version = "0.18.10"
|
|
8
8
|
description = "PyTado from chrism0dwk, modfied by w.malgadey, diplix, michaelarnauts, LenhartStephan, splifter, syssi, andersonshatch, Yippy, p0thi, Coffee2CodeNL, chiefdragon, FilBr, nikilase, albertomontesg, Moritz-Schmidt, palazzem"
|
|
9
9
|
authors = [
|
|
10
10
|
{ name = "Chris Jewell", email = "chrism0dwk@gmail.com" },
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: python-tado
|
|
3
|
-
Version: 0.18.
|
|
3
|
+
Version: 0.18.10
|
|
4
4
|
Summary: PyTado from chrism0dwk, modfied by w.malgadey, diplix, michaelarnauts, LenhartStephan, splifter, syssi, andersonshatch, Yippy, p0thi, Coffee2CodeNL, chiefdragon, FilBr, nikilase, albertomontesg, Moritz-Schmidt, palazzem
|
|
5
5
|
Author-email: Chris Jewell <chrism0dwk@gmail.com>, "w.malgadey" <w.malgadey@gmail.com>, FilBr <filippo.barba@protonmail.com>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -707,6 +707,7 @@ Requires-Dist: pytest; extra == "dev"
|
|
|
707
707
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
708
708
|
Provides-Extra: all
|
|
709
709
|
Requires-Dist: python-tado[dev]; extra == "all"
|
|
710
|
+
Dynamic: license-file
|
|
710
711
|
|
|
711
712
|
# PyTado -- Pythonize your central heating
|
|
712
713
|
|
|
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
|