faqts : Computers : Programming : Languages : Python : Snippets

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

8 of 11 people (73%) answered Yes
Recently 5 of 8 people (63%) answered Yes

Entry

How do I hide my key typing while entering a password?

Jul 5th, 2000 09:59
Nathan Wallace, unknown unknown, Hans Nowak, Snippet 98, Fredrik Lundh


"""
Packages: miscellaneous
"""
"""
> I would like to hide my key typing during entering password.
> How to?
"""
import getpass
password = getpass.getpass()
"""
also see:
http://www.python.org/doc/current/lib/module-getpass.html
"""