emhass 0.13.0__py3-none-any.whl → 0.13.2__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.
- emhass/__init__.py +0 -0
- emhass/command_line.py +1891 -0
- emhass/data/associations.csv +71 -0
- emhass/data/cec_inverters.pbz2 +0 -0
- emhass/data/cec_modules.pbz2 +0 -0
- emhass/data/config_defaults.json +128 -0
- emhass/forecast.py +1768 -0
- emhass/img/emhass_icon.png +0 -0
- emhass/machine_learning_forecaster.py +386 -0
- emhass/machine_learning_regressor.py +245 -0
- emhass/optimization.py +1548 -0
- emhass/retrieve_hass.py +712 -0
- emhass/static/advanced.html +36 -0
- emhass/static/basic.html +14 -0
- emhass/static/configuration_list.html +48 -0
- emhass/static/configuration_script.js +888 -0
- emhass/static/data/param_definitions.json +482 -0
- emhass/static/img/emhass_icon.png +0 -0
- emhass/static/img/emhass_logo_short.svg +544 -0
- emhass/static/img/feather-sprite.svg +1 -0
- emhass/static/script.js +443 -0
- emhass/static/style.css +1373 -0
- emhass/templates/configuration.html +75 -0
- emhass/templates/index.html +77 -0
- emhass/templates/template.html +5 -0
- emhass/utils.py +1764 -0
- emhass/web_server.py +753 -0
- {emhass-0.13.0.dist-info → emhass-0.13.2.dist-info}/METADATA +13 -4
- emhass-0.13.2.dist-info/RECORD +32 -0
- emhass-0.13.0.dist-info/RECORD +0 -5
- {emhass-0.13.0.dist-info → emhass-0.13.2.dist-info}/WHEEL +0 -0
- {emhass-0.13.0.dist-info → emhass-0.13.2.dist-info}/entry_points.txt +0 -0
- {emhass-0.13.0.dist-info → emhass-0.13.2.dist-info}/licenses/LICENSE +0 -0
@@ -1,18 +1,25 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: emhass
|
3
|
-
Version: 0.13.
|
3
|
+
Version: 0.13.2
|
4
4
|
Summary: An Energy Management System for Home Assistant
|
5
5
|
Project-URL: Homepage, https://github.com/davidusb-geek/emhass
|
6
|
+
Project-URL: Source, https://github.com/davidusb-geek/emhass
|
7
|
+
Project-URL: Issues, https://github.com/davidusb-geek/emhass/issues
|
8
|
+
Project-URL: Documentation, https://emhass.readthedocs.io/en/latest/
|
9
|
+
Project-URL: Community, https://community.home-assistant.io/t/emhass-an-energy-management-for-home-assistant
|
6
10
|
Author-email: David HERNANDEZ <davidusb@gmail.com>
|
7
|
-
License
|
11
|
+
License: MIT
|
8
12
|
License-File: LICENSE
|
9
13
|
Keywords: energy,hass,management,optimization
|
10
14
|
Classifier: Development Status :: 5 - Production/Stable
|
11
15
|
Classifier: Intended Audience :: Developers
|
12
16
|
Classifier: License :: OSI Approved :: MIT License
|
13
17
|
Classifier: Operating System :: OS Independent
|
18
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
14
21
|
Classifier: Programming Language :: Python :: 3.12
|
15
|
-
Classifier: Topic :: Software Development ::
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
16
23
|
Requires-Python: <3.13,>=3.10
|
17
24
|
Requires-Dist: flask>=3.1.0
|
18
25
|
Requires-Dist: gunicorn>=23.0.0
|
@@ -30,6 +37,8 @@ Requires-Dist: scipy>=1.15.0
|
|
30
37
|
Requires-Dist: skforecast>=0.14.0
|
31
38
|
Requires-Dist: tables>=3.10.0
|
32
39
|
Requires-Dist: waitress>=3.0.2
|
40
|
+
Provides-Extra: dev
|
41
|
+
Requires-Dist: ruff; extra == 'dev'
|
33
42
|
Provides-Extra: docs
|
34
43
|
Requires-Dist: myst-parser; extra == 'docs'
|
35
44
|
Requires-Dist: sphinx; extra == 'docs'
|
@@ -456,7 +465,7 @@ Below you can find a list of the variables resulting from EMHASS computation, sh
|
|
456
465
|
| P_grid_pos | Forecasted power imported from the grid (Watts). This indicates the amount of energy you are expected to draw from the grid when your solar production is insufficient to meet your needs or it is advantageous to consume from the grid. | - |
|
457
466
|
| P_grid_neg | Forecasted power exported to the grid (Watts). This indicates the amount of excess solar energy you are expected to send back to the grid during the forecast period. | - |
|
458
467
|
| P_batt | Forecasted (dis)charge power load (Watts) for the battery (if installed). If negative it indicates the battery is charging, if positive that the battery is discharging. | sensor.p_batt_forecast |
|
459
|
-
| P_grid | Forecasted net power flow between your home and the grid (Watts). This is calculated as P_grid_pos
|
468
|
+
| P_grid | Forecasted net power flow between your home and the grid (Watts). This is calculated as P_grid_pos + P_grid_neg. A positive value indicates net import, while a negative value indicates net export. | sensor.p_grid_forecast |
|
460
469
|
| SOC_opt | Forecasted battery optimized Status Of Charge (SOC) percentage level | sensor.soc_batt_forecast |
|
461
470
|
| unit_load_cost | Forecasted cost per unit of energy you pay to the grid (typically "Currency"/kWh). This helps you understand the expected energy cost during the forecast period. | sensor.unit_load_cost |
|
462
471
|
| unit_prod_price | Forecasted price you receive for selling excess solar energy back to the grid (typically "Currency"/kWh). This helps you understand the potential income from your solar production. | sensor.unit_prod_price |
|
@@ -0,0 +1,32 @@
|
|
1
|
+
emhass/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
emhass/command_line.py,sha256=sJIpI11BAJi1Ao7ck4B_zbr6dD1V7VY3S6UmxqRFRcE,75857
|
3
|
+
emhass/forecast.py,sha256=lEBKnzJSxpbAYQ-OiW_qnKTTj8cl95yk4Ggkyk_rpyo,83892
|
4
|
+
emhass/machine_learning_forecaster.py,sha256=zr5BczdsvoUCKpxV3XL4Ts-IWcS6zuhXYdeQwBD5gE8,16282
|
5
|
+
emhass/machine_learning_regressor.py,sha256=Ih1q-vUWHWbGFxv9F12omwgyMRp-iaMU_m-yploVbyU,9532
|
6
|
+
emhass/optimization.py,sha256=_uKG7QKVtdpbv4U4Y_R9xLdWR17lB4YQWAuuONqk8ng,67947
|
7
|
+
emhass/retrieve_hass.py,sha256=KZQ6esRYq0Typp7yyZUwEdYKHFPqDmnsuVxuDhBdWc0,29444
|
8
|
+
emhass/utils.py,sha256=UysLZJ-TzsWvkNyihXkPwcf_qGUpxN_HfnAVcb0KWkY,73889
|
9
|
+
emhass/web_server.py,sha256=xOgM3lVwXAN6Ctoi5in21ImeSvx6-wDNtgYZqLQN01I,29153
|
10
|
+
emhass/data/associations.csv,sha256=pFbL3LosAhWc4SmHWZGQa-2ykwmFAqhV1nmd4hTYNKU,4144
|
11
|
+
emhass/data/cec_inverters.pbz2,sha256=ca-dO6sv38_FI2w_6fkAIzcrEqzFBkG8MHKNGbCZPow,189400
|
12
|
+
emhass/data/cec_modules.pbz2,sha256=Y639TNqhaIxh2Ec7AUPxy8k4lQugY5rURVVVexj0fMU,1885444
|
13
|
+
emhass/data/config_defaults.json,sha256=J1hgdA6D9mliPABbSaGqdO4rG3Xr5-9nI-jIWqrRylA,3128
|
14
|
+
emhass/img/emhass_icon.png,sha256=Kyx6hXQ1huJLHAq2CaBfjYXR25H9j99PSWHI0lShkaQ,19030
|
15
|
+
emhass/static/advanced.html,sha256=gAhsd14elDwh1Ts4lf9wn_ZkczzzObq5qOimi_la3Ic,2067
|
16
|
+
emhass/static/basic.html,sha256=ro2WwWgJyoUhqx_nJFzKCEG8FA8863vSHLmrjGYcEgs,677
|
17
|
+
emhass/static/configuration_list.html,sha256=i4v83RVduWjdjkjPhA74e-j8NSUpFzqMGU3ixOaJLfI,1740
|
18
|
+
emhass/static/configuration_script.js,sha256=Ek0Ry1Ae6ZGMl28mYxno6bPTwY4rK7AHcL58C6T6qUo,31727
|
19
|
+
emhass/static/script.js,sha256=-JYS8fHjchrMi1hYYKMd9p7vZvPcnYiY8NNuRC99fJM,16323
|
20
|
+
emhass/static/style.css,sha256=a_8YlGubn1zoF5RTLJ_Qkrb8tAjUY9p7oAKxhCvJY2s,19288
|
21
|
+
emhass/static/data/param_definitions.json,sha256=GAXsnpdg9F5zbl7McdUoiiAfjwjRgQ24sYhovEv9sEI,21692
|
22
|
+
emhass/static/img/emhass_icon.png,sha256=Kyx6hXQ1huJLHAq2CaBfjYXR25H9j99PSWHI0lShkaQ,19030
|
23
|
+
emhass/static/img/emhass_logo_short.svg,sha256=yzMcqtBRCV8rH84-MwnigZh45_f9Eoqwho9P8nCodJA,66736
|
24
|
+
emhass/static/img/feather-sprite.svg,sha256=VHjMJQg88wXa9CaeYrKGhNtyK0xdd47zCqwSIa-hxo8,60319
|
25
|
+
emhass/templates/configuration.html,sha256=M-_L__juYzcdGDaryGrz6LG2mguW2f1Sx6k01YfG7Dc,2885
|
26
|
+
emhass/templates/index.html,sha256=1V44c0yyliu_z8inl0K-zmmmkhQumH3Bqk8Jj1YJPzY,3076
|
27
|
+
emhass/templates/template.html,sha256=TkGgMecQEbFUZA4ymPwMUzNjKHsENvCgroUWbPt7G4Y,158
|
28
|
+
emhass-0.13.2.dist-info/METADATA,sha256=iJQCKI1fRrYBS4VFqomje9VAXF_-tZ6Fy09kCa2MFno,51493
|
29
|
+
emhass-0.13.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
30
|
+
emhass-0.13.2.dist-info/entry_points.txt,sha256=6Bp1NFOGNv_fSTxYl1ke3K3h3aqAcBxI-bgq5yq-i1M,52
|
31
|
+
emhass-0.13.2.dist-info/licenses/LICENSE,sha256=1X3-S1yvOCBDBeox1aK3dq00m7dA8NDtcPrpKPISzbE,1077
|
32
|
+
emhass-0.13.2.dist-info/RECORD,,
|
emhass-0.13.0.dist-info/RECORD
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
emhass-0.13.0.dist-info/METADATA,sha256=KfOdpO3P_mgs_TgVZgO-5Btt764l58UX64c5URpClG0,50967
|
2
|
-
emhass-0.13.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
3
|
-
emhass-0.13.0.dist-info/entry_points.txt,sha256=6Bp1NFOGNv_fSTxYl1ke3K3h3aqAcBxI-bgq5yq-i1M,52
|
4
|
-
emhass-0.13.0.dist-info/licenses/LICENSE,sha256=1X3-S1yvOCBDBeox1aK3dq00m7dA8NDtcPrpKPISzbE,1077
|
5
|
-
emhass-0.13.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|