用于获取有关 SVN 存储库信息的 Python 库?

发布于 2024-10-08 06:43:39 字数 244 浏览 2 评论 0原文

我正在寻找一个可以从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乖乖兔^ω^ 2024-10-15 06:43:39

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.

若水般的淡然安静女子 2024-10-15 06:43:39

我认为您想要类似 py-svn 的东西。

I think you want something like py-svn.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文