# -*- coding: utf-8 -*- # our server's hostname HOST = "irc.freenode.net" # our server's port PORT = 6667 # our nick NICK = "EarwigBot|2" # our ident IDENT = "earwigbot" # our real name REALNAME = "[[w:en:User:EarwigBot]]" # channel to join on startup CHANS = ["##earwigbot"] # sleep this number of seconds in between API calls and messages sent to IRC THROTTLE = 1 # hostnames of users who can update/restart the bot with !update ADMINS = ["wikipedia/The-Earwig"]