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)