0
twitter streaming APIを使用して、特定の時間内にtweetsを取得する方法はありますか?私は6月2017.Butに2017年4月から日付されているツイートを取得するためのプロジェクトに取り組んでいます私が得るすべてはtweets.Theは以下のリアルタイムは、Python 3.6での私のコードです:twitter streaming API(Python 3を使用)
from tweepy.streaming import StreamListener
from tweepy import OAuthHandler
from tweepy import Stream
access_token = "####"
access_token_secret = "###"
consumer_key = "###"
consumer_secret = "####"
def on_data(self, data):
print (data)
return True
def on_error(self, status):
print (status)
if __name__ == '__main__':
l = StdOutListener()
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
stream = Stream(auth, l)
stream.filter(track=['earthquake','Mexico','2017'])
私は何を変更すればいい上記のコードで?