Metadata-Version: 2.4
Name: solaredgeha
Version: 0.3.2
Summary: A python API wrapper for Solaredge Home Automation service
Project-URL: Homepage, https://github.com/amccarthy/solaredge-ha
Project-URL: Issues, https://github.com/amccarthy/solaredge-ha/issues
Author-email: Aaron McCarthy <mccarthy.aaron@gmail.com>
License: The MIT License (MIT)
        
        Copyright (c) 2020 Aaron McCarthy
        
        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.
License-File: LICENSE
Keywords: home automation,solaredge
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.12
Requires-Dist: aiohttp>=3.12.14
Requires-Dist: yarl>=1.20.1
Description-Content-Type: text/markdown

# SolarEdge Home Automation
API wrapper for SolarEdge Home Automation service.

This is an undocumented api.

## Create a new connection by supplying your Solaredge HA token
```
service = solaredgeha.SolarEdgeHa(username, password)
```

## API Requests
2 API requests are supported. The methods return the parsed JSON response as a dict.

```
def login(self):

def get_sites(self):

def get_devices(self):

def activate_device(self, reporterId, level, duration=None):

```

