Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我用来连接服务器的 Python 片段。
m= imaplib.IMAP4_SSL('imap.gmail.com') m.login('user@gmail.com', 'password')
是否有一种简单/无痛的方法来避免密码在脚本中显示为纯文本?我认为这是一个有效的安全问题?