How to: Transfer files over SFTP in Python
This article covers the transfer of files over SFTP (or Secure/SSH File Transfer Protocol). While there are quite some options to choose from, the Python package Paramiko is used to achieve it. Paramiko is a pure-python implementation of the SSH2 protocol. Although Paramiko is the foundation for some other packages…