指定流式传输时的推文数量

时间:2019-01-31 20:29:01

标签: python api twitter streaming

我想添加一个功能来指定鸣叫数量。我想基于hash_tag_list来获得它,而不是获得流水效果。我试图在for函数中添加一个on_data循环,但是没有用;有什么建议吗?

class TwitterAuthenticator():

    def authenticate_twitter_app(self):
        auth = OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
        auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
        return auth

 # # # # TWITTER STREAMER # # # #
class TwitterStreamer():
"""
Class for streaming and processing live tweets.
"""
    def __init__(self):
        self.twitter_autenticator = TwitterAuthenticator()    

    def stream_tweets(self, fetched_tweets_filename, hash_tag_list):
        # This handles Twitter authetification and the connection to Twitter Streaming API

        listener = TwitterListener(fetched_tweets_filename)
        auth = self.twitter_autenticator.authenticate_twitter_app() 
        stream = Stream(auth, listener)

        # This line filter Twitter Streams to capture data by the keywords: 

        stream.filter(track=hash_tag_list)



# # # # TWITTER STREAM LISTENER # # # #
class TwitterListener(StreamListener):
"""
This is a basic listener that just prints received tweets to stdout.
"""
    def __init__(self, fetched_tweets_filename ):
        self.fetched_tweets_filename = fetched_tweets_filename


    def on_data(self, data):
        try:
           print(data)
           with open(self.fetched_tweets_filename, 'a') as tf:
               tf.write(data)
           return True
        except BaseException as e:
            print("Error on_data %s" % str(e))
        return True

    def on_error(self, status):
        if status == 420:
            # Returning False on_data method in case rate limit     occurs.
            return False
        print(status)   

0 个答案:

没有答案