emhass 0.13.0__py3-none-any.whl → 0.13.1__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.
@@ -0,0 +1,75 @@
1
+ <!-- Configuration page html -->
2
+ <!DOCTYPE html>
3
+ <html class="adaptive">
4
+
5
+ <head>
6
+ <title>EMHASS: Energy Management Optimization for Home Assistant</title>
7
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+ <link rel="stylesheet" type="text/css" href="static/style.css?version=1">
9
+ <link rel="icon" type="image/x-icon" href="static/img/emhass_logo_short.svg">
10
+ <script src="static/configuration_script.js"></script>
11
+ </head>
12
+
13
+ <body style="margin: auto; align-items:center; text-align:center;">
14
+
15
+ <div>
16
+ <!-- Icons by feather https://github.com/feathericons/feather -->
17
+ <div id="top-links">
18
+ <!-- index page -->
19
+ <a href="index" title="Home" style="margin-right: 12px; cursor: pointer; z-index: 1">
20
+ <svg class="feather">
21
+ <use class="feather" href="static/img/feather-sprite.svg#home" />
22
+ </svg>
23
+ </a>
24
+ <a href="https://emhass.readthedocs.io/en/latest/">
25
+ <svg class="feather" title="EMHASS Docs" style="margin-right: 12px;" ;>
26
+ <use class="feather" href="static/img/feather-sprite.svg#book" />
27
+ </svg>
28
+ </a>
29
+ <a href="https://github.com/davidusb-geek/emhass" target="_blank" rel="noopener noreferrer">
30
+ <svg class="feather" title="EMHASS Git repo" style="margin-right: 0px;">
31
+ <use class="feather" href="static/img/feather-sprite.svg#git-branch" />
32
+ </svg>
33
+ </a>
34
+ </div>
35
+
36
+ <!-- Title -->
37
+ <img src="static/img/emhass_icon.png" alt="">
38
+ <h2>EMHASS: Energy Management Optimization for Home Assistant</h2>
39
+ </div>
40
+ <div class="header-footer">
41
+ <h4>Configuration:</h4>
42
+ <a id="json-toggle" title="List and Box view toggle">
43
+ <svg id="json" class="feather" class="header-footer-button">
44
+ <use class="feather" href="static/img/feather-sprite.svg#code" />
45
+ </svg>
46
+ </a>
47
+ </div>
48
+
49
+ <!-- parameter list/box elements section -->
50
+ <div id=configuration-container>
51
+ </div>
52
+ <!-- configuration buttons (defaults, save, yaml) -->
53
+ <div class="save_button header-footer">
54
+ <button style="margin-right: 5px;" type="button" id="yaml" title="Convert yaml to json" class="">YAML</button>
55
+ <button type="button" id="defaults" title="Restore to default parameter values" class="">Defaults</button>
56
+ <button type="button" id="save" title="Save Config to EMHASS" class="">Save</button>
57
+ <div class="loading-div"> <!-- dynamic tick/cross element -->
58
+ <div id=loader></div>
59
+ </div>
60
+ </div>
61
+ <!-- alert box -->
62
+ <div style="display: none;" id="alert" class="alert">
63
+ <div>
64
+ <span onclick="this.parentElement.parentElement.style.display='none';">&times;</span>
65
+ <p id="alert-text"></p>
66
+ </div>
67
+ </div>
68
+ <footer class="footer">
69
+ <p style="margin-top:10px; text-align:center;">&copy; MIT License | Copyright (c) 2021-2025 David
70
+ HERNANDEZ</p>
71
+ </footer>
72
+ </div>
73
+ </body>
74
+
75
+ </html>
@@ -0,0 +1,77 @@
1
+ <!-- Index page html -->
2
+ <!DOCTYPE html>
3
+ <html class="adaptive">
4
+
5
+ <head>
6
+ <title>EMHASS: Energy Management Optimization for Home Assistant</title>
7
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+ <link rel="stylesheet" type="text/css" href="static/style.css?version=1">
9
+ <link rel="icon" type="image/x-icon" href="static/img/emhass_logo_short.svg">
10
+ <script src="static/script.js"></script>
11
+ </head>
12
+
13
+ <body style="margin: auto; align-items:center; text-align:center;">
14
+
15
+ <div>
16
+ <!-- Icons by feather https://github.com/feathericons/feather -->
17
+ <div id="top-links">
18
+ <!-- configuration page -->
19
+ <a href="configuration" title="Configuration Page" style="margin-right: 12px; cursor: pointer; z-index: 1">
20
+ <svg class="feather">
21
+ <use class="feather" href="static/img/feather-sprite.svg#settings" />
22
+ </svg>
23
+ </a>
24
+ <!-- advanced or basic page switch -->
25
+ <a id="basicOrAdvanced" title="Advanced Toggle" style="margin-right: 24px; cursor: pointer; z-index: 1">
26
+ <svg class="feather">
27
+ <use class="feather" href="static/img/feather-sprite.svg#tool" />
28
+ </svg>
29
+ </a>
30
+ <a href="https://emhass.readthedocs.io/en/latest/">
31
+ <svg class="feather" title="EMHASS Docs" style="margin-right: 12px;" ;>
32
+ <use class="feather" href="static/img/feather-sprite.svg#book" />
33
+ </svg>
34
+ </a>
35
+ <a href="https://github.com/davidusb-geek/emhass" target="_blank" rel="noopener noreferrer">
36
+ <svg class="feather" title="EMHASS Git repo" style="margin-right: 0px;">
37
+ <use class="feather" href="static/img/feather-sprite.svg#git-branch" />
38
+ </svg>
39
+ </a>
40
+ </div>
41
+ <!-- Title -->
42
+ <img src="static/img/emhass_icon.png" alt="">
43
+ <h2>EMHASS: Energy Management Optimization for Home Assistant</h2>
44
+ </div>
45
+
46
+
47
+ <div class="center">
48
+ <div id=TabSelection class="form">
49
+ <!-- Basic and Advance pages will be dynamically loaded here -->
50
+ </div>
51
+ </div>
52
+ <!-- alert box element -->
53
+ <div style="display: none;" id="alert" class="alert">
54
+ <div>
55
+ <span onclick="this.parentElement.parentElement.style.display='none';">&times;</span>
56
+ <p id="alert-text"></p>
57
+ </div>
58
+ </div>
59
+ <br>
60
+
61
+ <!-- dynamic table/diagram elements section -->
62
+ </div>
63
+ <div id="template"> <!-- table/diagram container element -->
64
+ {% for plot in injection_dict %} <!-- diagrams/tables elements will be added here -->
65
+ <div class="table_div">
66
+ {{injection_dict[plot]}}
67
+ </div>
68
+ {% endfor %}
69
+ <div>
70
+
71
+ <footer class="footer">
72
+ <p style="margin-top:10px; text-align:center;">&copy; MIT License | Copyright (c) 2021-2025 David
73
+ HERNANDEZ</p>
74
+ </footer>
75
+ </body>
76
+
77
+ </html>
@@ -0,0 +1,5 @@
1
+ {% for plot in injection_dict %} <!-- diagrams/tables elements will be added here -->
2
+ <div class="table_div">
3
+ {{injection_dict[plot]}}
4
+ </div>
5
+ {% endfor %}
@@ -1,18 +1,25 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: emhass
3
- Version: 0.13.0
3
+ Version: 0.13.1
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-Expression: MIT
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 :: Build Tools
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'
@@ -0,0 +1,23 @@
1
+ emhass/data/associations.csv,sha256=pFbL3LosAhWc4SmHWZGQa-2ykwmFAqhV1nmd4hTYNKU,4144
2
+ emhass/data/cec_inverters.pbz2,sha256=ca-dO6sv38_FI2w_6fkAIzcrEqzFBkG8MHKNGbCZPow,189400
3
+ emhass/data/cec_modules.pbz2,sha256=Y639TNqhaIxh2Ec7AUPxy8k4lQugY5rURVVVexj0fMU,1885444
4
+ emhass/data/config_defaults.json,sha256=J1hgdA6D9mliPABbSaGqdO4rG3Xr5-9nI-jIWqrRylA,3128
5
+ emhass/img/emhass_icon.png,sha256=Kyx6hXQ1huJLHAq2CaBfjYXR25H9j99PSWHI0lShkaQ,19030
6
+ emhass/static/advanced.html,sha256=gAhsd14elDwh1Ts4lf9wn_ZkczzzObq5qOimi_la3Ic,2067
7
+ emhass/static/basic.html,sha256=ro2WwWgJyoUhqx_nJFzKCEG8FA8863vSHLmrjGYcEgs,677
8
+ emhass/static/configuration_list.html,sha256=i4v83RVduWjdjkjPhA74e-j8NSUpFzqMGU3ixOaJLfI,1740
9
+ emhass/static/configuration_script.js,sha256=Ek0Ry1Ae6ZGMl28mYxno6bPTwY4rK7AHcL58C6T6qUo,31727
10
+ emhass/static/script.js,sha256=-JYS8fHjchrMi1hYYKMd9p7vZvPcnYiY8NNuRC99fJM,16323
11
+ emhass/static/style.css,sha256=a_8YlGubn1zoF5RTLJ_Qkrb8tAjUY9p7oAKxhCvJY2s,19288
12
+ emhass/static/data/param_definitions.json,sha256=GAXsnpdg9F5zbl7McdUoiiAfjwjRgQ24sYhovEv9sEI,21692
13
+ emhass/static/img/emhass_icon.png,sha256=Kyx6hXQ1huJLHAq2CaBfjYXR25H9j99PSWHI0lShkaQ,19030
14
+ emhass/static/img/emhass_logo_short.svg,sha256=yzMcqtBRCV8rH84-MwnigZh45_f9Eoqwho9P8nCodJA,66736
15
+ emhass/static/img/feather-sprite.svg,sha256=VHjMJQg88wXa9CaeYrKGhNtyK0xdd47zCqwSIa-hxo8,60319
16
+ emhass/templates/configuration.html,sha256=M-_L__juYzcdGDaryGrz6LG2mguW2f1Sx6k01YfG7Dc,2885
17
+ emhass/templates/index.html,sha256=1V44c0yyliu_z8inl0K-zmmmkhQumH3Bqk8Jj1YJPzY,3076
18
+ emhass/templates/template.html,sha256=TkGgMecQEbFUZA4ymPwMUzNjKHsENvCgroUWbPt7G4Y,158
19
+ emhass-0.13.1.dist-info/METADATA,sha256=4xOAShaGRtUc6YqrIX5YcDo3B99rWTx4OUr7w8creTQ,51493
20
+ emhass-0.13.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
21
+ emhass-0.13.1.dist-info/entry_points.txt,sha256=6Bp1NFOGNv_fSTxYl1ke3K3h3aqAcBxI-bgq5yq-i1M,52
22
+ emhass-0.13.1.dist-info/licenses/LICENSE,sha256=1X3-S1yvOCBDBeox1aK3dq00m7dA8NDtcPrpKPISzbE,1077
23
+ emhass-0.13.1.dist-info/RECORD,,
@@ -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,,