用于获取有关 SVN 存储库信息的 Python 库?
我正在寻找一个可以从 SVN 存储库(不是工作副本!)提取(至少)以下信息的库:
- 修订号及其作者和版本。提交消息
- 每个修订版中的更改(添加、删除、修改文件)
有没有可以执行此操作的 Python 库?
对于作者和提交消息,我可以解析“db/revprops/0/...”(简单格式),但是查找更改的文件似乎并不那么容易,所以我宁愿坚持使用支持 SVN 存储库的库。
I'm searching for a library that can extract (at least) the following information from a SVN repository (not a working copy!):
- Revision numbers and their author & commit message
- Changes in each revision (added, deleted, modified files)
Is there a Python library that can do this?
For the authors and commit messages, I could parse "db/revprops/0/..." (simple format), but looking for changed files does not seem so easy, so I'd rather stick with a library that supports SVN repos.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有与 libsvn 的 Python 绑定: http://pysvn.tigris.org/docs/pysvn.html< /a>.它们可以帮助完成 svn 命令行客户端几乎所有可以做的事情。
特别是
Client.log()
方法做你正在寻找的事情。There are Python bindings to libsvn: http://pysvn.tigris.org/docs/pysvn.html. They facilitate doing pretty much everything the svn command line client can do.
In particular, the
Client.log()
method does what you are looking for.我认为您想要类似 py-svn 的东西。
I think you want something like py-svn.