Something which doesn't rely on native libraries would be even more better.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You could try the dnspython library:

link|improve this answer
Works 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
feedback

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.

link|improve this answer
Went by the first answer posted, though thanks! – Gili Nachum Aug 29 '09 at 21:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.