Python Script for Website Mirroring

2010-05-19 Thread Kevin Rea
Hello Folks: Can you please point me to a decent Python script(s) that I could customize to do automatic Website mirroring? Thanks Much! Kevin -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Script for Website Mirroring

2010-05-19 Thread Vincent Davis
Probably need a little more info to help. Are you running both sites, are there database involved? If it is a simple site you could just transfer with ftp and have the script updated any urls. Vincent On Wed, May 19, 2010 at 8:21 AM, Kevin Rea kcronl...@gmail.com wrote: Hello Folks: Can

Re: Python Script for Website Mirroring

2010-05-19 Thread Christian Mertes
On Mi, 2010-05-19 at 16:35 -0600, Vincent Davis wrote: If it is a simple site you could just transfer with ftp Or rsync -a or wget -m ... like tools that were specifically made for this task. Therefore something like subprocess.call([rsync, -az, -e, ssh, --delete, source, target]) should be