Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 637 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 637 Bytes

Fluepdot HTTP API Python wrapper

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.

Installation

Install it by running pip3 install fluepdot.

Usage

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.