Python WHOIS Module 01-27-2014, 02:56 PM
#1
I've been working on a whois lately for the HAKKIT pack and it seems it's all out of date? I tried using two methods of getting whois information, whois.query and whois.whois yet neither of them work.
Whois DL: https://pypi.python.org/pypi/whois
Download it, put the folder "whois-[insert numbers here]" in the C:\Python33(or whatever version you have)\Lib
Psst, rename it to "whois".
Code:
import whois
w = whois.query('%s' % input("Target domain: "))
print(w)
Code:
import whois
w = whois.whois('%s' % input("Target domain: "))
print(w)
Whois DL: https://pypi.python.org/pypi/whois
Download it, put the folder "whois-[insert numbers here]" in the C:\Python33(or whatever version you have)\Lib
Psst, rename it to "whois".