Is there any module/utility like 'rsync' in python

Steven D'Aprano steve at REMOVE-THIS-cybersource.com.au
Fri Apr 9 02:42:22 EDT 2010


On Thu, 08 Apr 2010 23:22:46 -0700, hiral wrote:

> Hi,
> 
> 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.



-- 
Steven



More information about the Python-list mailing list