omnikinverter


Nameomnikinverter JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/klaasnicolaas/python-omnikinverter
SummaryAsynchronous Python client for the Omnik Inverter
upload_time2024-01-03 14:23:00
maintainerKlaas Schoute
docs_urlNone
authorKlaas Schoute
requires_python>=3.11,<4.0
licenseMIT
keywords omnik inverter power energy async client
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!-- Banner -->
![alt Banner of the Omnik Inverter package](https://raw.githubusercontent.com/klaasnicolaas/python-omnikinverter/main/assets/header_omnik_inverter-min.png)

<!-- PROJECT SHIELDS -->
[![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 asyncio

from 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-2023 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

<!-- MARKDOWN LINKS & IMAGES -->
[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/2023.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


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/klaasnicolaas/python-omnikinverter",
    "name": "omnikinverter",
    "maintainer": "Klaas Schoute",
    "docs_url": null,
    "requires_python": ">=3.11,<4.0",
    "maintainer_email": "hello@student-techlife.com",
    "keywords": "omnik,inverter,power,energy,async,client",
    "author": "Klaas Schoute",
    "author_email": "hello@student-techlife.com",
    "download_url": "https://files.pythonhosted.org/packages/5d/d0/22352cd1a3ba3422e7152f26806cb883d75563c2187f0d142d57ca47f2be/omnikinverter-1.0.0.tar.gz",
    "platform": null,
    "description": "<!-- Banner -->\n![alt Banner of the Omnik Inverter package](https://raw.githubusercontent.com/klaasnicolaas/python-omnikinverter/main/assets/header_omnik_inverter-min.png)\n\n<!-- PROJECT SHIELDS -->\n[![GitHub Release][releases-shield]][releases]\n[![Python Versions][python-versions-shield]][pypi]\n![Project Stage][project-stage-shield]\n![Project Maintenance][maintenance-shield]\n[![License][license-shield]](LICENSE)\n\n[![GitHub Activity][commits-shield]][commits-url]\n[![PyPi Downloads][downloads-shield]][downloads-url]\n[![GitHub Last Commit][last-commit-shield]][commits-url]\n[![Open in Dev Containers][devcontainer-shield]][devcontainer]\n\n[![Maintainability][maintainability-shield]][maintainability-url]\n[![Code Coverage][codecov-shield]][codecov-url]\n\n[![Code Quality][code-quality-shield]][code-quality]\n[![Build Status][build-shield]][build-url]\n\nAsynchronous Python client for the Omnik Inverter.\n\n## About\n\nA 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.\n\n**NOTE**: In mid-2021, manufacturer Omnik was declared bankrupt. You can find more information about what your alternatives are [here][energiewacht].\n\n## Supported models\n\n| Brand    | Model            | Datasource |\n|----------|------------------|------------|\n| Omnik    | Omniksol 1000TL  | JS         |\n| Omnik    | Omniksol 1500TL  | JS         |\n| Omnik    | Omniksol 2000TL  | JS         |\n| Omnik    | Omniksol 2000TL2 | JSON       |\n| Omnik    | Omniksol 2500TL  | HTML       |\n| Omnik    | Omniksol 3000TL  | TCP        |\n| Omnik    | Omniksol 4000TL2 | JS         |\n| Ginlong  | Solis-DLS-WiFi   | JSON/HTML  |\n| Hosola   | 1500TL           | JS         |\n| Hosala   | Bright 2500MTL-S | JS         |\n| Bosswerk | BW-MI300         | HTML       |\n| Bosswerk | BW-MI600         | HTML       |\n| Sofar    | 3600TLM          | HTML       |\n| Sofar    | 2200TL           | JS         |\n| Huayu    | HY-600-Pro       | HTML       |\n\n## Installation\n\n```bash\npip install omnikinverter\n```\n\n## Usage\n\n```python\nimport asyncio\n\nfrom omnikinverter import OmnikInverter\n\n\nasync def main():\n    \"\"\"Show example on getting Omnik Inverter data.\"\"\"\n    async with OmnikInverter(\n        host=\"example_host\",\n        source_type=\"javascript\",\n        username=\"omnik\",\n        password=\"inverter\",\n    ) as client:\n        inverter = await client.inverter()\n        device = await client.device()\n        print(inverter)\n        print(device)\n\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n```\n\nFor the **source type** you can choose between: `javascript` (default), `json`, `html` and `tcp`.\n\n## Data\n\nYou can read the following data with this package:\n\n### Inverter\n\n- Serial Number\n- Inverter Model\n- Firmware Version - Main\n- Firmware Version - Slave\n- Alarm Code\n- Rated Power (W)\n- Current Power Production (W)\n- Day Energy Production (kWh)\n- Total Energy Production (kWh)\n\nOn the `tcp` source type you can also find:\n\n- Inverter temperature;\n- Voltage and current for the DC input strings (up to 3)\n- Voltage, current, frequency and power for all AC outputs (also up to 3)\n- Total number of runtime hours.\n\n### Device\n\n- Signal Quality (only with JS)\n- Firmware Version\n- IP Address\n\n## Use cases\n\nThis python package is used in the following projects, among others:\n\n- [home-assistant-omnik-inverter][omnik-inverter] by Robbin Janssen\n\n## Contributing\n\nThis is an active open-source project. We are always open to people who want to\nuse the code or contribute to it.\n\nWe've set up a separate document for our\n[contribution guidelines](CONTRIBUTING.md).\n\nThank you for being involved! :heart_eyes:\n\n## Setting up development environment\n\nThe simplest way to begin is by utilizing the [Dev Container][devcontainer]\nfeature of Visual Studio Code or by opening a CodeSpace directly on GitHub.\nBy clicking the button below you immediately start a Dev Container in Visual Studio Code.\n\n[![Open in Dev Containers][devcontainer-shield]][devcontainer]\n\nThis Python project relies on [Poetry][poetry] as its dependency manager,\nproviding comprehensive management and control over project dependencies.\n\nYou need at least:\n\n- Python 3.11+\n- [Poetry][poetry-install]\n\nInstall all packages, including all development requirements:\n\n```bash\npoetry install\n```\n\nPoetry creates by default an virtual environment where it installs all\nnecessary pip packages, to enter or exit the venv run the following commands:\n\n```bash\npoetry shell\nexit\n```\n\nSetup the pre-commit check, you must run this inside the virtual environment:\n\n```bash\npre-commit install\n```\n\n*Now you're all set to get started!*\n\nAs this repository uses the [pre-commit][pre-commit] framework, all changes\nare linted and tested with each commit. You can run all checks and tests\nmanually, using the following command:\n\n```bash\npoetry run pre-commit run --all-files\n```\n\nTo run just the Python tests:\n\n```bash\npoetry run pytest\n```\n\n## License\n\nMIT License\n\nCopyright (c) 2021-2023 Klaas Schoute\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n[energiewacht]: https://www.energiewacht.com/hoofdsite/home/nieuws/omnik-failliet/\n[omnik-inverter]: https://github.com/robbinjanssen/home-assistant-omnik-inverter\n\n<!-- MARKDOWN LINKS & IMAGES -->\n[build-shield]: https://github.com/klaasnicolaas/python-omnikinverter/actions/workflows/tests.yaml/badge.svg\n[build-url]: https://github.com/klaasnicolaas/python-omnikinverter/actions/workflows/tests.yaml\n[code-quality-shield]: https://github.com/klaasnicolaas/python-omnikinverter/actions/workflows/codeql.yaml/badge.svg\n[code-quality]: https://github.com/klaasnicolaas/python-omnikinverter/actions/workflows/codeql.yaml\n[commits-shield]: https://img.shields.io/github/commit-activity/y/klaasnicolaas/python-omnikinverter.svg\n[commits-url]: https://github.com/klaasnicolaas/python-omnikinverter/commits/main\n[codecov-shield]: https://codecov.io/gh/klaasnicolaas/python-omnikinverter/branch/main/graph/badge.svg?token=VQTR24YFQ9\n[codecov-url]: https://codecov.io/gh/klaasnicolaas/python-omnikinverter\n[devcontainer-shield]: https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode\n[devcontainer]: https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/klaasnicolaas/python-omnikinverter\n[downloads-shield]: https://img.shields.io/pypi/dm/omnikinverter\n[downloads-url]: https://pypistats.org/packages/omnikinverter\n[license-shield]: https://img.shields.io/github/license/klaasnicolaas/python-omnikinverter.svg\n[last-commit-shield]: https://img.shields.io/github/last-commit/klaasnicolaas/python-omnikinverter.svg\n[maintenance-shield]: https://img.shields.io/maintenance/yes/2023.svg\n[maintainability-shield]: https://api.codeclimate.com/v1/badges/ec5166b74a63f375d1a1/maintainability\n[maintainability-url]: https://codeclimate.com/github/klaasnicolaas/python-omnikinverter/maintainability\n[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg\n[pypi]: https://pypi.org/project/omnikinverter/\n[python-versions-shield]: https://img.shields.io/pypi/pyversions/omnikinverter\n[releases-shield]: https://img.shields.io/github/release/klaasnicolaas/python-omnikinverter.svg\n[releases]: https://github.com/klaasnicolaas/python-omnikinverter/releases\n\n[poetry-install]: https://python-poetry.org/docs/#installation\n[poetry]: https://python-poetry.org\n[pre-commit]: https://pre-commit.com\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Asynchronous Python client for the Omnik Inverter",
    "version": "1.0.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/klaasnicolaas/python-omnikinverter/issues",
        "Changelog": "https://github.com/klaasnicolaas/python-omnikinverter/releases",
        "Documentation": "https://github.com/klaasnicolaas/python-omnikinverter",
        "Homepage": "https://github.com/klaasnicolaas/python-omnikinverter",
        "Repository": "https://github.com/klaasnicolaas/python-omnikinverter"
    },
    "split_keywords": [
        "omnik",
        "inverter",
        "power",
        "energy",
        "async",
        "client"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "518e81fbc120b6d497a29d12644dc92ed567e275ad6abee0069f5d67f14736c9",
                "md5": "7fce6660306bbe87a9044c9200769141",
                "sha256": "3ee09b7c1fda8c343b3f79d74c0ddb56739c27e63c14aa780e25e226189c54c8"
            },
            "downloads": -1,
            "filename": "omnikinverter-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7fce6660306bbe87a9044c9200769141",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11,<4.0",
            "size": 14494,
            "upload_time": "2024-01-03T14:22:57",
            "upload_time_iso_8601": "2024-01-03T14:22:57.416247Z",
            "url": "https://files.pythonhosted.org/packages/51/8e/81fbc120b6d497a29d12644dc92ed567e275ad6abee0069f5d67f14736c9/omnikinverter-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dd022352cd1a3ba3422e7152f26806cb883d75563c2187f0d142d57ca47f2be",
                "md5": "5f033471e79b5336a5718dfee47c8188",
                "sha256": "7c36b409c00f2657505c9bf06d0dcc50b5888dfcfc56d5ebf2896f9f877a208f"
            },
            "downloads": -1,
            "filename": "omnikinverter-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "5f033471e79b5336a5718dfee47c8188",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11,<4.0",
            "size": 16171,
            "upload_time": "2024-01-03T14:23:00",
            "upload_time_iso_8601": "2024-01-03T14:23:00.404066Z",
            "url": "https://files.pythonhosted.org/packages/5d/d0/22352cd1a3ba3422e7152f26806cb883d75563c2187f0d142d57ca47f2be/omnikinverter-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-03 14:23:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "klaasnicolaas",
    "github_project": "python-omnikinverter",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "omnikinverter"
}
        
Elapsed time: 0.15735s