Reputation: 31
What are the best ways to do ssh and scp in Python? I want to eliminate an Apache Ant build like we are doing in Java.
Upvotes: 0
Views: 285
Reputation: 2704
Use paramiko
. it is one of the best python package for ssh and scp.
link: python paramiko ssh
Upvotes: 1