From 558f9ae9e11cccd5a146fa5c59a27394eb5f5093 Mon Sep 17 00:00:00 2001 From: Benajmyn Love Date: Fri, 2 Jun 2017 02:43:59 +1000 Subject: [PATCH] Removed old BS --- HTTPy.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/HTTPy.py b/HTTPy.py index 2037b5e..a37d127 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -11,10 +11,7 @@ inInput = "" partDomain = "" #URL https://www.whois.com/whois/benjamyn-testing.com #class df-block-raw - -print("Domain: ") - - + def iterate(inArray): count = 0 while count != len(inArray): @@ -50,7 +47,7 @@ def ipLookup(inDomain): def getInput(): global inInput global partDomain - inInput = raw_input() + inInput = raw_input("Please enter a domain/IP: ") partDomain = inInput.split(".") @@ -58,7 +55,6 @@ def getInput(): #run code #else tell user they suck :D -print "Domain: " getInput() if len(partDomain) == 4: ipLookup(inInput)