I need to login ftps server in windows,am attaching the code which i tried to make a connection with ftps.
from ftplib import FTP_TLS
ftps = FTP_TLS('my host addres',990)
ftps.login('username','password')
ftps.prot_p()
ftps.retrlines('LIST')
when i execute this code am getting a socket error no 10060.i knew my ftp connection is implicit.I am very new to python.so please anyone help me out to solve this issue.