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