Errbot¶
Errbot is a chatbot, a daemon that connects to your favorite chat service and brings your tools into the conversation.
The goal of the project is to make it easy for you to write your own plugins so you can make it do whatever you want: a deployment, retrieving some information online, trigger a tool via an API, troll a co-worker,…
Errbot is being used in a lot of different contexts: chatops (tools for devops), chatroom engagement, home security, socials platform (such as Slack, Discord, IRC), etc.
Screenshots¶
Simple to build upon¶
Extending Errbot and adding your own commands can be done by creating a plugin, which
is simply a class derived from BotPlugin
.
The docstrings will be automatically reused by the !help
command:
from errbot import BotPlugin, botcmd
class HelloWorld(BotPlugin):
"""Example 'Hello, world!' plugin for Errbot."""
@botcmd
def hello(self, msg, args):
"""Say hello to the world."""
return "Hello, world!"
Once you said “!hello” in your chatroom, the bot will answer “Hello, world!”.
Batteries included¶
We aim to give you all the tools you need to build a customized bot safely, without having to worry about basic functionality. As such, Errbot comes with a wealth of features out of the box.
Community¶
You can interact directly with the community online from the “Open Chat” button at the bottom of this page. Don’t be shy and feel free to ask any question there, we are more than happy to help you.
If you think you hit a bug or the documentation is not clear enough, you can open an issue or even better, open a pull request.
User guide¶
- Setup
- Administration
- Plugin development
- 1. Intro
- 2. Development environment
- 3. Hello, world!
- 4. Advanced bot commands
- 5. Messaging
- 6. Presence
- 7. Mentions
- 8. Persistence
- 9. Configuration
- 10. Streams
- 11. Plugin Dependencies
- 12. Dynamic plugins (advanced)
- 13. Scheduling
- 14. Webhooks
- 15. Testing your plugins
- 16. Logging
- 17. Exception Handling
- 18. Plugin compatibility settings
- 19. Backend-specifics
- Flow development
- [Advanced] Backend development
- [Advanced] Storage Plugin development
- Logging to Sentry
Getting involved¶
API documentation¶
- errbot package
- Subpackages
- Submodules
- errbot.backend_plugin_manager module
- errbot.bootstrap module
- errbot.botplugin module
- errbot.cli module
- errbot.config-template module
- errbot.core module
- errbot.flow module
- errbot.logs module
- errbot.plugin_info module
- errbot.plugin_manager module
- errbot.plugin_wizard module
- errbot.repo_manager module
- errbot.streaming module
- errbot.templating module
- errbot.utils module
- errbot.version module
- Module contents
Release history¶
License¶
Errbot is free software, available under the GPL-3 license. Please refer to the
full license text
for more details.