是否有用于解析绑定区域文件的 python 库?
是否有用于解析绑定区域文件的 python 库? 基本上有助于添加/删除区域和记录。 即使有人手动修改区域文件,这也需要起作用,因此每次都覆盖区域文件并不是解决方案。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有用于解析绑定区域文件的 python 库? 基本上有助于添加/删除区域和记录。 即使有人手动修改区域文件,这也需要起作用,因此每次都覆盖区域文件并不是解决方案。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
easyzone 是 dnspython 上的一个很好的层
Zoner 提供了一个用于编辑区域文件的 Web 界面并使用 easyzone。
easyzone is a nice layer over dnspython
Zoner provides a web-interface for editing zone files and makes use of easyzone.
我无法将 bicop 用于此类经典区域文件:
我将查看 dnspython
I was unable to use bicop for classical zone files like these:
I will have a look at dnspython
请参阅上面有关 bicop 的答案。
顺便说一句,http://pypi.python.org/pypi 处的 Python 包索引是寻找 Python 包的好地方。
编辑:下面的内容可能对尝试简单解析的人仍然有帮助,但 bicop 显然是现有的解决方案。
如果有人手动修改了配置,并且您不想覆盖它,这是否意味着您希望从现有配置中插入/删除行,保持所有注释等完好无损? 这确实可以防止解析然后重新输出配置,但这也是积极的 - 您不需要完全解析文件来实现您的目标。
要添加记录,您可以尝试一种简单的方法,例如
类似的代码适用于删除行:
您可以使用像这样的简单代码片段来达到您需要的程度。
See answer above about bicop.
As an aside, the Python Package Index at http://pypi.python.org/pypi is a great place to look for Python packages.
EDIT: The below may still be helpful to someone trying to figure out simple parsing, but bicop is apparently an existing solution.
If someone has modified the config by hand, and you don't want to overwrite it, does that imply that you wish to insert/remove lines from an existing config, leaving all comments etc intact? That does prevent parsing then re-outputting the config, but that's a positive as well -- you don't need to fully parse the file to accomplish your goal.
To add a record, you might try a simple approach like
Similar code works for removing a line:
You may get as far as you need with simple snippets of code like this.
我知道这很旧,但我能找到的唯一有效的方法是 iscpy。 您可以进行 easy_install。
然后在 python 中:
返回一个字典。
I know this is old but the only working one I could find is called iscpy. You can do an easy_install.
Then in python:
Which returns a dictionary.