0

训练模型完成后,我正在使用 knockknock 向自己发送电子邮件。

我正在使用 VS 代码。我第一次使用@email_sender(recipient_emails=email_address) 时,它提示我输入密码,我输入了错误的密码。不幸的是,VS Code 将密码存储在密钥环中,我无法弄清楚如何重置此值。如何重置存储在密钥环中的密码?

VS Code 显然只在您第一次使用 knockknock 的 @email_sender 装饰器时提示您输入电子邮件密码,但此后每次 VS Code 都不会提示输入密码,因此我无法将密码调整/修复为正确的密码.

如何重置密钥环中存储的密码?我认为 knockknock 使用了 yagmail 库

4

1 回答 1

0

我花了一段时间,但我最终找到了解决方案:

import keyring

# to show the set password
print(keyring.get_password("yagmail", "your_email"))

# to change to the current password
keyring.set_password("yagmail", "your_email", "new_password")
于 2020-10-22T16:24:09.530 回答