Getting a hidden password input(获取隐藏密码输入)
问题描述
您知道在 Linux 中,当您尝试一些 Sudo 内容时,它会告诉您输入密码,而当您键入时,终端窗口中没有显示任何内容(未显示密码)?
You know how in Linux when you try some Sudo stuff it tells you to enter the password and, as you type, nothing is shown in the terminal window (the password is not shown)?
有没有办法在 Python 中做到这一点?我正在编写一个需要如此敏感信息的脚本,并希望在我输入时将其隐藏.
Is there a way to do that in Python? I'm working on a script that requires so sensitive info and would like for it to be hidden when I'm typing it.
换句话说,我想在不显示密码的情况下从用户那里获取密码.
In other words, I want to get the password from the user without showing the password.
推荐答案
使用<代码>getpass.getpass():
from getpass import getpass
password = getpass()
一个可选的提示可以作为参数传递;默认为 密码:"
.
An optional prompt can be passed as parameter; the default is "Password: "
.
请注意,此功能需要正确的终端,因此它可以关闭输入字符的回显 - 请参阅 GetPassWarning: Can not control echo on the terminal"从 IDLE 运行时了解更多详情.
Note that this function requires a proper terminal, so it can turn off echoing of typed characters – see "GetPassWarning: Can not control echo on the terminal" when running from IDLE for further details.
这篇关于获取隐藏密码输入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取隐藏密码输入
基础教程推荐
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01