python - How to send password while using ssh command in os.system? -
for example, have code below:
cmd = "ssh <host>" os.system(cmd)
how can send password in python script don't have type password every time?
use paramiko, so:
sh = paramiko.sshclient() sh.connect(server, username=username, password=password)
there many demos in paramiko github repo.
Comments
Post a Comment