weheat 2024.11.1__tar.gz → 2024.11.2__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.
Potentially problematic release.
This version of weheat might be problematic. Click here for more details.
- {weheat-2024.11.1/weheat.egg-info → weheat-2024.11.2}/PKG-INFO +1 -1
- {weheat-2024.11.1 → weheat-2024.11.2}/pyproject.toml +1 -1
- {weheat-2024.11.1 → weheat-2024.11.2}/setup.py +1 -1
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/abstractions/heat_pump.py +6 -6
- {weheat-2024.11.1 → weheat-2024.11.2/weheat.egg-info}/PKG-INFO +1 -1
- {weheat-2024.11.1 → weheat-2024.11.2}/LICENSE +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/README.md +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/setup.cfg +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/__init__.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/abstractions/__init__.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/abstractions/auth.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/abstractions/discovery.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/abstractions/user.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/api/__init__.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/api/energy_log_api.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/api/heat_pump_api.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/api/heat_pump_log_api.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/api/user_api.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/api_client.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/api_response.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/configuration.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/exceptions.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/__init__.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/boiler_type.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/device_state.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/dhw_type.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/energy_view_dto.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/heat_pump_log_view_dto.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/heat_pump_model.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/heat_pump_status_enum.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/heat_pump_type.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/raw_heat_pump_log_dto.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/read_all_heat_pump_dto.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/read_heat_pump_dto.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/read_user_dto.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/models/role.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/py.typed +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat/rest.py +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat.egg-info/SOURCES.txt +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat.egg-info/dependency_links.txt +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat.egg-info/requires.txt +0 -0
- {weheat-2024.11.1 → weheat-2024.11.2}/weheat.egg-info/top_level.txt +0 -0
|
@@ -21,7 +21,7 @@ from setuptools import setup, find_packages # noqa: H301
|
|
|
21
21
|
# prerequisite: setuptools
|
|
22
22
|
# http://pypi.python.org/pypi/setuptools
|
|
23
23
|
NAME = "weheat"
|
|
24
|
-
VERSION = "2024.11.
|
|
24
|
+
VERSION = "2024.11.2"
|
|
25
25
|
PYTHON_REQUIRES = ">=3.7"
|
|
26
26
|
REQUIRES = [
|
|
27
27
|
"urllib3 >= 1.25.3, < 2.1.0",
|
|
@@ -192,27 +192,27 @@ class HeatPump:
|
|
|
192
192
|
return output / input
|
|
193
193
|
|
|
194
194
|
@property
|
|
195
|
-
def
|
|
195
|
+
def indoor_unit_water_pump_state(self):
|
|
196
196
|
"""Decoded water pump state."""
|
|
197
197
|
return self._if_available("control_bridge_status_decoded_water_pump")
|
|
198
198
|
|
|
199
199
|
@property
|
|
200
|
-
def
|
|
201
|
-
"""Decoded
|
|
200
|
+
def indoor_unit_auxiliary_pump_state(self):
|
|
201
|
+
"""Decoded auxiliary pump state."""
|
|
202
202
|
return self._if_available("control_bridge_status_decoded_water_pump2")
|
|
203
203
|
|
|
204
204
|
@property
|
|
205
|
-
def
|
|
205
|
+
def indoor_unit_dhw_valve_or_pump_state(self):
|
|
206
206
|
"""Decoded DHW valve or pump state."""
|
|
207
207
|
return self._if_available("control_bridge_status_decoded_dhw_valve")
|
|
208
208
|
|
|
209
209
|
@property
|
|
210
|
-
def
|
|
210
|
+
def indoor_unit_gas_boiler_state(self):
|
|
211
211
|
"""Decoded gas boiler state."""
|
|
212
212
|
return self._if_available("control_bridge_status_decoded_gas_boiler")
|
|
213
213
|
|
|
214
214
|
@property
|
|
215
|
-
def
|
|
215
|
+
def indoor_unit_electric_heater_state(self):
|
|
216
216
|
"""Decoded electric heater state."""
|
|
217
217
|
return self._if_available("control_bridge_status_decoded_electric_heater")
|
|
218
218
|
|
|
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
|
|
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
|