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

Python 如何在特定时间段内保存twitter用户名的所有回复和评论?,python,web-scraping,twitter,tweepy,twitterapi-python,Python,Web Scraping,Twitter,Tweepy,Twitterapi Python,我将在2018年内收集特定Twitter用户名的所有评论。我该怎么做 下面的代码在不考虑时间的情况下为一条tweet抓取tweet: 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(twe

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

下面的代码在不考虑时间的情况下为一条tweet抓取tweet:

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)

请看一看,这可能会有所帮助。@RedSalas即使您更改了日期,查询也会返回相同的结果。它收集了该页面上的最新推文。