ssh (as most programs asking for a password) does not read the password from stdin but from the process tty, so not opening a pipe neither using any of the modules you have named will work.
The usual solution to automate password authentication is to use Expect.
Comment on Re^2: how to send input to stdin automatically?