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

28 行
637 B

  1. # -*- coding: utf-8 -*-
  2. # Check what events on IRC we can respond to.
  3. from irc.commands import test, help, git
  4. def check(connection, data, hook):
  5. data.parse_args() # parse command arguments into data.command and data.args
  6. if hook == "join":
  7. pass
  8. if hook == "msg_private":
  9. pass
  10. if hook == "msg_public":
  11. pass
  12. if hook == "msg":
  13. if data.command == "!test":
  14. test.call(connection, data)
  15. elif data.command == "!help":
  16. help.call(connection, data)
  17. elif data.command == "!git":
  18. git.call(connection, data)