Yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/module-getpass.html

From ZCubes Wiki
Revision as of 19:49, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<div class="navigation"> {| width="100%" cellspacing="2" align="center" | yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/scheduler-objects.html|[[Image:yu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

6.11 getpass -- Portable password input

The getpass module provides two functions:

getpass ([prompt])
Prompt the user for a password without echoing. The user is prompted using the string prompt, which defaults to 'Password: '. Availability: Macintosh, Unix, Windows.
getuser ()
Return the ``login name'' of the user. Availability: Unix, Windows. This function checks the environment variables $LOGNAME, $USER, $LNAME and $USERNAME, in order, and returns the value of the first one which is set to a non-empty string. If none are set, the login name from the password database is returned on systems which support the pwd module, otherwise, an exception is raised.

See About this document... for information on suggesting changes.