I'm trying the following
from subprocess import Popen, PIPE
Popen(["scp", "-B","user@url:file", "."], stdin=PIPE, shell=False).communicate(input="password")
But I still get the password promt, and no password is sent. I know I can use scp with keys, but this is not what I need.
Any help?