Hiding keyboard input

Fredrik Lundh fredrik at pythonware.com
Fri May 14 05:21:44 EDT 1999


Seo JinSoo wrote:
> 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

</F>





More information about the Python-list mailing list