How To Use Pywhois Module In Gae
I have problems when try to import pywhois module, i can import my own module but still have troubles when import pywhois. I moved the pywhois folder in my project folder domain, t
Solution 1:
Google App Engine doesn't support the socket
module, which pywhois
uses. It allows you to import socket
, but it's an empty module.
Solution 2:
import whois
site = input ("Enter Site : ")
n = whois.whois (site)
print (n)
this is best whois Enjoy that, easy.
Post a Comment for "How To Use Pywhois Module In Gae"