{"library":"sftpretty","title":"sftpretty","description":"A pretty, simple SFTP wrapper around paramiko with a high-level API for secure file transfer. Current version is 1.2.1, requires Python >=3.6. Release cadence is occasional, with recent releases roughly every few months.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install sftpretty"],"cli":null},"imports":["from sftpretty import CnOpts","from sftpretty import Connection","from sftpretty import SFTPError"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from sftpretty import Connection\ncnopts = CnOpts()\ncnopts.hostkeys = None  # disable host key checking (for demo only)\nwith Connection('example.com', username='user', password='pass', cnopts=cnopts) as sftp:\n    sftp.listdir()\n    print('Connected')","lang":"python","description":"Basic connection and directory listing. Disables host key verification for simplicity; use proper hostkeys in production.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}