How to scp in python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T23:09:41Z http://stackoverflow.com/feeds/question/250283 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/250283/how-to-scp-in-python 6 How to scp in python? Michael Gundlach 2008-10-30T14:09:21Z 2008-12-17T20:10:08Z <p>What's the most pythonic way to scp a file in Python? The only route I'm aware of is </p> <pre><code>os.system('scp "%s" "%s:%s"' % (localfile, remotehost, remotefile) ) </code></pre> <p>which is a hack, and which doesn't work outside linux-like systems, and which needs help from the Pexpect module to avoid password prompts unless you already have passwordless SSH set up to the remote host.</p> <p>I'm aware of Twisted's <code>conch</code>, but I'd prefer to avoid implementing scp myself via low-level ssh modules.</p> <p>I'm aware of <code>paramiko</code>, a Python module that supports ssh and sftp; but it doesn't support scp.</p> <p>Background: I'm connecting to a router which doesn't support sftp but does support ssh/scp, so sftp isn't an option.</p> <p><strong>EDIT</strong>: This is a duplicate of <a href="http://stackoverflow.com/questions/68335/how-do-i-copy-a-file-to-a-remote-server-in-python-using-scp-or-ssh">http://stackoverflow.com/questions/68335/how-do-i-copy-a-file-to-a-remote-server-in-python-using-scp-or-ssh</a>. <strong>However</strong>, that question doesn't give an scp-specific answer that deals with keys from within python. I'm hoping for a way to run code kind of like</p> <pre><code>import scp client = scp.Client(host=host, user=user, keyfile=keyfile) # or client = scp.Client(host=host, user=user) client.use_system_keys() # or client = scp.Client(host=host, user=user, password=password) # and then client.transfer('/etc/local/filename', '/etc/remote/filename') </code></pre> http://stackoverflow.com/questions/250283/how-to-scp-in-python/250330#250330 0 Answer by m0j0 for How to scp in python? m0j0 2008-10-30T14:25:06Z 2008-10-30T14:25:06Z <p>I don't think there's any one module that you can easily download to implement scp, however you might find this helpful: <a href="http://www.ibm.com/developerworks/linux/library/l-twist4.html" rel="nofollow">http://www.ibm.com/developerworks/linux/library/l-twist4.html</a></p> http://stackoverflow.com/questions/250283/how-to-scp-in-python/250402#250402 2 Answer by Blauohr for How to scp in python? Blauohr 2008-10-30T14:42:42Z 2008-10-30T14:42:42Z <p>if you install putty on win32 you get an pscp (putty scp).</p> <p>so you can use the os.system hack on win32 too.</p> <p>(and you can use the putty-agent for key-managment)</p> <p><hr /></p> <p>sorry it is only a hack (but you can wrap it in a python class)</p> http://stackoverflow.com/questions/250283/how-to-scp-in-python/250786#250786 3 Answer by Pat Notz for How to scp in python? Pat Notz 2008-10-30T16:18:00Z 2008-10-30T16:18:00Z <p>You might be interested in trying <a href="http://www.noah.org/wiki/Pexpect" rel="nofollow">Pexpect</a> (<a href="http://sourceforge.net/projects/pexpect/" rel="nofollow">SourceForge project</a>). This would allow you to deal with interactive prompts for your password.</p> <p>Here's a snip of example usage (for ftp) from the main website:</p> <pre> # This connects to the openbsd ftp site and # downloads the recursive directory listing. import pexpect child = pexpect.spawn ('ftp ftp.openbsd.org') child.expect ('Name .*: ') child.sendline ('anonymous') child.expect ('Password:') child.sendline ('noah@example.com') child.expect ('ftp> ') child.sendline ('cd pub') child.expect('ftp> ') child.sendline ('get ls-lR.gz') child.expect('ftp> ') child.sendline ('bye') </pre> http://stackoverflow.com/questions/250283/how-to-scp-in-python/250797#250797 0 Answer by Pat Notz for How to scp in python? Pat Notz 2008-10-30T16:20:46Z 2008-10-30T16:20:46Z <p>Hmmm, perhaps another option would be to use something like <a href="http://fuse.sourceforge.net/sshfs.html" rel="nofollow">sshfs</a> (there an <a href="http://code.google.com/p/macfuse/wiki/MACFUSE_FS_SSHFS" rel="nofollow">sshfs</a> for Mac too). Once your router is mounted you can just copy the files outright. I'm not sure if that works for your particular application but it's a nice solution to keep handy.</p> http://stackoverflow.com/questions/250283/how-to-scp-in-python/251625#251625 0 Answer by JimB for How to scp in python? JimB 2008-10-30T20:22:43Z 2008-12-17T20:10:08Z <p>You could also check out <a href="http://www.lag.net/paramiko/" rel="nofollow">paramiko</a>. There's no scp module (yet), but it fully supports sftp.</p> <p>[EDIT] Sorry, missed the line where you mentioned paramiko. The following module is simply an implementation of the scp protocol for paramiko. If you don't want to use paramiko or conch (the only ssh implementations I know of for python), you could rework this to run over a regular ssh session using pipes.</p> <p><a href="http://bazaar.launchpad.net/~jbardin/paramiko/paramiko_scp/annotate/500?file_id=scp.py-20081117202350-5q0ozjv6zz9ww66y-1" rel="nofollow">scp.py for paramiko</a></p>