Paso 1: Crear un módulo de configuración
Valores que se diferencian entre las ejecuciones del bot deberían ser fáciles de ver y modificar. Para ello, vamos a crear un módulo de configuración que se almacena estos valores. Obtener su Twitch.tv OAuth token de twitchapps.com/tmi, cree un nuevo archivo en el directorio fuente llamado 'cfg.py' y añadir estos valores:
# cfg.pyHOST = "irc.twitch.tv" # the Twitch IRC serverPORT = 6667 # always use port 6667!NICK = "twitch_username" # your Twitch username, lowercasePASS = "oauth:xxxxxxxxxxxxxxxxxxxx" # your Twitch OAuth tokenCHAN = "#channel" # the channel you want to join