rdiff python 模块
是否有一个 python 模块具有计算 rdiff 签名和 delta 差异的功能?
我需要在跨平台应用程序上执行这些操作,所以我需要一些可以捆绑到 py2exe、py2app 等中的东西。
我已经做了很多搜索,但似乎没有任何效果。 Pysync、rdiff-backup、librsync 都出现了,但我无法在 python 中运行任何东西。
Is there a python module that has the functionality for computing rdiff signatures and delta differencing?
I need to perform these operations on a cross-platform application so I'll need something that will bundle into py2exe, py2app etc.
I've done a bunch of searching but I can't seem to get anything working. Pysync, rdiff-backup, librsync all come up but I've not been able to get anything working inside of python.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
rdiff-backup 是用 Python 编写的。它似乎在幕后使用
librsync
并有一个 Python 包装器(在源代码树中查找_librsyncmodule.c
)。以下页面可能有助于了解如何在 OS X 和 Windows 上构建
librsync
:链接。rdiff-backup
is written in Python. It appears to be usinglibrsync
under the covers and has a Python wrapper for it (look for_librsyncmodule.c
in the source tree).The following page may help to figure out how to build
librsync
on OS X and Windows: link.