Ankur Kunal
Ankur Kunal

Reputation: 31

Best ways to do ssh and scp in Python?

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

Answers (1)

MaNKuR
MaNKuR

Reputation: 2704

Use paramiko. it is one of the best python package for ssh and scp.

link: python paramiko ssh

http://www.paramiko.org/

Upvotes: 1

Related Questions