emhass 0.8.5__tar.gz → 0.9.0__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.
- {emhass-0.8.5 → emhass-0.9.0}/CHANGELOG.md +18 -0
- {emhass-0.8.5/src/emhass.egg-info → emhass-0.9.0}/PKG-INFO +19 -5
- {emhass-0.8.5 → emhass-0.9.0}/README.md +16 -2
- emhass-0.9.0/data/heating_prediction.csv +130 -0
- {emhass-0.8.5 → emhass-0.9.0}/setup.py +3 -3
- emhass-0.9.0/src/emhass/command_line.py +1108 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/forecast.py +114 -45
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/machine_learning_forecaster.py +4 -4
- emhass-0.9.0/src/emhass/machine_learning_regressor.py +290 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/optimization.py +4 -3
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/retrieve_hass.py +235 -103
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/static/advanced.html +3 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/static/script.js +2 -0
- emhass-0.9.0/src/emhass/utils.py +988 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/web_server.py +48 -26
- {emhass-0.8.5 → emhass-0.9.0/src/emhass.egg-info}/PKG-INFO +19 -5
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass.egg-info/SOURCES.txt +3 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass.egg-info/requires.txt +2 -2
- {emhass-0.8.5 → emhass-0.9.0}/tests/test_command_line_utils.py +234 -71
- {emhass-0.8.5 → emhass-0.9.0}/tests/test_forecast.py +77 -49
- {emhass-0.8.5 → emhass-0.9.0}/tests/test_machine_learning_forecaster.py +14 -11
- emhass-0.9.0/tests/test_machine_learning_regressor.py +111 -0
- {emhass-0.8.5 → emhass-0.9.0}/tests/test_optimization.py +27 -19
- {emhass-0.8.5 → emhass-0.9.0}/tests/test_retrieve_hass.py +21 -9
- {emhass-0.8.5 → emhass-0.9.0}/tests/test_utils.py +18 -19
- emhass-0.8.5/src/emhass/command_line.py +0 -675
- emhass-0.8.5/src/emhass/utils.py +0 -688
- {emhass-0.8.5 → emhass-0.9.0}/CODE_OF_CONDUCT.md +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/CONTRIBUTING.md +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/LICENSE +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/MANIFEST.in +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/data_load_cost_forecast.csv +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/data_load_forecast.csv +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/data_prod_price_forecast.csv +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/data_train_load_clustering.pkl +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/data_train_load_forecast.pkl +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/data_weather_forecast.csv +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/opt_res_latest.csv +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/opt_res_perfect_optim_cost.csv +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/opt_res_perfect_optim_profit.csv +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/opt_res_perfect_optim_self-consumption.csv +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/test_df_final.pkl +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/test_response_get_data_get_method.pbz2 +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/test_response_scrapper_get_method.pbz2 +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/test_response_solarforecast_get_method.pbz2 +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/data/test_response_solcast_get_method.pbz2 +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/pyproject.toml +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/setup.cfg +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/__init__.py +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/data/cec_inverters.pbz2 +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/data/cec_modules.pbz2 +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/static/basic.html +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/static/img/emhass_icon.png +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/static/img/emhass_logo_short.svg +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/static/img/feather-sprite.svg +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/static/style.css +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/templates/index.html +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass/templates/template.html +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass.egg-info/dependency_links.txt +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass.egg-info/entry_points.txt +0 -0
- {emhass-0.8.5 → emhass-0.9.0}/src/emhass.egg-info/top_level.txt +0 -0
@@ -1,5 +1,23 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.9.0 - 2024-05-10
|
4
|
+
### Improvement
|
5
|
+
- On this new version we now have a new method to train a regression model using Scikit-Learn methods. This is the contribution of @gieljnssns. Check the dedicated section the documentation to this new feature: [https://emhass.readthedocs.io/en/latest/mlregressor.html](https://emhass.readthedocs.io/en/latest/mlregressor.html)
|
6
|
+
- Again another bunch of nice improvements by @GeoDerp:
|
7
|
+
- Added Dictionary var containing EMHASS paths
|
8
|
+
- MLForcaster error suppression
|
9
|
+
- Add `freq` as runtime parameter
|
10
|
+
- Improved documentation added README buttons
|
11
|
+
- Bumping dependencies:
|
12
|
+
- Bump h5py from 3.10.0 to 3.11.0
|
13
|
+
- Bump myst-parser from 2.0.0 to 3.0.1
|
14
|
+
- Bump skforecast from 0.11.0 to 0.12.0
|
15
|
+
|
16
|
+
## 0.8.6 - 2024-04-07
|
17
|
+
### Fix
|
18
|
+
- Fixed bug from forecast out method related to issue 240
|
19
|
+
- Fix patch for some issues with package file paths
|
20
|
+
|
3
21
|
## 0.8.5 - 2024-04-01
|
4
22
|
### Improvement
|
5
23
|
- Simplified fetch urls to relatives
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: emhass
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.9.0
|
4
4
|
Summary: An Energy Management System for Home Assistant
|
5
5
|
Home-page: https://github.com/davidusb-geek/emhass
|
6
6
|
Author: David HERNANDEZ
|
@@ -24,11 +24,11 @@ Requires-Dist: protobuf>=3.0.0
|
|
24
24
|
Requires-Dist: pytz>=2021.1
|
25
25
|
Requires-Dist: requests>=2.25.1
|
26
26
|
Requires-Dist: beautifulsoup4>=4.9.3
|
27
|
-
Requires-Dist: h5py==3.
|
27
|
+
Requires-Dist: h5py==3.11.0
|
28
28
|
Requires-Dist: pulp>=2.4
|
29
29
|
Requires-Dist: pyyaml>=5.4.1
|
30
30
|
Requires-Dist: tables<=3.9.1
|
31
|
-
Requires-Dist: skforecast==0.
|
31
|
+
Requires-Dist: skforecast==0.12.0
|
32
32
|
Requires-Dist: flask>=2.0.3
|
33
33
|
Requires-Dist: waitress>=2.1.1
|
34
34
|
Requires-Dist: plotly>=5.6.0
|
@@ -63,6 +63,20 @@ Requires-Dist: plotly>=5.6.0
|
|
63
63
|
<img alt="Read the Docs" src="https://img.shields.io/readthedocs/emhass">
|
64
64
|
</a>
|
65
65
|
</p>
|
66
|
+
<div align="center">
|
67
|
+
<a href="https://emhass.readthedocs.io/en/latest/">
|
68
|
+
<img src="https://raw.githubusercontent.com/davidusb-geek/emhass/master/docs/images/Documentation_button.svg" alt="Documentation">
|
69
|
+
</a>
|
70
|
+
<a href="https://community.home-assistant.io/t/emhass-an-energy-management-for-home-assistant/338126">
|
71
|
+
<img src="https://raw.githubusercontent.com/davidusb-geek/emhass/master/docs/images/Community_button.svg" alt="Community">
|
72
|
+
</a>
|
73
|
+
<a href="https://github.com/davidusb-geek/emhass/issues">
|
74
|
+
<img src="https://raw.githubusercontent.com/davidusb-geek/emhass/master/docs/images/Issues_button.svg" alt="Issues">
|
75
|
+
</a>
|
76
|
+
<a href="https://github.com/davidusb-geek/emhass-add-on">
|
77
|
+
<img src="https://raw.githubusercontent.com/davidusb-geek/emhass/master/docs/images/EMHASS_Add_on_button.svg" alt="EMHASS Add-on">
|
78
|
+
</a>
|
79
|
+
</div>
|
66
80
|
<br>
|
67
81
|
<p align="center">
|
68
82
|
If you like this work please consider buying a coffee ;-)
|
@@ -107,7 +121,7 @@ You must follow these steps to make EMHASS work properly:
|
|
107
121
|
|
108
122
|
1) Define all the parameters in the configuration file according to your installation. See the description for each parameter in the **configuration** section.
|
109
123
|
|
110
|
-
2) You most notably will need to define the main data entering EMHASS. This will be the `
|
124
|
+
2) You most notably will need to define the main data entering EMHASS. This will be the `sensor.power_photovoltaics` for the name of the your hass variable containing the PV produced power and the variable `sensor.power_load_no_var_loads` for the load power of your household excluding the power of the deferrable loads that you want to optimize.
|
111
125
|
|
112
126
|
3) Launch the actual optimization and check the results. This can be done manually using the buttons in the web ui or with a `curl` command like this: `curl -i -H 'Content-Type:application/json' -X POST -d '{}' http://localhost:5000/action/dayahead-optim`.
|
113
127
|
|
@@ -370,7 +384,7 @@ In EMHASS we have basically 4 forecasts to deal with:
|
|
370
384
|
|
371
385
|
- PV production selling price forecast: at what price are you selling your excess PV production on the next 24h. This is given in EUR/kWh.
|
372
386
|
|
373
|
-
The sensor containing the load data should be specified in parameter `var_load` in the configuration file. As we want to optimize the household energies, when need to forecast the load power conumption. The default method for this is a naive approach using 1-day persistence. The load data variable should not contain the data from the deferrable loads themselves. For example, lets say that you set your deferrable load to be the washing machine. The variable that you should enter in EMHASS will be: `var_load: 'sensor.power_load_no_var_loads'` and `
|
387
|
+
The sensor containing the load data should be specified in parameter `var_load` in the configuration file. As we want to optimize the household energies, when need to forecast the load power conumption. The default method for this is a naive approach using 1-day persistence. The load data variable should not contain the data from the deferrable loads themselves. For example, lets say that you set your deferrable load to be the washing machine. The variable that you should enter in EMHASS will be: `var_load: 'sensor.power_load_no_var_loads'` and `sensor.power_load_no_var_loads = sensor.power_load - sensor.power_washing_machine`. This is supposing that the overall load of your house is contained in variable: `sensor.power_load`. The sensor `sensor.power_load_no_var_loads` can be easily created with a new template sensor in Home Assistant.
|
374
388
|
|
375
389
|
If you are implementing a MPC controller, then you should also need to provide some data at the optimization runtime using the key `runtimeparams`.
|
376
390
|
|
@@ -28,6 +28,20 @@
|
|
28
28
|
<img alt="Read the Docs" src="https://img.shields.io/readthedocs/emhass">
|
29
29
|
</a>
|
30
30
|
</p>
|
31
|
+
<div align="center">
|
32
|
+
<a href="https://emhass.readthedocs.io/en/latest/">
|
33
|
+
<img src="https://raw.githubusercontent.com/davidusb-geek/emhass/master/docs/images/Documentation_button.svg" alt="Documentation">
|
34
|
+
</a>
|
35
|
+
<a href="https://community.home-assistant.io/t/emhass-an-energy-management-for-home-assistant/338126">
|
36
|
+
<img src="https://raw.githubusercontent.com/davidusb-geek/emhass/master/docs/images/Community_button.svg" alt="Community">
|
37
|
+
</a>
|
38
|
+
<a href="https://github.com/davidusb-geek/emhass/issues">
|
39
|
+
<img src="https://raw.githubusercontent.com/davidusb-geek/emhass/master/docs/images/Issues_button.svg" alt="Issues">
|
40
|
+
</a>
|
41
|
+
<a href="https://github.com/davidusb-geek/emhass-add-on">
|
42
|
+
<img src="https://raw.githubusercontent.com/davidusb-geek/emhass/master/docs/images/EMHASS_Add_on_button.svg" alt="EMHASS Add-on">
|
43
|
+
</a>
|
44
|
+
</div>
|
31
45
|
<br>
|
32
46
|
<p align="center">
|
33
47
|
If you like this work please consider buying a coffee ;-)
|
@@ -72,7 +86,7 @@ You must follow these steps to make EMHASS work properly:
|
|
72
86
|
|
73
87
|
1) Define all the parameters in the configuration file according to your installation. See the description for each parameter in the **configuration** section.
|
74
88
|
|
75
|
-
2) You most notably will need to define the main data entering EMHASS. This will be the `
|
89
|
+
2) You most notably will need to define the main data entering EMHASS. This will be the `sensor.power_photovoltaics` for the name of the your hass variable containing the PV produced power and the variable `sensor.power_load_no_var_loads` for the load power of your household excluding the power of the deferrable loads that you want to optimize.
|
76
90
|
|
77
91
|
3) Launch the actual optimization and check the results. This can be done manually using the buttons in the web ui or with a `curl` command like this: `curl -i -H 'Content-Type:application/json' -X POST -d '{}' http://localhost:5000/action/dayahead-optim`.
|
78
92
|
|
@@ -335,7 +349,7 @@ In EMHASS we have basically 4 forecasts to deal with:
|
|
335
349
|
|
336
350
|
- PV production selling price forecast: at what price are you selling your excess PV production on the next 24h. This is given in EUR/kWh.
|
337
351
|
|
338
|
-
The sensor containing the load data should be specified in parameter `var_load` in the configuration file. As we want to optimize the household energies, when need to forecast the load power conumption. The default method for this is a naive approach using 1-day persistence. The load data variable should not contain the data from the deferrable loads themselves. For example, lets say that you set your deferrable load to be the washing machine. The variable that you should enter in EMHASS will be: `var_load: 'sensor.power_load_no_var_loads'` and `
|
352
|
+
The sensor containing the load data should be specified in parameter `var_load` in the configuration file. As we want to optimize the household energies, when need to forecast the load power conumption. The default method for this is a naive approach using 1-day persistence. The load data variable should not contain the data from the deferrable loads themselves. For example, lets say that you set your deferrable load to be the washing machine. The variable that you should enter in EMHASS will be: `var_load: 'sensor.power_load_no_var_loads'` and `sensor.power_load_no_var_loads = sensor.power_load - sensor.power_washing_machine`. This is supposing that the overall load of your house is contained in variable: `sensor.power_load`. The sensor `sensor.power_load_no_var_loads` can be easily created with a new template sensor in Home Assistant.
|
339
353
|
|
340
354
|
If you are implementing a MPC controller, then you should also need to provide some data at the optimization runtime using the key `runtimeparams`.
|
341
355
|
|
@@ -0,0 +1,130 @@
|
|
1
|
+
timestamp,degreeday,solar,hour
|
2
|
+
2023-11-10 23:59:32.458039+01:00,12.23,3.982,2.87
|
3
|
+
2023-11-11 23:59:32.459778+01:00,12.94,13.723,3.14
|
4
|
+
2023-11-12 23:59:32.462220+01:00,14.45,4.925,3.5
|
5
|
+
2023-11-13 23:59:32.462167+01:00,8.49,2.138,3.19
|
6
|
+
2023-11-14 23:59:32.338942+01:00,8.61,2.444,2.91
|
7
|
+
2023-11-15 23:59:32.195198+01:00,9.83,10.685,2.88
|
8
|
+
2023-11-16 23:59:32.501044+01:00,12.8,1.955,1.28
|
9
|
+
2023-11-17 23:59:32.316366+01:00,13.35,8.742,2.97
|
10
|
+
2023-11-18 23:59:32.082785+01:00,11.84,0.849,3.42
|
11
|
+
2023-11-19 23:59:32.077198+01:00,7.3,10.85,1.9
|
12
|
+
2023-11-20 23:59:32.431964+01:00,9.91,6.395,2.48
|
13
|
+
2023-11-21 23:59:32.295705+01:00,11.44,2.678,2.91
|
14
|
+
2023-11-22 23:59:32.377740+01:00,16.14,2.994,2.96
|
15
|
+
2023-11-23 23:59:32.385890+01:00,9.31,5.346,2.91
|
16
|
+
2023-11-24 23:59:32.376194+01:00,12.96,8.61,2.9
|
17
|
+
2023-11-25 23:59:32.373666+01:00,14.91,12.31,3.47
|
18
|
+
2023-11-26 23:59:32.373647+01:00,14.79,2.589,3.69
|
19
|
+
2023-11-27 23:59:32.379920+01:00,14.92,0.322,6.05
|
20
|
+
2023-11-28 23:59:32.213947+01:00,18.59,20.342,2.94
|
21
|
+
2023-11-29 23:59:32.217384+01:00,19.05,5.393,5.41
|
22
|
+
2023-11-30 23:59:32.222641+01:00,21.27,1.899,6.77
|
23
|
+
2023-12-01 23:59:32.224533+01:00,21.3,1.233,5.75
|
24
|
+
2023-12-02 23:59:32.107119+01:00,21.97,14.653,2.96
|
25
|
+
2023-12-03 23:59:32.107436+01:00,20.61,4.766,8.89
|
26
|
+
2023-12-04 23:59:32.116642+01:00,18.36,1.349,6.73
|
27
|
+
2023-12-05 23:59:32.191254+01:00,16.93,0.869,6.17
|
28
|
+
2023-12-06 23:59:32.176803+01:00,16.8,5.413,5.38
|
29
|
+
2023-12-07 23:59:32.251031+01:00,17.67,8.089,5.98
|
30
|
+
2023-12-08 23:59:32.255888+01:00,14.37,1.203,5.63
|
31
|
+
2023-12-09 23:59:32.109040+01:00,11.94,0.814,5.08
|
32
|
+
2023-12-10 23:59:32.103738+01:00,9.72,6.051,3.42
|
33
|
+
2023-12-11 23:59:32.497717+01:00,9.83,1.459,3.87
|
34
|
+
2023-12-12 23:59:32.502503+01:00,11.18,4.176,3.31
|
35
|
+
2023-12-13 23:59:32.504794+01:00,11.09,2.91,3.1
|
36
|
+
2023-12-14 23:59:32.177489+01:00,13.88,7.53,2.89
|
37
|
+
2023-12-15 23:59:32.186292+01:00,12.18,2.129,5.68
|
38
|
+
2023-12-16 23:59:32.176812+01:00,11.75,1.641,3.46
|
39
|
+
2023-12-17 23:59:32.119874+01:00,12.18,14.868,3.46
|
40
|
+
2023-12-18 23:59:32.120168+01:00,14.75,1.283,3.12
|
41
|
+
2023-12-19 23:59:32.120101+01:00,12.82,0.09,5.07
|
42
|
+
2023-12-20 23:59:32.249731+01:00,12.8,3.803,3.6
|
43
|
+
2023-12-21 23:59:32.249135+01:00,8.73,2.096,3.55
|
44
|
+
2023-12-22 23:59:32.385164+01:00,9.12,1.278,0.85
|
45
|
+
2023-12-23 23:59:32.382910+01:00,8.99,1.848,0.0
|
46
|
+
2023-12-24 23:59:32.382457+01:00,8.04,0.165,7.42
|
47
|
+
2023-12-25 23:59:32.303520+01:00,7.56,1.028,2.93
|
48
|
+
2023-12-26 23:59:32.105788+01:00,10.55,9.274,2.92
|
49
|
+
2023-12-27 23:59:32.183107+01:00,11.78,2.026,3.39
|
50
|
+
2023-12-28 23:59:32.183405+01:00,8.91,3.68,3.19
|
51
|
+
2023-12-29 23:59:32.399740+01:00,9.35,2.464,2.95
|
52
|
+
2023-12-30 23:59:32.091110+01:00,11.07,7.948,3.44
|
53
|
+
2023-12-31 23:59:32.257530+01:00,10.51,3.5,3.48
|
54
|
+
2024-01-01 23:59:32.106161+01:00,12.75,4.046,3.08
|
55
|
+
2024-01-02 23:59:32.103187+01:00,8.81,0.562,4.46
|
56
|
+
2024-01-03 23:59:32.429947+01:00,10.03,2.184,3.26
|
57
|
+
2024-01-04 23:59:32.436773+01:00,11.22,5.662,2.97
|
58
|
+
2024-01-05 23:59:32.165969+01:00,12.42,1.199,3.6
|
59
|
+
2024-01-06 23:59:32.110208+01:00,15.35,0.295,4.32
|
60
|
+
2024-01-07 23:59:32.147775+01:00,19.88,0.896,6.19
|
61
|
+
2024-01-08 23:59:32.242815+01:00,22.74,6.468,5.82
|
62
|
+
2024-01-09 23:59:32.201342+01:00,24.38,21.307,6.92
|
63
|
+
2024-01-10 23:59:32.411136+01:00,24.84,18.89,1.53
|
64
|
+
2024-01-11 23:59:32.399433+01:00,23.57,19.27,3.05
|
65
|
+
2024-01-12 23:59:32.467622+01:00,18.22,1.977,13.98
|
66
|
+
2024-01-13 23:59:32.077428+01:00,17.9,0.472,6.93
|
67
|
+
2024-01-14 23:59:32.127844+01:00,19.65,1.346,6.95
|
68
|
+
2024-01-15 23:59:32.125062+01:00,19.49,4.35,7.82
|
69
|
+
2024-01-16 23:59:32.280474+01:00,21.21,9.238,5.7
|
70
|
+
2024-01-17 23:59:32.283951+01:00,23.17,1.193,7.37
|
71
|
+
2024-01-18 23:59:32.361241+01:00,21.61,17.307,6.67
|
72
|
+
2024-01-19 23:59:32.341654+01:00,22.06,21.004,6.24
|
73
|
+
2024-01-20 23:59:32.359151+01:00,21.95,12.912,6.43
|
74
|
+
2024-01-21 23:59:32.126221+01:00,17.38,3.28,7.45
|
75
|
+
2024-01-22 23:59:32.126346+01:00,9.47,7.645,6.1
|
76
|
+
2024-01-23 23:59:32.417727+01:00,11.87,7.689,4.76
|
77
|
+
2024-01-24 23:59:32.420933+01:00,8.15,10.052,3.62
|
78
|
+
2024-01-25 23:59:32.419138+01:00,12.38,3.785,3.98
|
79
|
+
2024-01-26 23:59:32.422066+01:00,11.4,11.94,3.1
|
80
|
+
2024-01-27 23:59:32.176538+01:00,17.96,19.741,3.45
|
81
|
+
2024-01-28 23:59:32.168328+01:00,16.72,20.366,4.85
|
82
|
+
2024-01-29 23:59:32.173916+01:00,13.11,16.972,4.51
|
83
|
+
2024-01-30 23:59:32.503034+01:00,11.21,4.013,3.99
|
84
|
+
2024-01-31 23:59:32.179265+01:00,12.79,4.766,3.73
|
85
|
+
2024-02-01 23:59:32.487147+01:00,12.74,23.924,2.98
|
86
|
+
2024-02-02 23:59:32.570084+01:00,13.0,2.98,5.04
|
87
|
+
2024-02-03 23:59:32.484878+01:00,9.26,1.413,3.48
|
88
|
+
2024-02-04 23:59:32.472168+01:00,8.35,4.306,3.47
|
89
|
+
2024-02-05 23:59:32.409856+01:00,9.78,5.704,0.0
|
90
|
+
2024-02-06 23:59:32.439147+01:00,9.15,2.431,6.56
|
91
|
+
2024-02-07 23:59:32.235231+01:00,14.42,3.839,3.07
|
92
|
+
2024-02-08 23:59:32.441543+01:00,13.9,1.412,5.94
|
93
|
+
2024-02-09 23:59:32.443230+01:00,8.2,7.246,2.96
|
94
|
+
2024-02-10 23:59:32.504326+01:00,8.37,8.567,3.48
|
95
|
+
2024-02-11 23:59:32.452959+01:00,10.44,5.304,0.0
|
96
|
+
2024-02-12 23:59:32.450999+01:00,12.65,16.004,3.42
|
97
|
+
2024-02-13 23:59:32.343162+01:00,13.84,19.809,3.16
|
98
|
+
2024-02-14 23:59:32.339408+01:00,8.48,1.98,4.52
|
99
|
+
2024-02-15 23:59:32.339971+01:00,6.13,9.952,2.98
|
100
|
+
2024-02-16 23:59:32.455273+01:00,7.66,3.675,3.06
|
101
|
+
2024-02-17 23:59:32.097937+01:00,8.56,12.269,3.48
|
102
|
+
2024-02-18 23:59:32.126377+01:00,9.59,2.205,3.04
|
103
|
+
2024-02-19 23:59:32.421243+01:00,10.22,3.731,2.97
|
104
|
+
2024-02-20 23:59:32.421985+01:00,11.61,13.775,0.0
|
105
|
+
2024-02-21 23:59:32.371300+01:00,10.52,4.856,3.02
|
106
|
+
2024-02-22 23:59:32.373153+01:00,9.53,4.256,3.48
|
107
|
+
2024-02-23 23:59:32.372545+01:00,13.66,8.743,4.09
|
108
|
+
2024-02-24 23:59:32.197044+01:00,14.44,7.842,4.3
|
109
|
+
2024-02-25 23:59:32.196386+01:00,12.41,16.235,3.48
|
110
|
+
2024-02-26 23:59:32.409648+01:00,14.63,2.096,5.05
|
111
|
+
2024-02-27 23:59:32.373347+01:00,14.5,29.437,3.21
|
112
|
+
2024-02-28 23:59:32.407538+01:00,15.38,6.475,4.88
|
113
|
+
2024-02-29 23:59:32.194724+01:00,11.83,3.238,4.68
|
114
|
+
2024-03-01 23:59:32.084520+01:00,10.56,14.352,3.8
|
115
|
+
2024-03-02 23:59:32.066434+01:00,9.94,25.356,3.49
|
116
|
+
2024-03-03 23:59:32.270878+01:00,8.9,10.577,3.19
|
117
|
+
2024-03-04 23:59:32.274918+01:00,10.67,28.096,2.08
|
118
|
+
2024-03-05 23:59:32.315023+01:00,12.19,10.553,2.95
|
119
|
+
2024-03-06 23:59:32.441001+01:00,11.38,32.597,2.91
|
120
|
+
2024-03-07 23:59:32.440044+01:00,12.39,28.856,2.96
|
121
|
+
2024-03-08 23:59:32.228265+01:00,12.01,37.395,2.96
|
122
|
+
2024-03-09 23:59:32.081874+01:00,8.72,17.66,3.5
|
123
|
+
2024-03-10 23:59:32.335321+01:00,8.0,12.207,3.47
|
124
|
+
2024-03-11 23:59:32.139531+01:00,10.39,2.526,2.96
|
125
|
+
2024-03-12 23:59:32.136709+01:00,10.24,8.211,2.98
|
126
|
+
2024-03-13 23:59:32.407174+01:00,7.19,6.425,2.95
|
127
|
+
2024-03-14 23:59:32.342436+01:00,6.06,33.389,1.64
|
128
|
+
2024-03-15 23:59:32.266278+01:00,5.63,12.628,2.96
|
129
|
+
2024-03-16 23:59:32.155245+01:00,9.57,12.103,3.0
|
130
|
+
2024-03-17 23:59:32.366155+01:00,8.43,14.302,0.25
|
@@ -19,7 +19,7 @@ long_description = (here / 'README.md').read_text(encoding='utf-8')
|
|
19
19
|
|
20
20
|
setup(
|
21
21
|
name='emhass', # Required
|
22
|
-
version='0.
|
22
|
+
version='0.9.0', # Required
|
23
23
|
description='An Energy Management System for Home Assistant', # Optional
|
24
24
|
long_description=long_description, # Optional
|
25
25
|
long_description_content_type='text/markdown', # Optional (see note above)
|
@@ -48,11 +48,11 @@ setup(
|
|
48
48
|
'pytz>=2021.1',
|
49
49
|
'requests>=2.25.1',
|
50
50
|
'beautifulsoup4>=4.9.3',
|
51
|
-
'h5py==3.
|
51
|
+
'h5py==3.11.0',
|
52
52
|
'pulp>=2.4',
|
53
53
|
'pyyaml>=5.4.1',
|
54
54
|
'tables<=3.9.1',
|
55
|
-
'skforecast==0.
|
55
|
+
'skforecast==0.12.0',
|
56
56
|
'flask>=2.0.3',
|
57
57
|
'waitress>=2.1.1',
|
58
58
|
'plotly>=5.6.0'
|