In article <[email protected]>, Steven D'Aprano <[email protected]> wrote: >On Thu, 08 Apr 2010 23:22:46 -0700, hiral wrote: >> >> Is there any module/utility like 'rsync' in python. > >http://code.activestate.com/recipes/577022-rsync-algorithm-in-python/ > >but you probably aren't going to beat the performance and reliability of >your platform's rsync utility. Chances are that your best approach will >be to call it using the subprocess module.
Depends on what your goal is. My company uses a homegrown librsync wrapper similar to the aforementioned http://freshmeat.net/projects/pysync/ because we're up/downloading files over HTTP. -- Aahz ([email protected]) <*> http://www.pythoncraft.com/ "It is easier to optimize correct code than to correct optimized code." --Bill Harlan -- http://mail.python.org/mailman/listinfo/python-list
