mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-12-04 00:45:13 +00:00
.. | ||
__init__.py | ||
client.py | ||
constants.py | ||
device.py | ||
pyproject.toml | ||
readme.md | ||
routes.py | ||
types.py |
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