我将在 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)