如何在 Python 中解析 SRV 记录?
不依赖本机库的东西会更好。
Something which doesn't rely on native libraries would be better.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
不依赖本机库的东西会更好。
Something which doesn't rely on native libraries would be better.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
使用 pydns:
Using pydns:
twisted 有一个优秀的纯 python 实现,请参阅twisted.names 来源(尤其是 dns.py)。 如果您无法使用他们的所有代码,也许您可以从该文件中提取并重新利用他们的
Record_SRV
类。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.使用 dnspython:
Using dnspython:
您可以尝试 dnspython 库:
You could try the dnspython library: