我正在使用Python和Paramiko将目录复制到目标计算机。 而不是仅使用像
这样的IP ssh.connect('xx.xx.xx.xx', username='usr', password='pwd')
我想像ssh.connect('root@xx.xx.xx.xx', username='usr', password='pwd')
这样使用,但它不起作用。
是否有任何Python方法将目录从源计算机复制到目标文件夹以及用户名和密码?
答案 0 :(得分:0)
您可以使用 pexpect
http://pexpect.readthedocs.io/en/stable/api/pxssh.html
Expression ::= Sum | Product
Sum ::= Product~("+"~Product)*
Product ::= Double~("*"~Double)*