Looking for cross-platform rsync-like functionality in python, such as rsync.py

不问归期 提交于 2019-12-03 01:48:37

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/

terminus

Here is the algorythm (not sure if it helps you out):

http://code.activestate.com/recipes/577518-rsync-algorithm/

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!