TheAlot is a modular IRC bot framework for Python3.
pip install thealot
{
"server" : "irc.quakenet.org",
"port" : 6667,
"channel" : "#TheAlot",
"nickname" : "TestAlot",
"prefix" : "!",
"database" : "sqlite:///alot.db",
"reconnection_interval" : 10,
"plugins" : [
]
}
python -m thealot.thealot
or
from thealot import TheAlot
bot = TheAlot()
if __name__ == "__main__":
bot.start()