emhass 0.11.1__py3-none-any.whl → 0.11.3__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/command_line.py +702 -373
- emhass/data/associations.csv +1 -1
- emhass/data/config_defaults.json +1 -2
- emhass/forecast.py +671 -346
- emhass/machine_learning_forecaster.py +204 -105
- emhass/machine_learning_regressor.py +26 -7
- emhass/optimization.py +1017 -471
- emhass/retrieve_hass.py +234 -78
- emhass/static/configuration_script.js +4 -4
- emhass/static/data/param_definitions.json +5 -4
- emhass/utils.py +690 -404
- emhass/web_server.py +339 -225
- {emhass-0.11.1.dist-info → emhass-0.11.3.dist-info}/METADATA +17 -11
- emhass-0.11.3.dist-info/RECORD +32 -0
- {emhass-0.11.1.dist-info → emhass-0.11.3.dist-info}/WHEEL +1 -1
- emhass-0.11.1.dist-info/RECORD +0 -32
- {emhass-0.11.1.dist-info → emhass-0.11.3.dist-info}/LICENSE +0 -0
- {emhass-0.11.1.dist-info → emhass-0.11.3.dist-info}/entry_points.txt +0 -0
- {emhass-0.11.1.dist-info → emhass-0.11.3.dist-info}/top_level.txt +0 -0
@@ -1,10 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: emhass
|
3
|
-
Version: 0.11.
|
3
|
+
Version: 0.11.3
|
4
4
|
Summary: An Energy Management System for Home Assistant
|
5
|
-
|
6
|
-
|
7
|
-
|
5
|
+
Author-email: David HERNANDEZ <davidusb@gmail.com>
|
6
|
+
License: MIT
|
7
|
+
Project-URL: Homepage, https://github.com/davidusb-geek/emhass
|
8
8
|
Keywords: energy,management,optimization,hass
|
9
9
|
Classifier: Development Status :: 5 - Production/Stable
|
10
10
|
Classifier: Intended Audience :: Developers
|
@@ -12,10 +12,9 @@ Classifier: Topic :: Software Development :: Build Tools
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
13
13
|
Classifier: Programming Language :: Python :: 3.11
|
14
14
|
Classifier: Operating System :: OS Independent
|
15
|
-
Requires-Python:
|
15
|
+
Requires-Python: <3.12,>=3.10
|
16
16
|
Description-Content-Type: text/markdown
|
17
17
|
License-File: LICENSE
|
18
|
-
Requires-Dist: wheel
|
19
18
|
Requires-Dist: numpy==1.26.4
|
20
19
|
Requires-Dist: scipy==1.12.0
|
21
20
|
Requires-Dist: pandas<=2.0.3
|
@@ -28,10 +27,20 @@ Requires-Dist: h5py==3.12.1
|
|
28
27
|
Requires-Dist: pulp>=2.4
|
29
28
|
Requires-Dist: pyyaml>=5.4.1
|
30
29
|
Requires-Dist: tables<=3.9.1
|
31
|
-
Requires-Dist: skforecast==0.
|
30
|
+
Requires-Dist: skforecast==0.14.0
|
32
31
|
Requires-Dist: flask>=2.0.3
|
33
32
|
Requires-Dist: waitress>=2.1.1
|
34
33
|
Requires-Dist: plotly>=5.6.0
|
34
|
+
Provides-Extra: docs
|
35
|
+
Requires-Dist: sphinx; extra == "docs"
|
36
|
+
Requires-Dist: sphinx-rtd-theme; extra == "docs"
|
37
|
+
Requires-Dist: myst-parser; extra == "docs"
|
38
|
+
Provides-Extra: test
|
39
|
+
Requires-Dist: requests_mock; extra == "test"
|
40
|
+
Requires-Dist: pytest; extra == "test"
|
41
|
+
Requires-Dist: coverage; extra == "test"
|
42
|
+
Requires-Dist: snakeviz; extra == "test"
|
43
|
+
Requires-Dist: ruff; extra == "test"
|
35
44
|
|
36
45
|
<div align="center">
|
37
46
|
<br>
|
@@ -47,9 +56,6 @@ Requires-Dist: plotly>=5.6.0
|
|
47
56
|
</a>
|
48
57
|
<a style="text-decoration:none" href="https://github.com/davidusb-geek/emhass/actions">
|
49
58
|
<img alt="EMHASS GitHub Workflow Status" src="https://github.com/davidusb-geek/emhass/actions/workflows/publish_docker.yaml/badge.svg?event=release">
|
50
|
-
</a>
|
51
|
-
<a style="text-decoration:none" href="https://github.com/davidusb-geek/emhass-add-on/actions">
|
52
|
-
<img alt="EMHASS-Add-on GitHub Workflow Status" src="https://github.com/davidusb-geek/emhass-add-on/actions/workflows/publish_docker.yaml/badge.svg?event=release">
|
53
59
|
</a>
|
54
60
|
<a hstyle="text-decoration:none" ref="https://codecov.io/github/davidusb-geek/emhass" >
|
55
61
|
<img src="https://codecov.io/github/davidusb-geek/emhass/branch/master/graph/badge.svg?token=BW7KSCHN90"/>
|
@@ -651,7 +657,7 @@ This can be controlled in the configuration file with parameters `lp_solver` and
|
|
651
657
|
|
652
658
|
MIT License
|
653
659
|
|
654
|
-
Copyright (c) 2021-
|
660
|
+
Copyright (c) 2021-2025 David HERNANDEZ
|
655
661
|
|
656
662
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
657
663
|
|
@@ -0,0 +1,32 @@
|
|
1
|
+
emhass/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
emhass/command_line.py,sha256=3fN0gUrTImxCUbmESgU8j_dXUwvkaCDMSdwcHWY0SQI,69671
|
3
|
+
emhass/forecast.py,sha256=Jr1DAobtFoTfCS9RvtPQvYRTYrvyp1Ubq-X1noqh7jA,58763
|
4
|
+
emhass/machine_learning_forecaster.py,sha256=JErz50i_D59J5wXdbf_EUPb_FG45qRflv51iBA7ARXU,17417
|
5
|
+
emhass/machine_learning_regressor.py,sha256=yFwMvVEmlgDJUsHhBT-HpNE3j2TC24e8Gmbcn9MPfeU,10690
|
6
|
+
emhass/optimization.py,sha256=-s3gWblpc85v-q0Ad9M8lXlG8ZZW0iL_s_I_9EUhzwA,61452
|
7
|
+
emhass/retrieve_hass.py,sha256=LLZBoP5Rkyg0_uSvJSG5m-6apVoWZ6MWuXPPA-j-JsI,25617
|
8
|
+
emhass/utils.py,sha256=U0fH_CbYQJd-izWqjBfJc-ih1y14S5IISIFtBHe1wM0,66330
|
9
|
+
emhass/web_server.py,sha256=BdCefS_ipseUOa3sq-HFl1hWrA9NZbfxe3mt0ZqcgIU,28244
|
10
|
+
emhass/data/associations.csv,sha256=Wv2845irZDMYm8svg__Ev0c2BgkVX88yAXoqpy1C4RM,3646
|
11
|
+
emhass/data/cec_inverters.pbz2,sha256=tK8FvAUDW0uYez8EPttdCJwHhpPofclYV6GhhNZL0Pk,168272
|
12
|
+
emhass/data/cec_modules.pbz2,sha256=8vEaysgYffXg3KUl8XSF36Mdywzi3LpEtUN_qenjO9s,1655747
|
13
|
+
emhass/data/config_defaults.json,sha256=0jyYfF1ob3QMbjP8h2rd0jlbfe2uYm68NYW0GKM5qfk,2754
|
14
|
+
emhass/static/advanced.html,sha256=gAhsd14elDwh1Ts4lf9wn_ZkczzzObq5qOimi_la3Ic,2067
|
15
|
+
emhass/static/basic.html,sha256=ro2WwWgJyoUhqx_nJFzKCEG8FA8863vSHLmrjGYcEgs,677
|
16
|
+
emhass/static/configuration_list.html,sha256=4ZAL-4YXdofnx17np-v39Yt3qW2TWbSzNBkj86bpvIg,1578
|
17
|
+
emhass/static/configuration_script.js,sha256=N95GzyQdLzzOuSNw4L78BdArdqLPYJKhU3baGEsOhZE,31098
|
18
|
+
emhass/static/script.js,sha256=q3qTqc_pTLTK-0NPKurxFXcJ2vZLz4TctPfUgz09ygo,16291
|
19
|
+
emhass/static/style.css,sha256=a_8YlGubn1zoF5RTLJ_Qkrb8tAjUY9p7oAKxhCvJY2s,19288
|
20
|
+
emhass/static/data/param_definitions.json,sha256=2z_nb94wrj-fVORy0F_hoOCHHv7CbemIoKpScCmRcPI,19243
|
21
|
+
emhass/static/img/emhass_icon.png,sha256=Kyx6hXQ1huJLHAq2CaBfjYXR25H9j99PSWHI0lShkaQ,19030
|
22
|
+
emhass/static/img/emhass_logo_short.svg,sha256=yzMcqtBRCV8rH84-MwnigZh45_f9Eoqwho9P8nCodJA,66736
|
23
|
+
emhass/static/img/feather-sprite.svg,sha256=VHjMJQg88wXa9CaeYrKGhNtyK0xdd47zCqwSIa-hxo8,60319
|
24
|
+
emhass/templates/configuration.html,sha256=yS9p730GHf99ZYK0NiZjkuaxPjH1ZFo8R6xL5c1ZZ9s,2885
|
25
|
+
emhass/templates/index.html,sha256=Ehn-hUdraIwX_5Usb5Liz1ip24NfztmCxsi0J4Tf3-A,3076
|
26
|
+
emhass/templates/template.html,sha256=TkGgMecQEbFUZA4ymPwMUzNjKHsENvCgroUWbPt7G4Y,158
|
27
|
+
emhass-0.11.3.dist-info/LICENSE,sha256=1X3-S1yvOCBDBeox1aK3dq00m7dA8NDtcPrpKPISzbE,1077
|
28
|
+
emhass-0.11.3.dist-info/METADATA,sha256=hkZYpwr5bjDhC9hGaQdAY2braRkT10_LD5pHCFuxQ3A,48945
|
29
|
+
emhass-0.11.3.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
30
|
+
emhass-0.11.3.dist-info/entry_points.txt,sha256=6Bp1NFOGNv_fSTxYl1ke3K3h3aqAcBxI-bgq5yq-i1M,52
|
31
|
+
emhass-0.11.3.dist-info/top_level.txt,sha256=L7fIX4awfmxQbAePtSdVg2e6x_HhghfReHfsKSpKr9I,7
|
32
|
+
emhass-0.11.3.dist-info/RECORD,,
|
emhass-0.11.1.dist-info/RECORD
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
emhass/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
emhass/command_line.py,sha256=ezz-mfPsdMLURr-efFxAu1YVShTvLEc-AwtbHKbYbDk,66916
|
3
|
-
emhass/forecast.py,sha256=EZuQnhVmXcHOxteaw1o44BVMVS956Y2UaTRELNT7RaI,53644
|
4
|
-
emhass/machine_learning_forecaster.py,sha256=UP9YR3NSt-b_5i2b8wMAfXRWeMnJjSkBXnXvHepzHpM,16109
|
5
|
-
emhass/machine_learning_regressor.py,sha256=QMAokLgEjvQ8Xy5gYZBQGQTzh2zgg6d6iydoPmy0QeI,10546
|
6
|
-
emhass/optimization.py,sha256=IagqVYN2k8KFtQ0ZUZWab6egmDvpkYSQG8qyBmoWvyM,50877
|
7
|
-
emhass/retrieve_hass.py,sha256=jLh8nSpsdeZJCaI7qKxAcZYpH8OKouMHz1OiezqLuqc,23430
|
8
|
-
emhass/utils.py,sha256=_wCO_88Ycn0Gd5EcGHMBcyI9NQ-saWunGzvZVqufn-o,65336
|
9
|
-
emhass/web_server.py,sha256=QALTX0We82qToxiCnX2SocgkjlUsHLubqJ5WrCWO3P0,27229
|
10
|
-
emhass/data/associations.csv,sha256=GFE_4ptHT6qno0lJt_rEeOXBqkLd759GNqXEVp4x2Po,3654
|
11
|
-
emhass/data/cec_inverters.pbz2,sha256=tK8FvAUDW0uYez8EPttdCJwHhpPofclYV6GhhNZL0Pk,168272
|
12
|
-
emhass/data/cec_modules.pbz2,sha256=8vEaysgYffXg3KUl8XSF36Mdywzi3LpEtUN_qenjO9s,1655747
|
13
|
-
emhass/data/config_defaults.json,sha256=GKw2p3jObwMY1wAR_D_x8T8eNzQgu3awNQnIBuBwhJE,2791
|
14
|
-
emhass/static/advanced.html,sha256=gAhsd14elDwh1Ts4lf9wn_ZkczzzObq5qOimi_la3Ic,2067
|
15
|
-
emhass/static/basic.html,sha256=ro2WwWgJyoUhqx_nJFzKCEG8FA8863vSHLmrjGYcEgs,677
|
16
|
-
emhass/static/configuration_list.html,sha256=4ZAL-4YXdofnx17np-v39Yt3qW2TWbSzNBkj86bpvIg,1578
|
17
|
-
emhass/static/configuration_script.js,sha256=PQYZHWMb0dohrw3hI7HeIXNEae6PamIvvs84IePLThw,31097
|
18
|
-
emhass/static/script.js,sha256=q3qTqc_pTLTK-0NPKurxFXcJ2vZLz4TctPfUgz09ygo,16291
|
19
|
-
emhass/static/style.css,sha256=a_8YlGubn1zoF5RTLJ_Qkrb8tAjUY9p7oAKxhCvJY2s,19288
|
20
|
-
emhass/static/data/param_definitions.json,sha256=Nq4dnSmug0mWU8JooqVayKa67NQ2b6k30Z-ac2BJcys,19158
|
21
|
-
emhass/static/img/emhass_icon.png,sha256=Kyx6hXQ1huJLHAq2CaBfjYXR25H9j99PSWHI0lShkaQ,19030
|
22
|
-
emhass/static/img/emhass_logo_short.svg,sha256=yzMcqtBRCV8rH84-MwnigZh45_f9Eoqwho9P8nCodJA,66736
|
23
|
-
emhass/static/img/feather-sprite.svg,sha256=VHjMJQg88wXa9CaeYrKGhNtyK0xdd47zCqwSIa-hxo8,60319
|
24
|
-
emhass/templates/configuration.html,sha256=yS9p730GHf99ZYK0NiZjkuaxPjH1ZFo8R6xL5c1ZZ9s,2885
|
25
|
-
emhass/templates/index.html,sha256=Ehn-hUdraIwX_5Usb5Liz1ip24NfztmCxsi0J4Tf3-A,3076
|
26
|
-
emhass/templates/template.html,sha256=TkGgMecQEbFUZA4ymPwMUzNjKHsENvCgroUWbPt7G4Y,158
|
27
|
-
emhass-0.11.1.dist-info/LICENSE,sha256=1X3-S1yvOCBDBeox1aK3dq00m7dA8NDtcPrpKPISzbE,1077
|
28
|
-
emhass-0.11.1.dist-info/METADATA,sha256=x9mxnfO20GSc2HsZn375WlEKWMOreP9cNvOWpOQz3WI,48843
|
29
|
-
emhass-0.11.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
30
|
-
emhass-0.11.1.dist-info/entry_points.txt,sha256=6Bp1NFOGNv_fSTxYl1ke3K3h3aqAcBxI-bgq5yq-i1M,52
|
31
|
-
emhass-0.11.1.dist-info/top_level.txt,sha256=L7fIX4awfmxQbAePtSdVg2e6x_HhghfReHfsKSpKr9I,7
|
32
|
-
emhass-0.11.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|