Asyncio barebone IRC framework for bots
Find a file
2020-04-02 23:53:47 +01:00
examples improve examples/simple.py, add examples/sasl.py 2020-04-02 18:17:17 +01:00
ircrobots fix JOIN emit typehint issue (emit.channel may be None) 2020-04-02 23:53:47 +01:00
.gitignore Initial commit 2020-04-01 15:16:03 +01:00
.travis.yml add .travis.yml 2020-04-02 18:18:41 +01:00
LICENSE Initial commit 2020-04-01 15:16:03 +01:00
README.md first commit 2020-04-01 15:36:53 +01:00
requirements.txt make a Server interface, interface.IServer 2020-04-01 23:25:44 +01:00

ircrobots

rationale

I wanted a very-bare-bones IRC bot framework that deals with most of the concerns one would deal with in scheduling and awaiting async stuff, e.g. creating and awaiting a new task for each server while dynamically being able to add/remove servers.

usage

see examples/ for some usage demonstration.