Awesome IRC bot
Go to file
dave 1a7f6c0c59 Fix syntax error 2017-01-01 16:28:05 -08:00
bin Misc & lint fixes 2017-01-01 16:26:54 -08:00
docs Update docs #nobuild 2015-11-29 22:45:37 -08:00
examples Add ServerPassword module 2017-01-01 16:17:32 -08:00
pyircbot Fix syntax error 2017-01-01 16:28:05 -08:00
.gitignore Add _recv hook 2015-12-13 13:40:44 -08:00
README.md Update readme #nobuild 2015-12-13 14:17:15 -08:00
setup.py Misc & lint fixes 2017-01-01 16:26:54 -08:00

README.md

pyircbot3

A modular python IRC bot

Quick start

  • Install: python3 setup.py install
  • Configure: cd examples ; vim config.json data/config/Services.json
  • Run: pyircbot -c config.json

Running in docker

A dockerfile is included at examples/docker/. From the root of this repository, run docker build -t pyircbot -f examples/docker/Dockerfile . to build it. Typical use is mounting a directory from the host onto /srv/bot; this dir should contain config.json and any other dirs it references.

Building Docs

  • Install sphinx and all modules pyircbot depends on
  • cd docs ; make html
  • Open _build/index.html

Or, use my pre-built copy here.

Alternatively, use the included Dockerfile to create an environment for building the docs. Check docs/builder/README.md.

Developing Modules

Check Module Developers Guide in the docs

TODO

  • Improve/complete docs
  • Write config checker