Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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

like image 918
AndyL Avatar asked Nov 23 '10 20:11

AndyL


2 Answers

Alternative : pysync - implementation of the rsync and related algorithms in pure Python, and a high speed librsync Python extension

  • http://freshmeat.net/projects/pysync/

Another alternative: http://code.google.com/p/pyrsync/

like image 180
pyfunc Avatar answered Jan 04 '23 06:01

pyfunc


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

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

like image 30
terminus Avatar answered Jan 04 '23 08:01

terminus