Re: Put a file on an ftp server over ssl

2005-05-11 Thread Rick Holbert
Have a look at Putty's pscp and PySCP... http://www.chiark.greenend.org.uk/~sgtatham/putty/ http://py.vaults.ca/apyllo.py/990075885.195097684.69935243 Rick Lars wrote: > Daniel, > > Why don't you just use the 'sftp' command line program, it's available > for all unixes and I bet you can find a

Re: Put a file on an ftp server over ssl

2005-05-11 Thread Lars
Daniel, Why don't you just use the 'sftp' command line program, it's available for all unixes and I bet you can find a build for windows to? Then you could just do an os.system(..) and be done with it. Cheers! Lars -- http://mail.python.org/mailman/listinfo/python-list

Re: Put a file on an ftp server over ssl

2005-05-10 Thread Daniel Santa Cruz
Sorry Jp, I was using the google client, and it does not automagically put reply marks on the message one is replying too. I'm just a bit frustrated that such a seemingly simple task to get so complicated very easily. I do appreciate your input! Just wish someone had already done it and shared

Re: Put a file on an ftp server over ssl

2005-05-10 Thread Jp Calderone
On 10 May 2005 11:32:39 -0700, Daniel Santa Cruz <[EMAIL PROTECTED]> wrote: >I looked briefly at this option, but it seems to me that I would have >to learn a whole architecture just to put a file on an ftp server. >Seems like a bit much, don't you think? (In the absence of any quoted material,

Re: Put a file on an ftp server over ssl

2005-05-10 Thread Daniel Santa Cruz
I looked briefly at this option, but it seems to me that I would have to learn a whole architecture just to put a file on an ftp server. Seems like a bit much, don't you think? Daniel -- http://mail.python.org/mailman/listinfo/python-list

Re: Put a file on an ftp server over ssl

2005-05-10 Thread Jp Calderone
On 10 May 2005 09:55:32 -0700, Daniel Santa Cruz <[EMAIL PROTECTED]> wrote: >Hello all! > >I have been troubled for the past couple of days trying to write a >simple script that sends a file to an ftp server. It used to be the >easiest thing in the world, but now the server has changed to a ftps >

Put a file on an ftp server over ssl

2005-05-10 Thread Daniel Santa Cruz
Hello all! I have been troubled for the past couple of days trying to write a simple script that sends a file to an ftp server. It used to be the easiest thing in the world, but now the server has changed to a ftps (ftp over ssl) server. All of the sudden, the world has come to a crawling stop.