Tagged Questions
1
vote
2answers
245 views
How to flush cache for socket.gethostbyname response?
Anyone run into this before:
After updating DNS records..I do a dig for 'test.somedomain.com' I get 167.69.143.234, however when I do a socket.gethostbyname('test.somedomain.com') I get 167.69.6.234. ...
1
vote
2answers
583 views
Python urllib2: gethostbyname
I need to get requested host's ip address using urllib2 like
import urllib2
req = urllib2.Request('http://www.example.com/')
r = urllib2.urlopen(req)
Is there any issues like ip = ...
0
votes
1answer
36 views
socket.gethostbyname doesn't behave well
I'm using gethostbyname function for DNS and IP addresses checking. However, it does not work well in this case:
>>> from socket import gethostbyname
>>> gethostbyname('lns.sa')
...
0
votes
2answers
2k views
Python attribute error: type object '_socketobject' has no attribute 'gethostbyname'
I am trying to do this in my program:
dest = socket.gethostbyname(host)
I have included the line
from socket import *
in the beginning of the file
I am getting an Attribute Error that says:
...