gpt4 book ai didi

python - youtube data api 评论分页

转载 作者:太空狗 更新时间:2023-10-30 02:35:37 25 4
gpt4 key购买 nike

我对遍历 YouTube 视频上所有评论的语法有点费劲。我正在使用 python,但发现关于 GetYouTubeVideoCommentFeed() 函数的文档很少。

我真正想做的是在视频的所有评论中搜索一个词的实例并增加一个计数器(最终评论将被打印出来)。它适用于返回的 25 个结果,但我需要访问其余的评论。

import gdata.youtube
import gdata.youtube.service

video_id = 'hMnk7lh9M3o'
yt_service = gdata.youtube.service.YouTubeService()
comment_feed = yt_service.GetYouTubeVideoCommentFeed(video_id=video_id)
for comment_entry in comment_feed.entry:
comment = comment_entry.content.text
if comment.find('hi') != -1:
counter = counter + 1

print "hi: "
print counter

除了 video_id 之外,我还尝试设置 GetYouTubeVideoCommentFeed()start_index 但它不喜欢那样。

有什么我想念的吗?

谢谢!史蒂夫

最佳答案

下面是相同的代码片段:

# Comment feed URL
comment_feed_url = "http://gdata.youtube.com/feeds/api/videos/%s/comments"

''' Get the comment feed of a video given a video_id'''
def WriteCommentFeed(video_id, data_file):
url = comment_feed_url % video_id
comment_feed = yt_service.GetYouTubeVideoCommentFeed(uri=url)

try:
while comment_feed:

for comment_entry in comment_feed.entry:
print comment_entry.id.text
print comment_entry.author[0].name.text
print comment_entry.title.text
print comment_entry.published.text
print comment_entry.updated.text
print comment_entry.content.text

comment_feed = yt_service.Query(comment_feed.GetNextLink().href)

except:
pass

关于python - youtube data api 评论分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1901487/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com