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


Python Account.tweet方法代码示例

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


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

示例1: get

# 需要导入模块: from models import Account [as 别名]
# 或者: from models.Account import tweet [as 别名]
    def get(self):
        blog = Blog('http://mirahalibrary.blogspot.com/feeds/posts/default')
        posts = blog.select_posts_bytag(u'鏡館')
        msg = self.sample_msg(posts)

        account = Account()

        try:
            account.tweet(msg)
        except TweepError as e:
            reason = 'Status is a duplicate.'
            if e.response.status == 403 and e.reason == reason:
                logging.info(u'retry because {0}: {1}'.format(reason, msg))
                last_tweets = account.last_tweets(20)
                msg = self.unduplicate_msg(last_tweets, posts)
                account.tweet(msg)
            else:
                raise
开发者ID:so-c,项目名称:nozomi_miraha,代码行数:20,代码来源:quote.py

示例2: get

# 需要导入模块: from models import Account [as 别名]
# 或者: from models.Account import tweet [as 别名]
    def get(self):
        weather = Weather(130010)
        telop = weather.get_telop()

        if telop.find(u'雨') != -1:
            msg_tmpl = u'おはようございます。今日は{0}ですね。傘はお持ちですか? {1}'
            msg = msg_tmpl.format(telop, weather.get_link())
        elif telop.find(u'雪') != -1:
            msg_tmpl = u'おはようございます。今日は{0}ですよ! 暖かくしていってくださいね。 {1}'
            msg = msg_tmpl.format(telop, weather.get_link())
        else:
            r = random.randint(0, 2)

            if r == 0:
                msg = u'おはようございます。今日も1日がんばりましょう。'
            elif r == 1:
                msg = u'おはようございます。今日は何しようかな?'
            elif r == 2:
                msg = u'おはようございまーす♪'

        account = Account()
        account.tweet(msg)
开发者ID:so-c,项目名称:nozomi_miraha,代码行数:24,代码来源:hello.py

示例3: get

# 需要导入模块: from models import Account [as 别名]
# 或者: from models.Account import tweet [as 别名]
    def get(self):
        random.seed()
        r = random.randint(0, 2)

        if r == 0:
            msg = u'眠たくなってきました……。おやすみなさい。'
        elif r == 1:
            msg = u'おやすみなさい。あまり夜更かしすると体に毒ですよ?'
        elif r == 2:
            msg = u'そろそろ寝ることにします。おやすみなさい。'

        d = datetime.datetime.now() + datetime.timedelta(days=1, hours=9)  # XXX

        if d.weekday() == 5:
            msg += u'明日は土曜日、お休みですね。'
        elif d.weekday() == 6:
            msg += u'明日は日曜日、お休みですね。'
        else:
            holiday = Holiday().isholiday(d)
            if holiday != '':
                msg += u'明日は' + holiday + u'でお休みですね。'

        account = Account()
        account.tweet(msg)
开发者ID:so-c,项目名称:nozomi_miraha,代码行数:26,代码来源:goodnight.py


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