From 9e09020241a8b29297d2a07ce967bd96ea2ad2e0 Mon Sep 17 00:00:00 2001 From: Jerry Flood Date: Fri, 27 Oct 2017 08:29:25 -0400 Subject: Add method to parse URL into piece parts Issue: TEST-68 Change-Id: I15a6053b6a2e9f6426eda88d960437c650093133 Signed-off-by: Jerry Flood --- eteutils/HTTPUtils.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/eteutils/HTTPUtils.py b/eteutils/HTTPUtils.py index bca6b61..0747ec9 100644 --- a/eteutils/HTTPUtils.py +++ b/eteutils/HTTPUtils.py @@ -1,5 +1,6 @@ import urllib from requests.packages import urllib3 +from urlparse import urlparse class HTTPUtils: """HTTPUtils is common resource for simple http helper keywords.""" @@ -10,4 +11,8 @@ class HTTPUtils: def disable_warnings(self): """ Disable the cert warnings when creating sessions for A&AI API Calls """ - urllib3.disable_warnings() \ No newline at end of file + urllib3.disable_warnings() + + def url_parse(self, url): + """ Get pieces of the URL """ + return urlparse(url) \ No newline at end of file -- cgit 1.2.3-korg