企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 问题 You’ve written a script that requires a password, but since the script is meant for inter‐active use, you’d like to prompt the user for a password rather than hardcode it into thescript. ## 解决方案 Python’s getpass module is precisely what you need in this situation. It will allow youto very easily prompt for a password without having the keyed-in password displayedon the user’s terminal. Here’s how it’s done: import getpass user = getpass.getuser()passwd = getpass.getpass() if svc_login(user, passwd): # You must write svc_login()print(‘Yay!')else:print(‘Boo!') In this code, the svc_login() function is code that you must write to further processthe password entry. Obviously, the exact handling is application-specific. ## 讨论 Note in the preceding code that getpass.getuser() doesn’t prompt the user for theirusername. Instead, it uses the current user’s login name, according to the user’s shellenvironment, or as a last resort, according to the local system’s password database (onplatforms that support the pwd module). If you want to explicitly prompt the user for their username, which can be more reliable,use the built-in input function: user = input(‘Enter your username: ‘) It’s also important to remember that some systems may not support the hiding of thetyped password input to the getpass() method. In this case, Python does all it can toforewarn you of problems (i.e., it alerts you that passwords will be shown in cleartext)before moving on.