weheat 2024.9.10rc1__tar.gz → 2024.9.10rc3__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.9.10rc1/weheat.egg-info → weheat-2024.9.10rc3}/PKG-INFO +1 -1
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/pyproject.toml +1 -1
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/setup.py +1 -1
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/abstractions/heat_pump.py +1 -2
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3/weheat.egg-info}/PKG-INFO +1 -1
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/LICENSE +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/README.md +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/setup.cfg +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/__init__.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/abstractions/__init__.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/abstractions/auth.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/abstractions/discovery.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/abstractions/user.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/api/__init__.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/api/energy_log_api.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/api/heat_pump_api.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/api/heat_pump_log_api.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/api/user_api.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/api_client.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/api_response.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/configuration.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/exceptions.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/__init__.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/boiler_type.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/device_state.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/dhw_type.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/energy_view_dto.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/heat_pump_log_view_dto.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/heat_pump_model.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/heat_pump_status_enum.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/heat_pump_type.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/raw_heat_pump_log_dto.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/read_all_heat_pump_dto.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/read_heat_pump_dto.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/read_user_dto.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/models/role.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/py.typed +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat/rest.py +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat.egg-info/SOURCES.txt +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat.egg-info/dependency_links.txt +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/weheat.egg-info/requires.txt +0 -0
- {weheat-2024.9.10rc1 → weheat-2024.9.10rc3}/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.09.
|
|
24
|
+
VERSION = "2024.09.10rc3"
|
|
25
25
|
PYTHON_REQUIRES = ">=3.7"
|
|
26
26
|
REQUIRES = [
|
|
27
27
|
"urllib3 >= 1.25.3, < 2.1.0",
|
|
@@ -5,7 +5,7 @@ from weheat.api.heat_pump_log_api import HeatPumpLogApi
|
|
|
5
5
|
from weheat.api.energy_log_api import EnergyLogApi
|
|
6
6
|
from datetime import datetime, timedelta
|
|
7
7
|
|
|
8
|
-
START_DATE = datetime(2024, 1,
|
|
8
|
+
START_DATE = datetime(2024, 1, 1, 0, 0, 0)
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class HeatPump:
|
|
@@ -55,7 +55,6 @@ class HeatPump:
|
|
|
55
55
|
self._energy_consumption += year.total_ein_heating_defrost
|
|
56
56
|
self._energy_consumption += year.total_ein_dhw
|
|
57
57
|
self._energy_consumption += year.total_ein_dhw_defrost
|
|
58
|
-
print(f'Summed for {self._uuid}: {self._energy_consumption}')
|
|
59
58
|
|
|
60
59
|
|
|
61
60
|
|
|
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
|