blob: 94cf95f1af5f425842a38d9887330ada934e81b1 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`getpass` --- Portable password input
2==========================================
3
4.. module:: getpass
5 :synopsis: Portable reading of passwords and retrieval of the userid.
6.. moduleauthor:: Piers Lauder <piers@cs.su.oz.au>
7.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
Christian Heimes5b5e81c2007-12-31 16:14:33 +00008.. Windows (& Mac?) support by Guido van Rossum.
Georg Brandl116aa622007-08-15 14:28:22 +00009
10The :mod:`getpass` module provides two functions:
11
12
Georg Brandl036490d2009-05-17 13:00:36 +000013.. function:: getpass(prompt='Password: ', stream=None)
Georg Brandl116aa622007-08-15 14:28:22 +000014
Georg Brandle6bcc912008-05-12 18:05:20 +000015 Prompt the user for a password without echoing. The user is prompted using
R David Murray604453c2014-04-14 10:28:58 -040016 the string *prompt*, which defaults to ``'Password: '``. On Unix, the
17 prompt is written to the file-like object *stream* using the replace error
18 handler if needed. *stream* defaults to the controlling terminal
19 (:file:`/dev/tty`) or if that is unavailable to ``sys.stderr`` (this
20 argument is ignored on Windows).
Christian Heimes81ee3ef2008-05-04 22:42:01 +000021
22 If echo free input is unavailable getpass() falls back to printing
23 a warning message to *stream* and reading from ``sys.stdin`` and
24 issuing a :exc:`GetPassWarning`.
Georg Brandl116aa622007-08-15 14:28:22 +000025
Christian Heimes81ee3ef2008-05-04 22:42:01 +000026 .. note::
27 If you call getpass from within IDLE, the input may be done in the
28 terminal you launched IDLE from rather than the idle window itself.
29
30.. exception:: GetPassWarning
31
32 A :exc:`UserWarning` subclass issued when password input may be echoed.
33
Georg Brandl116aa622007-08-15 14:28:22 +000034
35.. function:: getuser()
36
Berker Peksag1b207c52016-06-01 18:26:18 -070037 Return the "login name" of the user.
Georg Brandl116aa622007-08-15 14:28:22 +000038
39 This function checks the environment variables :envvar:`LOGNAME`,
40 :envvar:`USER`, :envvar:`LNAME` and :envvar:`USERNAME`, in order, and returns
41 the value of the first one which is set to a non-empty string. If none are set,
42 the login name from the password database is returned on systems which support
43 the :mod:`pwd` module, otherwise, an exception is raised.
44