A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
485 B

  1. # -*- coding: utf-8 -*-
  2. # EarwigBot Configuration File
  3. # This file contains information that the bot uses to connect to IRC.
  4. # our server's hostname
  5. HOST = "irc.freenode.net"
  6. # our server's port
  7. PORT = 6667
  8. # our nick
  9. NICK = "EarwigBot|2"
  10. # our ident
  11. IDENT = "earwigbot"
  12. # our real name
  13. REALNAME = "[[w:en:User:EarwigBot]]"
  14. # channel to join on startup
  15. CHANS = ["##earwigbot"]
  16. # hostnames of users who can update/restart the bot with !update
  17. ADMINS = ["wikipedia/The-Earwig"]