A Python module written by Richard Penman to perform whois lookup.
1
vote
1answer
186 views
error when using pywhois
I tryed to use pywhois to check domain availability:
import pywhois
try:
w = pywhois.whois('domain_name')
message='Domain is available'
except:
message='Domain is not ...
0
votes
1answer
224 views
a stable way to check domain availability with pywhois
I use this code to check domain availability:
try:
w = pywhois.whois('honarasai.com')
if not w:
message='Domain is available'
except:
message='Domain is taken'
It returns this ...
0
votes
1answer
829 views
Installing a Python module in Windows
I'm trying to install a Python module on my Windows computer. I installed the development version of the NetBeans IDE to use as my Python editor, and it seems that they install Jython 2.5 under their ...
0
votes
1answer
410 views
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, the screentshot is ...