在Python中寻找跨平台的类似rsync的功能,例如rsync.py
我正在用 python 实现备份脚本。我正在努力保持跨平台。我听说有一个基于 python 的 rsync 实现: http://pypi.python.org/pypi/rsync .py
但我似乎无法在任何地方找到它。我找到的所有下载链接都已失效。有谁知道在哪里可以找到 rsync.py 程序?
目前我在 Windows 上使用 unison,但我想尝试 rsync.py
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
替代方案:pysync - 在纯 Python 中实现 rsync 和相关算法,以及高速 librsync Python 扩展
另一种选择:http: //code.google.com/p/pyrsync/
Alternative : pysync - implementation of the rsync and related algorithms in pure Python, and a high speed librsync Python extension
Another alternative: http://code.google.com/p/pyrsync/
这是算法(不确定是否对您有帮助):
http://code. activestate.com/recipes/577518-rsync-algorithm/
Here is the algorythm (not sure if it helps you out):
http://code.activestate.com/recipes/577518-rsync-algorithm/
我知道 rdiff-backup 是用 python 编写的,并使用类似 rsync 的算法。它使用 librsync。请注意,rdiff-backup 并不是 rsync 的替代品,因此它不能满足您的需求。但是您可以查看 librsync 并了解 rdiff-backup 如何使用它。
I know that rdiff-backup is written in python and use an rsync-like algorithm. It use librsync. Note that rdiff-backup is not a replacement for rsync, so it will not fill your needs. But you can take a look at librsync and see how rdiff-backup use it.
这是 Python 中的另一个 rsync 实现:
Here is another rsync implementation in Python: