home-assistant-libs / aioeagle

Python library to control the EAGLE-200

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Aioeagle

Asynchronous library to control Rainforest EAGLE-200

Requires Python 3.8+ and uses asyncio and aiohttp.

import asyncio
from pprint import pprint

import aiohttp
from aioeagle import EagleHub


CLOUD_ID = "123456"
INSTALL_CODE = "abcdefghijklmn"


async def main():
    async with aiohttp.ClientSession() as session:
        await run(session)


async def run(websession):
    hub = EagleHub(websession, CLOUD_ID, INSTALL_CODE)
    devices = await hub.get_device_list()

    if len(devices) == 0:
        print("No devices found")
        return

    device = devices[0]

    pprint(device.details)
    print()
    pprint(await device.get_device_query(device.ENERGY_AND_POWER_VARIABLES))


asyncio.run(main())

Testing locally

python3 example.py <cloud_id> <install_code>

Timeouts

Aioeagle does not specify any timeouts for any requests. You will need to specify them in your own code. We recommend the async_timeout package:

import async_timeout

with async_timeout.timeout(10):
    devices = await hub.get_device_list()

Contribution guidelines

Object hierarchy and property/method names should match the EAGLE-200 API.

About

Python library to control the EAGLE-200

License:Apache License 2.0


Languages

Language:Python 100.0%