Metadata-Version: 2.4
Name: open-energy-manager-fronius
Version: 1.0.0
Summary: package for reading Fronius devices
Author: Hannes
License-Expression: MIT
Project-URL: Homepage, https://github.com/Hans-4/open-energy-manager-fronius
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Dynamic: license-file

# Energy Manager Fronius

**Python package for reading from Fronius devices**

## Supported devices

| Device          | Verification              | Script  | Url |
|-----------------|---------------------------|---------|-----|
| Symo 10.0-3-M   | self tested               | symo.py | /   |
| Symo 3.0 - 20.0 | should work / not tested  | symo.py | /   |

## Installation

```bash
pip install open-energy-manager-fronius
```

## Usage

```python
from fronius.symo import FroniusSymoApi

device = FroniusSymoApi(ip="192.168.178.20", feed_in_tariff=0.12)

current_production, current_grid_usage, current_load, daily_production, daily_revenue, yearly_production, yearly_revenue, total_production, total_revenue = device.run_fronius()

print(current_production, current_grid_usage, current_load, daily_production, daily_revenue, yearly_production, yearly_revenue, total_production, total_revenue)
```
