Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 725 Bytes

README.rst

File metadata and controls

46 lines (31 loc) · 725 Bytes

TheAlot

TheAlot is a modular IRC bot framework for Python3.

Install

pip install thealot

Configure

{
    "server"                : "irc.quakenet.org",
    "port"                  : 6667,
    "channel"               : "#TheAlot",
    "nickname"              : "TestAlot",
    "prefix"                : "!",
    "database"              : "sqlite:///alot.db",
    "reconnection_interval" : 10,
    "plugins"               : [
    ]
}

Run

python -m thealot.thealot

or

from thealot import TheAlot

bot = TheAlot()

if __name__ == "__main__":
    bot.start()