h/plugins/iambuttbot.py

19 lines
613 B
Python
Raw Normal View History

"""
iambuttbot.py: avidal 2009
posts everything buttbot says to the iambuttbot twitter account
"""
import urllib
import hook
@hook.command(hook=r'(.*)', prefix=False, ignorebots=False)
def iambuttbot(bot, input):
2009-03-16 18:56:26 +00:00
if input.nick.lower() != 'buttbot':
return
password = open('iambuttbot_password').readlines()[0].strip()
status = input.inp if len(input.inp) <= 140 else input.inp[:137] + "..."
2009-03-28 03:42:19 +00:00
data = urllib.urlencode({"status": status.encode('utf8')})
2009-03-16 18:56:26 +00:00
url = 'http://iambuttbot:%s@twitter.com/statuses/update.xml' % password
response = urllib.urlopen(url, data)