Something which doesn't rely on native libraries would be better.
Asked
Active
Viewed 1.5k times
4 Answers
11
You could try the dnspython library:

ars
- 120,335
- 23
- 147
- 134
-
4Works thanks! import dns.resolver answers = dns.resolver.query('_xmpp-server._tcp.gmail.com', 'SRV') for rdata in answers: print str(rdata) – Gili Nachum Aug 29 '09 at 21:34
-
2This is a link only answer – oz123 Oct 05 '18 at 12:06
7
twisted has an excellent pure-python implementation, see twisted.names sources (especially dns.py). If you can't use all of their code, maybe you can extract and repurpose their Record_SRV
class from that file.

Alex Martelli
- 854,459
- 170
- 1,222
- 1,395
6
Using 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}

bstpierre
- 30,042
- 15
- 70
- 103

CHINTAN VADGAMA
- 634
- 7
- 13