getpass
 

Utilities to get a password and/or the current user name.

getpass(prompt) - prompt for a password, with echo turned off
getuser() - get the user name from the environment or password database

Authors: Piers Lauder (original)
         Guido van Rossum (Windows support and cleanup)


 Functions
                                                                                                                                                                                                                               
_raw_input(prompt='')
no doc string
default_getpass(prompt='Password: ')
no doc string
getpass(prompt='Password: ')
Prompt for a password, with echo turned off.
Restore terminal settings at end.
On Windows, this calls win_getpass(prompt) which uses the
msvcrt module to get the same effect.
On the Mac EasyDialogs.AskPassword is used, if available.
getuser()
Get the username from the environment or password database.
First try various environment variables, then the password
database.  This works on Windows as long as USERNAME is set.
win_getpass(prompt='Password: ')
Prompt for password with echo off, using Windows getch().