有人知道imaplib模块有什么问题吗? 我在一台计算机上(在家中)运行代码,没关系。但是在另一台计算机(正在工作)上,出现错误(模块“ imaplib”没有属性“ IMAP4_SSL”)。我安装了最新版本的python。我尝试安装/卸载imaplib(虽然没有成功)。也许是VS Code(我在工作中使用它)?我使用Sublime文本在家里运行代码,并且可以正常工作。
代码本身:
def check_email_send(number):
user='111111@gmail.com'
password='A111112233'
mail=imaplib.IMAP4_SSL('imap.gmail.com',993) #this line throws the error
........ some code here