From 32c77da17c5b95ec54e3775663bfe48a450613e0 Mon Sep 17 00:00:00 2001 From: Benajmyn Love Date: Sun, 4 Jun 2017 02:09:28 +1000 Subject: [PATCH] Added some basic comments --- HTTPy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/HTTPy.py b/HTTPy.py index fc02b99..5406b9b 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -65,6 +65,7 @@ def getInput(): #run code #else tell user they suck :D +#Main Loop while running == 1: getInput() if inInput == "": @@ -77,6 +78,7 @@ while running == 1: ipLookup(inInput) else: whois(inInput) + #Condense dig calls dig(inInput, "A") dig(inInput, "MX") dig(inInput, "TXT")