Can I get console input without echo in Python?
Use getpass:
>>> from getpass import getpass >>> getpass() Password: 'secret'