h/plugins/iambuttbot.py

19 lines
580 B
Python
Raw Normal View History

"""
iambuttbot.py: avidal 2009
posts everything buttbot says to the iambuttbot twitter account
"""
import urllib
import hook
2009-03-16 18:56:26 +00:00
@hook.command(hook=r'(.*)', prefix=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] + "..."
data = urllib.urlencode({"status": status})
2009-03-16 18:56:26 +00:00
url = 'http://iambuttbot:%s@twitter.com/statuses/update.xml' % password
response = urllib.urlopen(url, data)