Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/klaasnicolaas/python-omnikinverter
☀️ Asynchronous Python client for the Omnik Inverter
https://github.com/klaasnicolaas/python-omnikinverter
async client energy hacktoberfest inverter omnik python solar
Last synced: 2 months ago
JSON representation
☀️ Asynchronous Python client for the Omnik Inverter
- Host: GitHub
- URL: https://github.com/klaasnicolaas/python-omnikinverter
- Owner: klaasnicolaas
- License: mit
- Created: 2021-08-17T20:14:51.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-29T07:02:15.000Z (7 months ago)
- Last Synced: 2024-05-29T13:34:48.862Z (7 months ago)
- Topics: async, client, energy, hacktoberfest, inverter, omnik, python, solar
- Language: Python
- Homepage:
- Size: 1.76 MB
- Stars: 8
- Watchers: 5
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
![alt Banner of the Omnik Inverter package](https://raw.githubusercontent.com/klaasnicolaas/python-omnikinverter/main/assets/header_omnik_inverter-min.png)
[![GitHub Release][releases-shield]][releases]
[![Python Versions][python-versions-shield]][pypi]
![Project Stage][project-stage-shield]
![Project Maintenance][maintenance-shield]
[![License][license-shield]](LICENSE)[![GitHub Activity][commits-shield]][commits-url]
[![PyPi Downloads][downloads-shield]][downloads-url]
[![GitHub Last Commit][last-commit-shield]][commits-url]
[![Open in Dev Containers][devcontainer-shield]][devcontainer][![Maintainability][maintainability-shield]][maintainability-url]
[![Code Coverage][codecov-shield]][codecov-url][![Code Quality][code-quality-shield]][code-quality]
[![Build Status][build-shield]][build-url]Asynchronous Python client for the Omnik Inverter.
## About
A python package with which you can read the data from your Omnik Inverter. Keep in mind that this repository uses webscraping, this is **not** a neat way of data processing but due to the lack of a local API this is the only option.
**NOTE**: In mid-2021, manufacturer Omnik was declared bankrupt. You can find more information about what your alternatives are [here][energiewacht].
## Supported models
| Brand | Model | Datasource |
|----------|------------------|------------|
| Omnik | Omniksol 1000TL | JS |
| Omnik | Omniksol 1500TL | JS |
| Omnik | Omniksol 2000TL | JS |
| Omnik | Omniksol 2000TL2 | JSON |
| Omnik | Omniksol 2500TL | HTML |
| Omnik | Omniksol 3000TL | TCP |
| Omnik | Omniksol 4000TL2 | JS |
| Ginlong | Solis-DLS-WiFi | JSON/HTML |
| Hosola | 1500TL | JS |
| Hosala | Bright 2500MTL-S | JS |
| Bosswerk | BW-MI300 | HTML |
| Bosswerk | BW-MI600 | HTML |
| Sofar | 3600TLM | HTML |
| Sofar | 2200TL | JS |
| Huayu | HY-600-Pro | HTML |## Installation
```bash
pip install omnikinverter
```## Usage
```python
import asynciofrom omnikinverter import OmnikInverter
async def main():
"""Show example on getting Omnik Inverter data."""
async with OmnikInverter(
host="example_host",
source_type="javascript",
username="omnik",
password="inverter",
) as client:
inverter = await client.inverter()
device = await client.device()
print(inverter)
print(device)if __name__ == "__main__":
asyncio.run(main())
```For the **source type** you can choose between: `javascript` (default), `json`, `html` and `tcp`.
## Data
You can read the following data with this package:
### Inverter
- Serial Number
- Inverter Model
- Firmware Version - Main
- Firmware Version - Slave
- Alarm Code
- Rated Power (W)
- Current Power Production (W)
- Day Energy Production (kWh)
- Total Energy Production (kWh)On the `tcp` source type you can also find:
- Inverter temperature;
- Voltage and current for the DC input strings (up to 3)
- Voltage, current, frequency and power for all AC outputs (also up to 3)
- Total number of runtime hours.### Device
- Signal Quality (only with JS)
- Firmware Version
- IP Address## Use cases
This python package is used in the following projects, among others:
- [home-assistant-omnik-inverter][omnik-inverter] by Robbin Janssen
## Contributing
This is an active open-source project. We are always open to people who want to
use the code or contribute to it.We've set up a separate document for our
[contribution guidelines](CONTRIBUTING.md).Thank you for being involved! :heart_eyes:
## Setting up development environment
The simplest way to begin is by utilizing the [Dev Container][devcontainer]
feature of Visual Studio Code or by opening a CodeSpace directly on GitHub.
By clicking the button below you immediately start a Dev Container in Visual Studio Code.[![Open in Dev Containers][devcontainer-shield]][devcontainer]
This Python project relies on [Poetry][poetry] as its dependency manager,
providing comprehensive management and control over project dependencies.You need at least:
- Python 3.11+
- [Poetry][poetry-install]Install all packages, including all development requirements:
```bash
poetry install
```Poetry creates by default an virtual environment where it installs all
necessary pip packages, to enter or exit the venv run the following commands:```bash
poetry shell
exit
```Setup the pre-commit check, you must run this inside the virtual environment:
```bash
pre-commit install
```*Now you're all set to get started!*
As this repository uses the [pre-commit][pre-commit] framework, all changes
are linted and tested with each commit. You can run all checks and tests
manually, using the following command:```bash
poetry run pre-commit run --all-files
```To run just the Python tests:
```bash
poetry run pytest
```## License
MIT License
Copyright (c) 2021-2024 Klaas Schoute
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:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.[energiewacht]: https://www.energiewacht.com/hoofdsite/home/nieuws/omnik-failliet/
[omnik-inverter]: https://github.com/robbinjanssen/home-assistant-omnik-inverter[build-shield]: https://github.com/klaasnicolaas/python-omnikinverter/actions/workflows/tests.yaml/badge.svg
[build-url]: https://github.com/klaasnicolaas/python-omnikinverter/actions/workflows/tests.yaml
[code-quality-shield]: https://github.com/klaasnicolaas/python-omnikinverter/actions/workflows/codeql.yaml/badge.svg
[code-quality]: https://github.com/klaasnicolaas/python-omnikinverter/actions/workflows/codeql.yaml
[commits-shield]: https://img.shields.io/github/commit-activity/y/klaasnicolaas/python-omnikinverter.svg
[commits-url]: https://github.com/klaasnicolaas/python-omnikinverter/commits/main
[codecov-shield]: https://codecov.io/gh/klaasnicolaas/python-omnikinverter/branch/main/graph/badge.svg?token=VQTR24YFQ9
[codecov-url]: https://codecov.io/gh/klaasnicolaas/python-omnikinverter
[devcontainer-shield]: https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode
[devcontainer]: https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/klaasnicolaas/python-omnikinverter
[downloads-shield]: https://img.shields.io/pypi/dm/omnikinverter
[downloads-url]: https://pypistats.org/packages/omnikinverter
[license-shield]: https://img.shields.io/github/license/klaasnicolaas/python-omnikinverter.svg
[last-commit-shield]: https://img.shields.io/github/last-commit/klaasnicolaas/python-omnikinverter.svg
[maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg
[maintainability-shield]: https://api.codeclimate.com/v1/badges/ec5166b74a63f375d1a1/maintainability
[maintainability-url]: https://codeclimate.com/github/klaasnicolaas/python-omnikinverter/maintainability
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[pypi]: https://pypi.org/project/omnikinverter/
[python-versions-shield]: https://img.shields.io/pypi/pyversions/omnikinverter
[releases-shield]: https://img.shields.io/github/release/klaasnicolaas/python-omnikinverter.svg
[releases]: https://github.com/klaasnicolaas/python-omnikinverter/releases[poetry-install]: https://python-poetry.org/docs/#installation
[poetry]: https://python-poetry.org
[pre-commit]: https://pre-commit.com