不依赖本机库的东西会更好。

其他提示

扭曲的 有一个优秀的纯 python 实现,请参阅 扭曲的名字 来源(特别是 dns.py)。如果您无法使用他们的所有代码,也许您可​​以提取并重新利用他们的代码 Record_SRV 该文件中的类。

使用 pydns

import DNS
DNS.ParseResolvConf()
srv_req = DNS.Request(qtype = 'srv')
srv_result = srv_req.req('_ldap._tcp.example.org')

for result in srv_result.answers:
    if result['typename'] == 'SRV':
        print result['data']

使用 dnspython

>>> import dns.resolver
>>> domain='jabberzac.org'
>>> srvInfo = {}
>>> srv_records=dns.resolver.query('_xmpp-client._tcp.'+domain, 'SRV')
>>> for srv in srv_records:
...     srvInfo['weight']   = srv.weight
...     srvInfo['host']     = str(srv.target).rstrip('.')
...     srvInfo['priority'] = srv.priority
...     srvInfo['port']     = srv.port
... 
>>> print srvInfo
{'priority': 0, 'host': 'xmpp.jabberzac.org', 'port': 5222, 'weight': 0}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top