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


Python secret.twitter_instance函数代码示例

本文整理汇总了Python中secret.twitter_instance函数的典型用法代码示例。如果您正苦于以下问题:Python twitter_instance函数的具体用法?Python twitter_instance怎么用?Python twitter_instance使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: run

def run(args, stdout=sys.stdout, stderr=sys.stderr):
    """The main function."""

    twhandler = twitter_instance()

    # Get the current rate limits for methods belonging to the
    # specified resource families.
    response = twhandler.application.rate_limit_status(
        resources=args.resources)
    output(response, stdout)
开发者ID:showa-yojyo,项目名称:bin,代码行数:10,代码来源:twapplication.py

示例2: execute

    def execute(self, args, stdout=sys.stdout, stderr=sys.stderr):
        """Execute the specified command."""

        self.logger = make_logger(self.name, stderr)

        if not self.twhandler:
            self.twhandler = twitter_instance()

        try:
            self.args.func()
        except TwitterHTTPError as ex:
            self.logger.error('exception', exc_info=ex)
            raise
开发者ID:showa-yojyo,项目名称:bin,代码行数:13,代码来源:__init__.py

示例3: run

def run(args, stdout=sys.stdout, stderr=sys.stderr):
    """The main function."""

    logger = make_logger('twsearch', stderr)
    twhandler = twitter_instance()
    request = twhandler.search.tweets

    kwargs = {k:args[k] for k in (
        'q',
        'geocode',
        'lang', 'locale',
        'result_type',
        'count',
        'until',
        'since_id', 'max_id',
        'include_entities',)
              if (k in args) and (args[k] is not None)}

    results = None
    if args['full']:
        results = []
        kwargs['count'] = COUNT_MAX
        try:
            while True:
                response = request(**kwargs)
                #metadata = response['search_metadata']
                if 'statuses' in response and response['statuses']:
                    statuses = response['statuses']
                    #max_id = metadata['max_id']
                    since_id = statuses[-1]['id']
                else:
                    logger.info("finished")
                    break

                logger.info(f'search.tweets params={kwargs}')
                results.append(response)

                if len(statuses) < kwargs['count']:
                    logger.info("finished")
                    break

                kwargs['max_id'] = since_id - 1
                time.sleep(2)
        except TwitterHTTPError as ex:
            logger.info('exception', exc_info=ex)
            #raise
    else:
        logger.info(f'search.tweets params={kwargs}')
        results = request(**kwargs)

    output(results, stdout)
开发者ID:showa-yojyo,项目名称:bin,代码行数:51,代码来源:twsearch.py


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