当前位置: 首页>>代码示例>>Python>>正文


Python streaming.StreamListener方法代码示例

本文整理汇总了Python中tweepy.streaming.StreamListener方法的典型用法代码示例。如果您正苦于以下问题:Python streaming.StreamListener方法的具体用法?Python streaming.StreamListener怎么用?Python streaming.StreamListener使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tweepy.streaming的用法示例。


在下文中一共展示了streaming.StreamListener方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: init_app

# 需要导入模块: from tweepy import streaming [as 别名]
# 或者: from tweepy.streaming import StreamListener [as 别名]
def init_app(self, key):
        self.key = key

        self.listener = StreamListener()
        self.listener.on_data = self.on_messages_received
        self.listener.on_error = self.on_error 
开发者ID:sunary,项目名称:ank,代码行数:8,代码来源:processor.py

示例2: on_data

# 需要导入模块: from tweepy import streaming [as 别名]
# 或者: from tweepy.streaming import StreamListener [as 别名]
def on_data(self, data):
        global count
        # Loop keeps on fetching data and incrementing count until the time limit is reached.
        while ((time.time() - self.time) < self.limit):
            try:
                count+=1
                return True
            except BaseException as e:
                time.sleep(5)
                pass
        return False
# StreamListener Class Ends Here.

# REST API that fetches data from the past days till today.
# As per the API documentation twitter allows the user to access Tweets that are no more than 7 days old. 
开发者ID:prrateekk,项目名称:twitter_word_count,代码行数:17,代码来源:tweetcount.py


注:本文中的tweepy.streaming.StreamListener方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。