验证gmail atom feed以返回'PYTHON 3'中的消息计数

时间:2016-08-27 16:56:44

标签: python-3.x email gmail atom-feed

大家好,所以我想通过python 3检查我的Gmail邮箱帐户,为此我使用google的gmail atom feed,这是我的代码

import urllib.request
import urllib.parse
import re
url='https://mail.google.com/mail/feed/atom'
req=urllib.request.Request(url)
resp=urllib.request.urlopen(req)
respData=resp.read()
numb=re.findall(r'<fullcount>(.*?)</fullcount>',str(respData))
print(numb)

现在我想返回<fullcount></fullcount>标记,一旦我运行代码,就会抛出错误HTTP Error 401: Unauthorized 现在我知道这意味着我需要发布我的Gmail名称和密码,但我该怎么做呢? 请注意,我在大写字母中添加了“python 3”,因为与gmail原子提要认证相关的主题很老,只有在python 2中使用的主要是feedparser或urllib2,它们在python3中不起作用。 感谢。

所以将这个问题标记为重复的人是错误的你看到那个标记为类似python 2主题的副本的人并没有完全告诉我如何在python 3中翻译代码并且仍然可能存在属性py2中的urllib就像不在python 3中的HTTPBasicAuthHandler所以请详细说明并正确回答 这是一个菜鸟的谦卑要求 再次感谢

0 个答案:

没有答案