Skip to content

Instantly share code, notes, and snippets.

@kimihito
Created May 9, 2012 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kimihito/2644297 to your computer and use it in GitHub Desktop.
Save kimihito/2644297 to your computer and use it in GitHub Desktop.
ギー沖のゴミ捨てお知らせbot
#!/usr/bin/env python
# coding: utf-8
import tweepy
import datetime
consumer_key = "YOUR CONSUMER KEY"
consumer_secret = "YOUR CONSUMER SECRET KEY"
access_token = "YOUR ACCESS TOKEN"
access_secret = "YOUR ACCESS SECRET"
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)
api = tweepy.API(auth_handler=auth)
dt = datetime.date.today()
string = u"@cota2n @gliese @_ringogirl @hanachin_ @kimihito_ "
if dt.weekday() == 0:
string += u"今日は燃えるゴミの日ですよ!"
elif dt.weekday() == 1:
string += u"今日は缶・ビンの燃えないゴミの日!"
elif dt.weekday() == 2:
string += u"今日はペットボトルの日!"
elif dt.weekday() == 3:
string += u"今日は燃えるゴミの日ですよ!"
elif dt.weekday() == 4:
string += u"今日は何の日かわかんない!"
elif dt.weekday() == 5:
string += u"ゴミはないけど、掃除しようぜ!"
else:
string += u"今日はゆっくり休みましょ"
api.update_status(string)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment