From cbf89704d92e75536bc2fdf90cf03c839c02d55a Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Fri, 9 Dec 2016 16:28:21 -0600 Subject: [PATCH] Use local web server instead of Casselman --- POCloud/poc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/POCloud/poc.py b/POCloud/poc.py index 3fb0827..fc56c2c 100644 --- a/POCloud/poc.py +++ b/POCloud/poc.py @@ -18,8 +18,8 @@ requests.packages.urllib3.disable_warnings(InsecureRequestWarning) requests.packages.urllib3.disable_warnings(InsecurePlatformWarning) API_HTTP_TYPE = "https" -API_DEVICE_ADDRESS = "casselman16-8.callon.poconsole.net" -API_DEVICE_PORT = 8081 +API_DEVICE_ADDRESS = "192.168.1.30" +API_DEVICE_PORT = 5000 API_BASE_URL = "{}://{}:{}".format(API_HTTP_TYPE, API_DEVICE_ADDRESS, API_DEVICE_PORT)