A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
950 B

  1. # -*- coding: utf-8 -*-
  2. """Generates help information."""
  3. actions, data = None, None
  4. def call(a, d):
  5. global actions, data
  6. actions, data = a, d
  7. if not data.args:
  8. do_general_help()
  9. else:
  10. do_command_help()
  11. def do_general_help():
  12. actions.say(data.chan, "\x02%s\x0F: I am a bot! You can get help for any command by typing '!help <command>'." % (data.nick))
  13. def do_command_help():
  14. command = data.args[0]
  15. try:
  16. exec "from irc.commands import %s as this_command" % command
  17. except ImportError:
  18. actions.say(data.chan, "\x02%s\x0F: command \x0303%s\x0301 not found!" % (data.nick, command))
  19. return
  20. info = this_command.__doc__
  21. if info:
  22. actions.say(data.chan, "\x02%s\x0F: Info for command \x0303%s\x0301: %s" % (data.nick, command, info))
  23. else:
  24. actions.say(data.chan, "\x02%s\x0F: Sorry, no information for \x0303%s\x0301." % (data.nick, command))