在Python中寻找跨平台的类似rsync的功能,例如rsync.py

发布于 2024-10-04 01:13:55 字数 280 浏览 0 评论 0原文

我正在用 python 实现备份脚本。我正在努力保持跨平台。我听说有一个基于 python 的 rsync 实现: http://pypi.python.org/pypi/rsync .py

但我似乎无法在任何地方找到它。我找到的所有下载链接都已失效。有谁知道在哪里可以找到 rsync.py 程序?

目前我在 Windows 上使用 unison,但我想尝试 rsync.py

I am implementing backup scripts in python. I'm trying to keep things cross platform. I hear there is a python based rsync implementation: http://pypi.python.org/pypi/rsync.py

But I can't seem to find it anywhere. All of the download links I find are dead. Does anyone know where I could find the rsync.py program?

At the moment I am using unison for Windows but I would like to try rsync.py

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

爱本泡沫多脆弱 2024-10-11 01:13:55

替代方案: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/

以歌曲疗慰 2024-10-11 01:13:55

这是算法(不确定是否对您有帮助):

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/

同展鸳鸯锦 2024-10-11 01:13:55

我知道 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.

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