Feedparser问题,密码中包含特殊字符

时间:2019-05-04 10:12:14

标签: python python-2.7 feedparser

我正在使用feedparser来获取Google邮件。我更改了密码以包含特殊字符。为了使python不会将其与其他命令混淆,我将base64.b64decode与base64编码的密码password一起使用。 print(password)输出正确的密码。到目前为止一切顺利。

现在result = feedparser.parse("https://" + USERNAME + ":" + PASSWORD +"@mail.google.com/gmail/feed/atom")不起作用,result.feed.fullcount0

使用不带特殊字符的密码即可使用。

我也尝试过urllib.quote_plus(password),但是那也不起作用。

如何才能使用feedparser来对密码进行解码/编码?

0 个答案:

没有答案