update README.md

This commit is contained in:
StevanFreeborn
2022-05-02 16:29:34 -05:00
parent a23313f179
commit 8efcf4c0fd
+3 -3
View File
@@ -37,7 +37,7 @@ url = https://api.onspring.com
Example constructing `OnspringClient`:
```py
```python
import sys
from OnspringClient import OnspringClient
from configparser import ConfigParser
@@ -61,7 +61,7 @@ The examples that follow assume you have created an `OnspringClient` as describe
### Verify connectivity
```py
```python
canConnect = client.CanConnect()
if canConnect:
@@ -72,7 +72,7 @@ else:
### Get Apps
```py
```python
response = client.GetApps()
print(f'Status Code: {response.statusCode}')