A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
388 B

  1. # -*- coding: utf-8 -*-
  2. import random
  3. from classes import BaseCommand
  4. class Command(BaseCommand):
  5. """Test the bot!"""
  6. name = "test"
  7. def process(self, data):
  8. hey = random.randint(0, 1)
  9. if hey:
  10. self.connection.say(data.chan, "Hey \x02%s\x0F!" % data.nick)
  11. else:
  12. self.connection.say(data.chan, "'sup \x02%s\x0F?" % data.nick)