Add method to parse URL into piece parts 89/20989/1 1.0.0-Amsterdam 1.0.0-ONAP 1.0.1-Amsterdam 1.0.1-ONAP
authorJerry Flood <jf9860@att.com>
Fri, 27 Oct 2017 12:29:25 +0000 (08:29 -0400)
committerJerry Flood <jf9860@att.com>
Fri, 27 Oct 2017 12:29:44 +0000 (08:29 -0400)
Issue: TEST-68
Change-Id: I15a6053b6a2e9f6426eda88d960437c650093133
Signed-off-by: Jerry Flood <jf9860@att.com>
eteutils/HTTPUtils.py

index bca6b61..0747ec9 100644 (file)
@@ -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