zvecr 986534ea95 Stub out lighting sets il y a 3 ans
..
__init__.py 819bf2eff8 Tidy up code/docstrings il y a 4 ans
client.py 1dbb4c0f96 stash il y a 4 ans
device.py 7ee5347485 Add eeprom init route il y a 3 ans
readme.md 819bf2eff8 Tidy up code/docstrings il y a 4 ans
routes.py 986534ea95 Stub out lighting sets il y a 3 ans
types.py 986534ea95 Stub out lighting sets il y a 3 ans

readme.md

XAP python3 bindings

Example

from xap_client import XAPClient

# List Available Devices
devices = XAPClient.devices()
selected = devices[0]

# Connect then run commands
with XAPClient().connect(selected) as dev:
    print(dev.version())

API

TODO