-3

Does anyone know how to connect FTP with implicit TLS via Python?

Thank you

1 Answers1

-1

Use this: from ftplib import FTP_TLS Refer to this link

Taral
  • 3
  • 3
  • This is explicit TLS, i.e. connect in plain on port 21 and upgrade to TLS. Implicit TLS means to start with the TLS handshake. – Steffen Ullrich Jul 23 '18 at 17:25
  • Unfortunately, I have already seen that and I couldn't find a solution. The problem is that I use a network with a proxy limitation. When I want to use FTP I usually use FileZilla with connexion FTP with implicit TLS configuration and it works. What I want to do now is to translate what I am doing in FileZilla to Python. – spartan spartan Jul 24 '18 at 08:41