GLaDOS/main.py

23 lines
394 B
Python
Executable File

#!/usr/bin/env python
import sys
import time
from threading import Thread
from bot import Bot
from secrets import USER, PASSWORD
glados = Bot(
('irc.planet-casio.com', 6697),
('127.0.0.1', 5555),
["#general", "#glados"]
)
@glados.irc.on(lambda m: "Hello" in m.text)
def say_hello(msg):
glados.irc.send(msg.to, f"Nice to see you, {msg.author}")
glados.start()
glados.run()