SpotlightKid / micropython-ftplib

An FTP client library for MicroPython.
34 stars 17 forks source link

FTPS #5

Closed crushedy closed 4 years ago

crushedy commented 4 years ago

Are you going to implement the FTPS or SFTP protocols?

SpotlightKid commented 4 years ago

SFTP: very unlikely, since this a completely different protocol to FTP.

FTP over TLS: maybe, but since I'm not using micropython very much anymore, I can't make any promises as to when. I'm open to consider a pull request, though, preferably with the implementation based on the FTP_TLS class in the CPython stdlib ftplib.py.

SpotlightKid commented 4 years ago

See #6 for adding FTP over TLS support.