Skip to content

Instantly share code, notes, and snippets.

@ardasevinc
Created August 11, 2018 15:30
Show Gist options
  • Save ardasevinc/2dead18ca872a32ba7640392e9d850fa to your computer and use it in GitHub Desktop.
Save ardasevinc/2dead18ca872a32ba7640392e9d850fa to your computer and use it in GitHub Desktop.
Whois
##Who is tool
import whois
import time
import sys
import easygui as g
while True:
usr_input= g.enterbox("Enter website url","Whois tool")
if usr_input == "Cancel":
break
web= whois.whois(usr_input)
g.msgbox(web,"Whois tool","OK")
usr= g.ynbox("Do you want to continue?","Whois tool")
if usr == "Yes":
continue
else:
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment