Use the Paramiko package to run commands over SSH. Need to run a app that takes in user input, how can I connect sys.stdin directly to the app that is running via Paramiko so whatever the user types in, it will go into the app running.
stdin, stdout, stderr = ssh_client.exec_command('/tmp/input_required')
while not stdout.channel.exit_status_ready():
print(stdout.read(1), end ='')