Good afternoon, here I have the code:
import paramiko ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.connect('ip', username='usr', password='pass') stdin, stdout, stderr = ssh.exec_command('echo "LOL"') output = stdout.readlines()[0].rstrip('\n').rstrip('\r') print(output) ssh.close() How do I make the connection happen through a proxy? I will be very grateful.