From 2e33d9d8998cb79482426dac6767fb78d501b49a Mon Sep 17 00:00:00 2001 From: John W Kerns Date: Mon, 15 Jan 2018 14:18:16 -0800 Subject: [PATCH] Added client example --- checkmyip.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/checkmyip.py b/checkmyip.py index 3432fb1..ba495a9 100755 --- a/checkmyip.py +++ b/checkmyip.py @@ -273,7 +273,11 @@ class CheckMyIP_Client: else: raise Exception("Allowed families are 'auto', 'ipv4', 'ipv6'") +### CheckMyIP_Client Example Usage ### +#client = CheckMyIP_Client() +#client.get() + if __name__ == "__main__": logging = log_management() # Instantiate log class - start() # Start the server \ No newline at end of file + start() # Start the server