I need a python client to do FTPES (explicit), does anyone has experience with any python package that can do this.
I am not able to do this in python, but can conne
For me this worked: (login after auth). Taken from Nullege. They seem to be tests for ftplib.
self.client = ftplib.FTP_TLS(timeout=10) self.client.connect(self.server.host, self.server.port) # enable TLS self.client.auth() self.client.prot_p() self.client.login(user,pass)