Today's project involves automatically uploading electrical metering data to an FTPS server (explicit FTP over TLS, otherwise knowns as ESFTP). Shouldn't be a problem, since Python supports FTPS out of the box. Only it doesn't work. Here's the code:
import ftplib
ftp = ftplib.FTP_TLS('host', 'user', 'password')
ftp.set_debuglevel(1 …