如何在特定时间范围内获取推文的推特数据?

时间:2017-07-07 19:31:41

标签: python json twitter tweepy

我在代码中添加了什么,以便在推文数据回到某个点时强制程序停止打印数据。例如,如何在运行一个月内收到关于Verratti的所有推文?

from tweepy.streaming import StreamListener
from tweepy import OAuthHandler
from tweepy import Stream
import json

access_token = the code
access_token_secret = the code
consumer_key = the code
consumer_secret = the code


#print
class StdOutListener(StreamListener):

    def on_data(self, data):
        print (json.loads(data)['text'])
        return True

    def on_error(self, status):
        print (status)

#find
if __name__ == '__main__':

    #This handles Twitter authetification and the connection to Twitter         Streaming API
    l = StdOutListener()
    auth = OAuthHandler(consumer_key, consumer_secret)
    auth.set_access_token(access_token, access_token_secret)
    stream = Stream(auth, l)

    #This line filter Twitter Streams to capture data by the keywords:     'python', 'javascript', 'ruby'
    stream.filter(track=['Verratti'])

1 个答案:

答案 0 :(得分:0)

好问题。事实证明,Twitter API只允许您回顾当前日期的一周。虽然有一种方法,有人建立了一个github库,可以使用Twitter的高级搜索功能搜索任何时间帧,你甚至不用担心整个身份验证过程。

检查出来:https://github.com/Jefferson-Henrique/GetOldTweets-python