本文整理汇总了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
示例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)
示例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)