├── .github └── workflows │ └── python-lint.yml ├── .gitignore ├── .gitlab-ci.yml ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── base-config.yaml ├── maubot.yaml ├── pyproject.toml ├── reactbot ├── __init__.py ├── bot.py ├── config.py ├── rule.py ├── simplepattern.py └── template.py └── samples ├── jesari.yaml ├── nitter.yaml ├── random-reaction.yaml ├── stallman.yaml └── thread.yaml /.github/workflows/python-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/.github/workflows/python-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.mbp 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/README.md -------------------------------------------------------------------------------- /base-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/base-config.yaml -------------------------------------------------------------------------------- /maubot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/maubot.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /reactbot/__init__.py: -------------------------------------------------------------------------------- 1 | from .bot import ReactBot 2 | -------------------------------------------------------------------------------- /reactbot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/reactbot/bot.py -------------------------------------------------------------------------------- /reactbot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/reactbot/config.py -------------------------------------------------------------------------------- /reactbot/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/reactbot/rule.py -------------------------------------------------------------------------------- /reactbot/simplepattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/reactbot/simplepattern.py -------------------------------------------------------------------------------- /reactbot/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/reactbot/template.py -------------------------------------------------------------------------------- /samples/jesari.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/samples/jesari.yaml -------------------------------------------------------------------------------- /samples/nitter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/samples/nitter.yaml -------------------------------------------------------------------------------- /samples/random-reaction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/samples/random-reaction.yaml -------------------------------------------------------------------------------- /samples/stallman.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/samples/stallman.yaml -------------------------------------------------------------------------------- /samples/thread.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/reactbot/HEAD/samples/thread.yaml --------------------------------------------------------------------------------