おは(ようを)あり(がとう)ではなくて おは(が)あり(ました)
つまり
isOha? :: Str -> Bool
なスクリプト。
#!/usr/bin/env python
# -*- encoding:utf-8 -*-
import twitter
api = twitter.Api(username='user',password='pass')
oha = [r.user.screen_name for r in api.GetReplies() \
if r.text.encode('utf-8').find('おは') > -1]
thx = "@" + " @".join(oha) + "おはありです"
status = api.PostUpdate(thx.decode('utf-8'))
pypiにあるtwitterじゃなくてpython-twitterを使いたかったので、既にインストールされてたtwitterモジュールはpythonモジュールのアンインストール - kokiyaの日記を参考に消した。