emhass 0.12.7__tar.gz → 0.13.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.12.7 → emhass-0.13.0}/.gitignore +2 -0
- {emhass-0.12.7 → emhass-0.13.0}/PKG-INFO +3 -4
- {emhass-0.12.7 → emhass-0.13.0}/README.md +1 -1
- emhass-0.13.0/emhass/__init__.py +0 -0
- emhass-0.13.0/emhass/command_line.py +1850 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/data/associations.csv +5 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/data/config_defaults.json +12 -3
- emhass-0.13.0/emhass/data/emhass_inverters.csv +8 -0
- emhass-0.13.0/emhass/data/emhass_modules.csv +6 -0
- emhass-0.13.0/emhass/forecast.py +1618 -0
- emhass-0.13.0/emhass/machine_learning_forecaster.py +388 -0
- emhass-0.13.0/emhass/machine_learning_regressor.py +247 -0
- emhass-0.13.0/emhass/optimization.py +1502 -0
- emhass-0.13.0/emhass/retrieve_hass.py +695 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/static/data/param_definitions.json +42 -4
- emhass-0.13.0/emhass/static/img/emhass_icon.png +0 -0
- emhass-0.13.0/emhass/utils.py +1758 -0
- emhass-0.13.0/emhass/web_server.py +756 -0
- {emhass-0.12.7 → emhass-0.13.0}/pyproject.toml +3 -3
- {emhass-0.12.7 → emhass-0.13.0}/LICENSE +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/data/cec_inverters.pbz2 +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/data/cec_modules.pbz2 +0 -0
- {emhass-0.12.7/src/emhass/static → emhass-0.13.0/emhass}/img/emhass_icon.png +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/static/advanced.html +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/static/basic.html +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/static/configuration_list.html +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/static/configuration_script.js +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/static/img/emhass_logo_short.svg +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/static/img/feather-sprite.svg +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/static/script.js +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/static/style.css +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/templates/configuration.html +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/templates/index.html +0 -0
- {emhass-0.12.7/src → emhass-0.13.0}/emhass/templates/template.html +0 -0
@@ -14,6 +14,7 @@ secrets_emhass.yaml
|
|
14
14
|
.devcontainer/devcontainer.json
|
15
15
|
*.pkl
|
16
16
|
**/app
|
17
|
+
.cache.sqlite
|
17
18
|
|
18
19
|
|
19
20
|
# Byte-compiled / optimized / DLL files
|
@@ -161,3 +162,4 @@ dmypy.json
|
|
161
162
|
# Cython debug symbols
|
162
163
|
cython_debug/
|
163
164
|
|
165
|
+
docs/EMHASS_presentation.pdf
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: emhass
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.13.0
|
4
4
|
Summary: An Energy Management System for Home Assistant
|
5
5
|
Project-URL: Homepage, https://github.com/davidusb-geek/emhass
|
6
6
|
Author-email: David HERNANDEZ <davidusb@gmail.com>
|
@@ -11,10 +11,9 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
13
13
|
Classifier: Operating System :: OS Independent
|
14
|
-
Classifier: Programming Language :: Python :: 3.
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
15
15
|
Classifier: Topic :: Software Development :: Build Tools
|
16
16
|
Requires-Python: <3.13,>=3.10
|
17
|
-
Requires-Dist: beautifulsoup4>=4.12.3
|
18
17
|
Requires-Dist: flask>=3.1.0
|
19
18
|
Requires-Dist: gunicorn>=23.0.0
|
20
19
|
Requires-Dist: h5py>=3.12.1
|
@@ -182,7 +181,7 @@ For Home Assistant OS and HA Supervised users, A [EMHASS an add-on repository](h
|
|
182
181
|
|
183
182
|
You can find the add-on with the installation instructions here: [https://github.com/davidusb-geek/emhass-add-on](https://github.com/davidusb-geek/emhass-add-on)
|
184
183
|
|
185
|
-
These architectures are supported: `amd64
|
184
|
+
These architectures are supported: `amd64` and `aarch64` (currently `armv7` and `armhf` are not supported).
|
186
185
|
|
187
186
|
_Note: Both EMHASS via Docker and EMHASS-Add-on contain the same Docker image. The EMHASS-Add-on repository however, stores Home Assistant addon specific configuration information and maintains EMHASS image version control._
|
188
187
|
|
@@ -135,7 +135,7 @@ For Home Assistant OS and HA Supervised users, A [EMHASS an add-on repository](h
|
|
135
135
|
|
136
136
|
You can find the add-on with the installation instructions here: [https://github.com/davidusb-geek/emhass-add-on](https://github.com/davidusb-geek/emhass-add-on)
|
137
137
|
|
138
|
-
These architectures are supported: `amd64
|
138
|
+
These architectures are supported: `amd64` and `aarch64` (currently `armv7` and `armhf` are not supported).
|
139
139
|
|
140
140
|
_Note: Both EMHASS via Docker and EMHASS-Add-on contain the same Docker image. The EMHASS-Add-on repository however, stores Home Assistant addon specific configuration information and maintains EMHASS image version control._
|
141
141
|
|
File without changes
|