随笔- 182
文章- 1
评论- 28
阅读-
57万
随笔分类 - Python
Python
smtplib.SMTPDataError: (554, b'DT:SPM 163……)
摘要:1.报错535: 未将POP3/SMTP服务开启。通过在163邮箱内 设置 获取授权码 打开,通过授权码可以进行第三方登录。此处的Password填写授权码。 2.报错554: 第一种情况:缺失发件人和主题,将msg['Subject'] msg['From'] msg['To'] 几行添加。 第二
阅读全文
bs4.FeatureNotFound: Couldn’t find a tree builder with the features you requested: lxml.
摘要:python3 bs4解析网页时报错: bs4.FeatureNotFound: Couldn’t find a tree builder with the features you requested: lxml. bs4调用了python自带的html解析器,python3没有html解释器,所
阅读全文