Dima Barsky wrote:
> Carl Waldbieser <[EMAIL PROTECTED]> wrote:
>
>> Does anyone know of any good examples for writing client side code
>> to upload files over a secure FTP connection? I am referring to
>> FTPS, *not* SFTP, which I found out the hard way are two different
>> things.
>
> Look a
"adam" <[EMAIL PROTECTED]> writes:
> I'm not 100% sure whether this answers your problem, but I would ignore
> getting a special TLS module and just concentrate on the ftp side of
> the protocol. If your connection to your ftp server must be in TLS, you
> could modify you socket module similar to h
I'm not 100% sure whether this answers your problem, but I would ignore
getting a special TLS module and just concentrate on the ftp side of
the protocol. If your connection to your ftp server must be in TLS, you
could modify you socket module similar to how I have using this diff
(against 2.3.4) a
David Isaac wrote:
>
> "Carl Waldbieser" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>> Does anyone know of any good examples for writing client side code to
> upload
>> files over a secure FTP connection?
>
> http://trevp.net/tlslite/
>
> Alan Isaac
Thanks. I have actually
"Carl Waldbieser" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Does anyone know of any good examples for writing client side code to
upload
> files over a secure FTP connection?
http://trevp.net/tlslite/
Alan Isaac
--
http://mail.python.org/mailman/listinfo/python-list
Carl Waldbieser <[EMAIL PROTECTED]> wrote:
> Does anyone know of any good examples for writing client side code
> to upload files over a secure FTP connection? I am referring to
> FTPS, *not* SFTP, which I found out the hard way are two different
> things.
Look at the CURL library, the manual
Carl Waldbieser <[EMAIL PROTECTED]> writes:
> Does anyone know of any good examples for writing client side code
> to upload files over a secure FTP connection? I am referring to
> FTPS, *not* SFTP, which I found out the hard way are two different
> things. I am not really all that familiar with