I am using Paramiko and trying to connect to my SFTP server. Here is the code I wrote:
class SFTPUploader:
def __init__(self, host, username, password, port):
transport = paramiko.Transport((host, port))
print transport
transport.connect(username = username, password = password)
self.sftp = paramiko.SFTPClient.from_transport(transport)
I can connect to my server from the terminal. This thread didn't help since our scenario is different.