Tidy up code/docstrings

This commit is contained in:
zvecr
2022-07-19 00:46:08 +01:00
parent c798395122
commit 819bf2eff8
6 changed files with 151 additions and 81 deletions
+18
View File
@@ -0,0 +1,18 @@
# XAP python3 bindings
## Example
```python
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