Results 1 comments of madiha95

``` from jumpssh import SSHSession gateway_session = SSHSession('machinegatway','xxxxxx',password='xxx').open() remote_session = gateway_session.get_remote_session('machineremote',password='xxxxx*') remote_session.is_active() print(remote_session.get_cmd_output('cmd')) remote_session.close() remote_session.is_active() ``` it is a simple code to test the library , actually the remark that...