weheat 2024.7.8__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 weheat might be problematic. Click here for more details.
- weheat/__init__.py +42 -0
- weheat/abstractions/__init__.py +3 -0
- weheat/abstractions/auth.py +34 -0
- weheat/abstractions/discovery.py +47 -0
- weheat/abstractions/heat_pump.py +150 -0
- weheat/api/__init__.py +6 -0
- weheat/api/energy_log_api.py +228 -0
- weheat/api/heat_pump_api.py +530 -0
- weheat/api/heat_pump_log_api.py +553 -0
- weheat/api_client.py +766 -0
- weheat/api_response.py +25 -0
- weheat/configuration.py +442 -0
- weheat/exceptions.py +166 -0
- weheat/models/__init__.py +22 -0
- weheat/models/boiler_type.py +42 -0
- weheat/models/device_state.py +46 -0
- weheat/models/dhw_type.py +41 -0
- weheat/models/energy_view_dto.py +118 -0
- weheat/models/heat_pump_log_view_dto.py +768 -0
- weheat/models/heat_pump_model.py +41 -0
- weheat/models/heat_pump_status_enum.py +46 -0
- weheat/models/heat_pump_type.py +42 -0
- weheat/models/raw_heat_pump_log_dto.py +513 -0
- weheat/models/read_all_heat_pump_dto.py +121 -0
- weheat/models/read_heat_pump_dto.py +114 -0
- weheat/py.typed +0 -0
- weheat/rest.py +327 -0
- weheat-2024.7.8.dist-info/METADATA +105 -0
- weheat-2024.7.8.dist-info/RECORD +31 -0
- weheat-2024.7.8.dist-info/WHEEL +5 -0
- weheat-2024.7.8.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
weheat/__init__.py,sha256=vZpdNWQdQDpleRSGL1Y9e90lgROA_Eh0IWEsp8rZlYU,1312
|
|
2
|
+
weheat/api_client.py,sha256=QNUo_W5MMBajpjN2sWFUIRhOszAE93KECNxdvhVns84,29516
|
|
3
|
+
weheat/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
|
4
|
+
weheat/configuration.py,sha256=FerGmYva4hSzbtPV8hASrSF4Fd1zRIFezPzBhHQHV5c,14562
|
|
5
|
+
weheat/exceptions.py,sha256=P4L9gEdzeIo8YMAh27FeP_-55lEgV1TUFTKq4dmqTVQ,5365
|
|
6
|
+
weheat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
weheat/rest.py,sha256=hLgJ0CYAR1Dr_LppodDNNC_chj5hEQUmzDmbxvID1ao,13808
|
|
8
|
+
weheat/abstractions/__init__.py,sha256=cRdA_kyTIooo39I13_mqShSfZMqdzNGHbmrnITqgx6A,161
|
|
9
|
+
weheat/abstractions/auth.py,sha256=VCAxJ4OIj7bsYttqJl5-juU0VUlSd3xPu7kUjtHZr3U,979
|
|
10
|
+
weheat/abstractions/discovery.py,sha256=fb86CB0SJMhGCg7573GlI-E1lYxcx-TLJdanbAMtuUE,1598
|
|
11
|
+
weheat/abstractions/heat_pump.py,sha256=kzi6B6oQ8hFYzxMBZqVwbFRY16vR9OFnlWPErBQ_8uA,4649
|
|
12
|
+
weheat/api/__init__.py,sha256=CNY0PYXwKCKT9xlI0z574W6dMOAqQMjiZHuubLdleX8,203
|
|
13
|
+
weheat/api/energy_log_api.py,sha256=yIIqd-C_xHSM_1eNoj2i04IDkJkzU0-a9iFGDSd2zLo,11374
|
|
14
|
+
weheat/api/heat_pump_api.py,sha256=FAf7jxosIAginCom-aUuFdj7jZupv8134OI6rpkdK80,24368
|
|
15
|
+
weheat/api/heat_pump_log_api.py,sha256=Xt4pkXOT1x7dsJse00iXpCMQTDuLzhQrMgL_XK3DzDo,28602
|
|
16
|
+
weheat/models/__init__.py,sha256=OrBvAJHJbH4ui9BGo6-v0Wdgi-gkdnqp4bRnaE0vnoI,678
|
|
17
|
+
weheat/models/boiler_type.py,sha256=jZF4sXhR7SEhj3bEfvmeH48l1APu_gtSlpQUj45vP7o,906
|
|
18
|
+
weheat/models/device_state.py,sha256=Di_i-8IOWQaK25eYGNsgXv1OZh9s8RAH-6vcdacAObo,1035
|
|
19
|
+
weheat/models/dhw_type.py,sha256=IamPcF02M_BDadVxfD7poh1C00mPXTJ9Wbjwh6TUfV8,817
|
|
20
|
+
weheat/models/energy_view_dto.py,sha256=jLk6W-pXiBiHAa98G0h8Df-WZbGN_Zh19OoSF09NC5k,8747
|
|
21
|
+
weheat/models/heat_pump_log_view_dto.py,sha256=spe_tG39NM_FzFEvhBk4Gad0Er-Xac5UT9_icx2EagU,63788
|
|
22
|
+
weheat/models/heat_pump_model.py,sha256=og3z_tQvtKHzNd0V6mmfQjWmEmmzpaq7ez5t8ysOKas,841
|
|
23
|
+
weheat/models/heat_pump_status_enum.py,sha256=rv8xkSvnbegS6EQMNL-tayA_-4sr1rIkS6Hoq3yoHCA,1017
|
|
24
|
+
weheat/models/heat_pump_type.py,sha256=Kft4cXvenK27miFDcsBOHv7p2svAW18iptT_GUcXWeU,818
|
|
25
|
+
weheat/models/raw_heat_pump_log_dto.py,sha256=vNn1u8_jYAIV9miBK3Qvq0j-U5OYv56dRU2085fLvcI,34385
|
|
26
|
+
weheat/models/read_all_heat_pump_dto.py,sha256=PDaWb-2qSzAnMoIsNceHavT1ybIZa3-lva3zJZA2BzU,5088
|
|
27
|
+
weheat/models/read_heat_pump_dto.py,sha256=ufDbcHxtB8o2jmk00bMP_xol3uCdoTOqiHS6UUzRic4,4514
|
|
28
|
+
weheat-2024.7.8.dist-info/METADATA,sha256=MEa2Ww6imyel6HaTZmeqmx3KXXa8tgPm7_8oqe2YMJk,3865
|
|
29
|
+
weheat-2024.7.8.dist-info/WHEEL,sha256=pd56usn78UTvq1xeX_ZwFhoK6jE5u5wzu4TTBIG5cQ0,91
|
|
30
|
+
weheat-2024.7.8.dist-info/top_level.txt,sha256=hLzdyvGZ9rs4AqK7U48mdHx_-FcP5sDuTSleDUvGAZw,7
|
|
31
|
+
weheat-2024.7.8.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
weheat
|