zvecr 87fd4b42f5 Tidy up broadcast in python client il y a 3 ans
..
__init__.py d1e3036ce2 Generate python effect constants il y a 3 ans
client.py 1dbb4c0f96 stash il y a 3 ans
constants.py 751e72c1f9 Fix xap_client gen after render_xap_output changes il y a 3 ans
device.py 87fd4b42f5 Tidy up broadcast in python client il y a 3 ans
pyproject.toml f3f9b2b08c Dummy client config - more config il y a 3 ans
readme.md 819bf2eff8 Tidy up code/docstrings il y a 4 ans
routes.py 751e72c1f9 Fix xap_client gen after render_xap_output changes il y a 3 ans
types.py 87fd4b42f5 Tidy up broadcast in python client 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