This Python wrapper provides several convenience methods to interface with the HTTP API of the hardware/software project fluepdot. It relies on the Pillow library to render text and load images/bitmaps.
Install it by running pip3 install fluepdot
.
There is a CLI for basic functions. To view the help, run python3 -m fluepdot --help
.
To use it in Python code, instantiate a Fluepdot class:
from fluepdot import Fluepdot
fluepdot = Fluepdot("http://fluepdot.local")
For more details, check out the examples
folder.