Read password from stdin [duplicate]
Asked Answered
W

2

188

Scenario: An interactive CLI Python program, that is in need for a password. That means also, there's no GUI solution possible.

In bash I could get a password read in without re-prompting it on screen via

read -s

Is there something similar for Python? I.e.,

password = raw_input('Password: ', dont_print_statement_back_to_screen)

Alternative: Replace the typed characters with '*' before sending them back to screen (aka browser' style).

Wallraff answered 19/11, 2009 at 8:25 Comment(0)
H
298
>>> import getpass
>>> pw = getpass.getpass()
Hennie answered 19/11, 2009 at 8:29 Comment(7)
Yeah, them batteries. ;-) One of the cool thing with Python is its ability to bind easily with binaries in other language, in particular C, hence leveraging a lot of existing stuff (such as getpass(), I believe)Hennie
Even better, getpass() deals with the situation in which a CLI tool is being fed data via STDIN and yet you want the ability to type the password yourself. Great tool!Sabadilla
@Sabadilla but I came here looking for a solution to do this because getpass() is still prompting me and waiting for a password even though I piped the password to my scriptDeposit
For me, getpass poppoed up a window (not what I wanted, nor what its help said) and didn't obscure the password when I typed it in! Code to reproduce: import getpass; getpass.getpass()Rufous
@Sabadilla IIRC, unix tools support that by re-opening the stderr stream for reading, instead of for writing. It's a neat hack, yeah?Echidna
but this doesn't display '*' as one types. How does one achieve this?Junejuneau
@Junejuneau you don't want thatHabitat
B
56

Yes, getpass: "Prompt the user for a password without echoing."

Edit: I had not played with this module myself yet, so this is what I just cooked up (wouldn't be surprised if you find similar code all over the place, though):

import getpass

def login():
    user = input("Username [%s]: " % getpass.getuser())
    if not user:
        user = getpass.getuser()

    pprompt = lambda: (getpass.getpass(), getpass.getpass('Retype password: '))

    p1, p2 = pprompt()
    while p1 != p2:
        print('Passwords do not match. Try again')
        p1, p2 = pprompt()

    return user, p1

(This is Python 3.x; use raw_input instead of input when using Python 2.x.)

Brennen answered 19/11, 2009 at 8:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.