Metadata-Version: 2.4
Name: solaredge-web
Version: 0.1.0
Summary: A python client library for SolarEdge Web
Author-email: tronikos <tronikos@gmail.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/tronikos/solaredge-web
Project-URL: Bug Tracker, https://github.com/tronikos/solaredge-web/issues
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.8
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Dynamic: license-file

# solaredge-web

A python client library for SolarEdge Web.
Fetches energy data for each inverter/string/module via the web API and not via the official API which doesn't expose this data.

## Development environment

```sh
python3 -m venv .venv
source .venv/bin/activate
# for Windows CMD:
# .venv\Scripts\activate.bat
# for Windows PowerShell:
# .venv\Scripts\Activate.ps1

# Install dependencies
python -m pip install --upgrade pip
python -m pip install -e .

# Run pre-commit
python -m pip install pre-commit
pre-commit install
pre-commit run --all-files

# Run tests
python -m pip install -e ".[test]"
pytest

# Build package
python -m pip install build
python -m build
```
