From 7333f847df356a28630b47ebac9601978fb5b2f6 Mon Sep 17 00:00:00 2001 From: StevanFreeborn Date: Mon, 2 May 2022 16:15:28 -0500 Subject: [PATCH] update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index abb6018..1526441 100644 --- a/README.md +++ b/README.md @@ -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') +```