Fabric提示符()用于密码

时间:2013-12-30 21:12:50

标签: python shell fabric

Fabric包含prompt()操作以收集用户的输入:

fabric.operations.prompt(text, key=None, default='', validate=None)

有一次,我要求用户输入密码:

pw = prompt('Password:')

当用户输入密码时,它以纯文本形式显示在shell中。是否可以隐藏用户的输入?

1 个答案:

答案 0 :(得分:4)

http://docs.python.org/2/library/getpass.html

getpass.getpass('Password: ')