我想在Python中使用tweepy獲取舊推文數據(大約2個月大)。我試過,直到參數但沒有成功。有沒有人在tweepy或其他API中得到解決方法。使用Python的舊推文Tweepy
for id,tweet in enumerate (tweepy.Cursor(api.search, q='SpecificWord', since="2016-04-26", until="2016-04-28", lang="en", include_retweets=False ).items(200)):
#Write a row to the csv file
CSVW.writerow([tweet.created_at, tweet.retweet_count, tweet.text.encode('utf-8')])
感謝特倫斯,你推薦我從哪裏可以下載基於「SpecificWord」歷史鳴叫數據,然後利用它來進行進一步的分析任何開源網站? –
獲取歷史數據的唯一地方是https://www.gnip.com/ - 或者今天開始收集數據:-) –