首页 > 解决方案 > Python 中的回溯错误

问题描述

开始使用 BeautifulSoup 编写 Python 程序来跟踪亚马逊上的 GTA V 价格。收到这些错误:

Traceback (most recent call last):
  File "scraper.py", line 68, in <module>
    check_price()
  File "scraper.py", line 35, in check_price
    send_mail()
  File "scraper.py", line 50, in send_mail
    server.login('sathwikapps@gmail.com', 'Jaybeatx')
  File "D:\Users\sathw\anaconda3\lib\smtplib.py", line 697, in login
    "SMTP AUTH extension not supported by server.")
smtplib.SMTPNotSupportedError: SMTP AUTH extension not supported by server.


我的 github 存储库是:https ://github.com/SathwikChiluveru/GTA-V-Price-Tracker

标签: visual-studio-codebeautifulsoupanaconda

解决方案


尝试为第三方激活 gmail smtp 访问权限:)


推荐阅读