from ircrobots import SASLUserPass NICKNAME = "hedyrelay" SERVERS = { "libera": { "connection": { "host": "irc.libera.chat", "port": 6697, "sasl": SASLUserPass("username", "password"), }, "chans": ["#hedy"], "hidechan": True, }, "tilde": { "connection": { "host": "irc.tilde.chat", "port": 6697, "sasl": SASLUserPass("username", "password"), }, "chans": ["##hedy"], "hidechan": True, }, "teapot": { "connection": { "host": "irc.teapot.chat", "port": 6697, "sasl": SASLUserPass("username", "password"), }, "chans": ["##hedy"], "hidechan": True, }, } ADMINS = ["hedy"] NOPING = ["hedy", "jmjl"] log_file = "log.txt"