New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

omnikinverter

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

omnikinverter

Asynchronous Python client for the Omnik Inverter

  • 1.0.0
  • PyPI
  • Socket score

Maintainers
1

alt Banner of the Omnik Inverter package

GitHub Release Python Versions Project Stage Project Maintenance License

GitHub Activity PyPi Downloads GitHub Last Commit Open in Dev Containers

Maintainability Code Coverage

Code Quality Build Status

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.

Supported models

BrandModelDatasource
OmnikOmniksol 1000TLJS
OmnikOmniksol 1500TLJS
OmnikOmniksol 2000TLJS
OmnikOmniksol 2000TL2JSON
OmnikOmniksol 2500TLHTML
OmnikOmniksol 3000TLTCP
OmnikOmniksol 4000TL2JS
GinlongSolis-DLS-WiFiJSON/HTML
Hosola1500TLJS
HosalaBright 2500MTL-SJS
BosswerkBW-MI300HTML
BosswerkBW-MI600HTML
Sofar3600TLMHTML
Sofar2200TLJS
HuayuHY-600-ProHTML

Installation

pip install omnikinverter

Usage

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:

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.

Thank you for being involved! :heart_eyes:

Setting up development environment

The simplest way to begin is by utilizing the Dev Container 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

This Python project relies on Poetry as its dependency manager, providing comprehensive management and control over project dependencies.

You need at least:

Install all packages, including all development requirements:

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:

poetry shell
exit

Setup the pre-commit check, you must run this inside the virtual environment:

pre-commit install

Now you're all set to get started!

As this repository uses the pre-commit framework, all changes are linted and tested with each commit. You can run all checks and tests manually, using the following command:

poetry run pre-commit run --all-files

To run just the Python tests:

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.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc