python - How can I connect to a server with IP, username and password? -
i want write program. want connect machine ip, username , password. how can python programming? have not seen other shares python , site new me. if not, can give @ url of other shares. thank :)
import paramiko ssh = paramiko.sshclient() ssh.connect('127.0.0.1', username='name', password='pass')
Comments
Post a Comment