31

如何在 python 中创建一个函数,如果主机名解析,则返回 1,如果主机名不解析,则返回 0。

我找不到有用的东西,有什么想法吗?

谢谢,

4

1 回答 1

78

您可以socket.gethostbyname()为此使用:

>>> import socket
>>> socket.gethostbyname('google.com')
'74.125.224.198'
>>> socket.gethostbyname('foo')           # no host 'foo' exists on the network
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
socket.gaierror: [Errno 8] nodename nor servname provided, or not known

您的函数可能如下所示:

def hostname_resolves(hostname):
    try:
        socket.gethostbyname(hostname)
        return 1
    except socket.error:
        return 0

例子:

>>> hostname_resolves('google.com')
1
>>> hostname_resolves('foo')
0
于 2012-07-23T18:21:08.367 回答