show/hide this revision's text 3 improved answer, with Charles Duffy's feedback

You'd probably use the subprocess module. Something like this:

import subprocess
p = subprocess Popen("scp " + Popen(["scp", myfile+ " " + destination, shell=Truedestination])
sts = os.waitpid(p.pid, 0)

Where destination is probably of the form user@remotehost:remotepath. Thanks to @Charles Duffy for pointing out the weakness in my original answer, which used a single string argument to specify the scp operation shell=True - that wouldn't handle whitespace in paths.

The module documentation has a more involved example that performs examples of error checking that you may want to perform in conjunction with this operation.

Ensure that you've set up proper credentials so that you can perform an unattended, passwordless scp between the machines. There is a stackoverflow question for this already.

show/hide this revision's text 2 added reference to stack overflow ssh key question

You'd probably use the subprocess module. Something like this:

import subprocess
p = subprocess Popen("scp " + myfile + " " + destination, shell=True)
sts = os.waitpid(p.pid, 0)

The module documentation has a more involved example that performs error checking

Ensure that you've set up proper credentials so that you can perform an unattended, passwordless scp between the machines. There is a stackoverflow question for this already.

show/hide this revision's text 1

You'd probably use the subprocess module. Something like this:

import subprocess
p = subprocess Popen("scp " + myfile + " " + destination, shell=True)
sts = os.waitpid(p.pid, 0)

The module documentation has a more involved example that performs error checking

Ensure that you've set up proper credentials so that you can perform an unattended, passwordless scp between the machines. There is a stackoverflow question for this already.