Lukasa / requests-ftp

An FTP transport adapter for use with the Python Requests library.
Other
69 stars 25 forks source link

pyfilesystem sftp filesystem interface #1

Closed westurner closed 11 years ago

westurner commented 11 years ago

http://pythonhosted.org/fs/filesystems.html#sftp-secure-ftp

http://pythonhosted.org/fs/interface.html

http://pythonhosted.org/fs/implementersguide.html#essential-methods

Lukasa commented 11 years ago

Hi @westurner! What exactly were you looking for here?

westurner commented 11 years ago

From https://github.com/Lukasa/requests-ftp/blob/master/README.rst :

This library is not intended to be an example of Transport Adapters best practices. This library was cowboyed together in about 4 hours of total work, has no tests, and relies on a few ugly hacks. Instead, it is intended as both a starting point for future development and a useful example for how to implement transport adapters.

SFTP. Security is for the weak.

fs implements various thread-safe filesystem interface abstractions that may be useful as a reference for/when implementing requests Transport Adapters.

Similar questions:

... Was looking for something like requests-cache or httpcache. TIL about about Transport Adapters for requests. Thanks.