如何保存特定时间段内Twitter用户名的所有回复和评论?

时间:2020-09-28 18:26:54

标签: python web-scraping twitter tweepy twitterapi-python

我将在2018年内收集特定Twitter用户名的所有评论。我该怎么做?

下面的代码在不考虑时间的情况下抓取了一条推文。

name = 'MoveTheWorld'
tweet_id = '1310127204538482690'
replies=[]
for tweet in tweepy.Cursor(api.search,q='to:'+name, result_type='recent', timeout=999999).items(8000):
if hasattr(tweet, 'in_reply_to_status_id_str'):
    if (tweet.in_reply_to_status_id_str==tweet_id):                        
        replies.append(tweet)

0 个答案:

没有答案