How can I do DNS lookups in Python, including referring to /etc/hosts?

Toby White picture Toby White · May 10, 2010 · Viewed 142.9k times · Source

dnspython will do my DNS lookups very nicely, but it entirely ignores the contents of /etc/hosts.

Is there a python library call which will do the right thing? ie check first in etc/hosts, and only fall back to DNS lookups otherwise?

Answer

Jochen Ritzel picture Jochen Ritzel · May 10, 2010

I'm not really sure if you want to do DNS lookups yourself or if you just want a host's ip. In case you want the latter,

import socket
print(socket.gethostbyname('localhost')) # result from hosts file
print(socket.gethostbyname('google.com')) # your os sends out a dns query