A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

21 satır
393 B

  1. # -*- coding: utf-8 -*-
  2. # A simple command to test the bot.
  3. import random
  4. actions, data = None, None
  5. def call(a, d):
  6. global actions, data
  7. actions, data = a, d
  8. choices = ("say_hi()", "say_sup()")
  9. exec random.choice(choices)
  10. def say_hi():
  11. actions.say(data.chan, "Hey \x02%s\x0F!" % data.nick)
  12. def say_sup():
  13. actions.say(data.chan, "'sup \x02%s\x0F?" % data.nick)