Re: [Tutor] File transfer HTTP -> SFTP

2011-03-01 Thread Modulok
This isn't a python solution, but if you have an ssh connection to both servers, (I assume so) you can forward them directly. It would look like this in an operating system shell like tcsh or bash: me@baz> scp -r m...@foo.com:/home/me/pictures m...@bar.com:/somewhere/ You could wrap the above com

[Tutor] File transfer HTTP -> SFTP

2011-03-01 Thread Emanuel Lauria
Sorry if im annoying, but I think this is a better question than my previous one of today. I have some Images in an HTTP Server that I need to transfer to an SFTP server using a Python script. So far I can download them to my hard drive, and upload them to the sftp server; quite easy. I would