Added some basic comments

This commit is contained in:
Benjamyn Love 2017-06-04 02:09:28 +10:00
parent a73bffbf14
commit 32c77da17c

View File

@ -65,6 +65,7 @@ def getInput():
#run code #run code
#else tell user they suck :D #else tell user they suck :D
#Main Loop
while running == 1: while running == 1:
getInput() getInput()
if inInput == "": if inInput == "":
@ -77,6 +78,7 @@ while running == 1:
ipLookup(inInput) ipLookup(inInput)
else: else:
whois(inInput) whois(inInput)
#Condense dig calls
dig(inInput, "A") dig(inInput, "A")
dig(inInput, "MX") dig(inInput, "MX")
dig(inInput, "TXT") dig(inInput, "TXT")