The standard way to enter a password in Python without echoing it is using getpass.getpass().
However,it doesn't support clipboard input (ctrl-V), which is needed when dealing with complex, highly secure passwords.
Has anyone ever come up with a workaround (get the password silently from crtl-V)?
Thanks!
R.