update README.md

This commit is contained in:
StevanFreeborn
2022-05-02 16:15:28 -05:00
parent a80a533e9c
commit 7333f847df
+11
View File
@@ -50,3 +50,14 @@ You may wish to refer to the full [Onspring API documentation](https://software.
## Example Code
The examples that follow assume you have created an `OnspringClient` as described in the **Start Coding** section.
### Verify connectivity
```py
canConnect = client.CanConnect()
if canConnect:
print('Connected successfully')
else:
print('Attempt to connect failed')
```