GoveePy 0.4

Creator: bradpython12

Last updated:

Add to Cart

Description:

GoveePy 0.4

GoveePy
GoveePy is a WIP Python wrapper for the Govee API.
Table of Contents

GoveePy

Table of Contents
Installation
Usage



Installation
Installation is easy just do
pip install GoveePy
Usage
from govee import Govee

g = Govee("API-KEY")
g.get_devices()

device = g.get_device_by_name("Living Room Light")
if device is None:
exit()

device.turn_on()
device.set_brightness(100)

You can also use the Local API.
Make sure you have enabled it for the light you want to use.
from govee import GoveeLocal

g = GoveeLocal()
g.get_devices()
device = g.get_device_by_ip("192.169.0.143")

if device is None:
exit()

device.turn_on()
device.set_brightness(100)

License

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

Customer Reviews

There are no reviews.