A Python module written by Richard Penman to perform whois lookup.
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
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 ...
1
vote
1answer
75 views
Django Buildout recipe for pywhois (not on pypi)
I Am trying to create a buildout recipe for pywhois on google code.
The site of which is here:
http://code.google.com/p/pywhois/
Note: if you use easy_install pywhois it installs another package ...
0
votes
0answers
178 views
pywhois on domains with multiple records
I'm trying to create a simple app that will allow me to run a whois, but I've hit a road block.
>>> w = pywhois.whois('google.com')
>>> print w
creation_date: []
domain_name: []
...
0
votes
0answers
101 views
pywhois returns wrong result
I use pywhois to check domain availability:
try:
w = pywhois.whois(Domain)
if not w:
message='Domain is available'
except:
message='Domain is taken'
when ...
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
227 views
Why does pywhois return empty headers?
I am using pywhois module in Python to fetch the Whois headers for websites. While it runs fine for most of the websites, I am trying to understand why sites like google.com and few others come back ...
0
votes
1answer
1k views
What is the simplest way to execute WHOIS protocol with python?
Im looking for a library or a code module that is most reccomended for WHOIS protocol.
Note that i've been allready googling it , but i didnt found what i was looking for.
what i need is something ...
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 ...
2
votes
2answers
1k views
In Python, Getting More Info About An IP Address
I know about gethostbyaddr in Python and that is somewhat useful for me. I would like to get even more info about an ip address like one can find at various websites such as who hosts that ip ...
