我改变了我的脚本获取它的列表的方式,并以某种方式打破了Gdata-API
sys.argv[1]
是a text file of urls like this
当我评论第1部分和第1部分时,错误开始2和添加3.当我删除3并取消注释第1部分& 2它再次起作用。
相关代码:
# PART 1 - parse bookmarks.html
#with open(sys.argv[1]) as bookmark_file:
# soup = BeautifulSoup(bookmark_file.read())
# PART 2 - extract youtube video urls
#video_url_regex = re.compile('http://www.youtube.com/watch')
#urls = [link['href'] for link in soup('a', href=video_url_regex)]
# PART 3 - parse text file
urls = open(sys.argv[1]).readlines()
我现在得到的错误:
Traceback (most recent call last):
File "listtest.py", line 81, in <module>
comments = comments.total_results.text
AttributeError: 'NoneType' object has no attribute 'total_results'
我想继续获取“总评论”字段。感谢。
完整代码: http://pastebin.com/1yZdEySW
编辑:文本文件中的一个URL很好。当文本文件增加到两个或更多项时,则会再现错误。
答案 0 :(得分:1)
我指定了网址:
urls = ['http://www.youtube.com/watch?v=_wmD3M-BfVo']
(是的,这是T-Pain音乐视频) 它运作得很好。您很可能对正在打开的文件或解析该文件的内容有疑问。或者你只是简单地解析它。在任何情况下,您都会将评论分配给任何人,因为您没有传递有效的ID。