PyMyGekko 1.2.0

Creator: bradpython12

Last updated:

Add to Cart

Description:

PyMyGekko 1.2.0

PyMyGekko
Python Library to access the myGEKKO Query API.




Table of Contents

Installation
License

Installation
pip install pymygekko

Usage
from aiohttp import ClientSession

from PyMyGekko import MyGekkoQueryApiClient
from PyMyGekko.resources.Lights import LightState

async with ClientSession() as session:
api = MyGekkoQueryApiClient(
"USERNAME",
"APIKEY",
"GEKKOID",
session,
)

await api.read_data()

# Read lights
lights = api.get_lights()
# assuming there is a light...
await lights[0].set_state(LightState.ON)

License
pymygekko is distributed under the terms of the MIT license.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.