GoveePy
GoveePy is a WIP Python wrapper for the Govee API.
Table of Contents
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)
Release files for GoveePy 0.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| GoveePy-0.4.tar.gz | 5.7 kB | Details |
Release files / GoveePy-0.4.tar.gz
| Download URL | GoveePy-0.4.tar.gz |
|---|---|
| Size | 5.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
29609dbe19919e03a8610643a120aa2d7ccdd7ba0a1f1092b6d3cd51c6a8ef82
|
|
BLAKE2b-256 checksum How to use checksums |
cac916fa73a0ed24effef865339c0d15789427068c575ec09be78d824a7e0f55
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.12.0
|