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)