Awesome IRC bot
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dave f7990667eb Support highlights as command triggers too 5 years ago
bin Add metadata interchange to pubsub mode 5 years ago
docs Make requirements and docbuilder simpler 5 years ago
examples Update cryptowallet + rpc 5 years ago
pyircbot Support highlights as command triggers too 5 years ago
tests Support highlights as command triggers too 5 years ago
tools Add metadata interchange to pubsub mode 5 years ago
.gitignore tests 6 years ago
README.md Update docs with testing info 6 years ago
requirements-test.txt Add DCC module 5 years ago
requirements.txt Make requirements and docbuilder simpler 5 years ago
run-example.sh Add DCC module 5 years ago
run-tests.sh Support highlights as command triggers too 5 years ago
setup.py fix unicode error 6 years ago

README.md

pyircbot3

A modular python IRC bot

Quick start

  • Install: python3 setup.py install
  • Configure: vim examples/config.json examples/data/config/Services.json
  • Run: pyircbot -c examples/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

Tests

PyIRCBot has great test coverage. After installing the contents of requirements-test.txt, the script ./run-tests.sh will run all tests. See the contents of the script for more information. See README.md in ./tests/ for more info.

TODO

  • Improve/complete docs
  • Write config checker