All Projects → errbotio → Errbot

errbotio / Errbot

Licence: gpl-3.0
Errbot is a chatbot, a daemon that connects to your favorite chat service and bring your tools and some fun into the conversation.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Errbot

Poshbot
Powershell-based bot framework
Stars: ✭ 410 (-84.26%)
Mutual labels:  chatbot, chatbots, devops, chatops
Cds
Enterprise-Grade Continuous Delivery & DevOps Automation Open Source Platform
Stars: ✭ 3,677 (+41.15%)
Mutual labels:  automation, hacktoberfest, devops
Cog
Bringing the power of the command line to chat
Stars: ✭ 910 (-65.07%)
Mutual labels:  chatbot, devops, chatops
Webhook2telegram
🤖 A simple bot to translate JSON HTTP requests into Telegram push messages
Stars: ✭ 357 (-86.3%)
Mutual labels:  chatbot, devops, chatops
St2
StackStorm (aka "IFTTT for Ops") is event-driven automation for auto-remediation, security responses, troubleshooting, deployments, and more. Includes rules engine, workflow, 160 integration packs with 6000+ actions (see https://exchange.stackstorm.org) and ChatOps. Installer at https://docs.stackstorm.com/install/index.html. Questions? https://…
Stars: ✭ 4,600 (+76.58%)
Mutual labels:  automation, devops, chatops
Opsdroid
🤖 An open source chat-ops bot framework
Stars: ✭ 563 (-78.39%)
Mutual labels:  hacktoberfest, devops, chatops
Devops Guide
DevOps Guide - Development to Production all configurations with basic notes to debug efficiently.
Stars: ✭ 4,119 (+58.12%)
Mutual labels:  hacktoberfest, devops, hacktoberfest2020
Slacker
Slack Bot Framework
Stars: ✭ 495 (-81%)
Mutual labels:  chatbot, chat, chatops
Chef
Chef Infra, a powerful automation platform that transforms infrastructure into code automating how infrastructure is configured, deployed and managed across any environment, at any scale
Stars: ✭ 6,766 (+159.73%)
Mutual labels:  automation, hacktoberfest, devops
Watchtower
A process for automating Docker container base image updates.
Stars: ✭ 9,526 (+265.68%)
Mutual labels:  automation, hacktoberfest, devops
Earthly
Repeatable builds
Stars: ✭ 5,805 (+122.84%)
Mutual labels:  hacktoberfest, hacktoberfest2020
Awesome Devsecops
Curating the best DevSecOps resources and tooling.
Stars: ✭ 188 (-92.78%)
Mutual labels:  hacktoberfest, devops
Red Discordbot
A multi-function Discord bot
Stars: ✭ 2,855 (+9.6%)
Mutual labels:  chatbot, hacktoberfest
Discordchatexporter
Exports Discord chat logs to a file
Stars: ✭ 3,198 (+22.76%)
Mutual labels:  hacktoberfest, chat
Checkov
Prevent cloud misconfigurations during build-time for Terraform, Cloudformation, Kubernetes, Serverless framework and other infrastructure-as-code-languages with Checkov by Bridgecrew.
Stars: ✭ 3,572 (+37.12%)
Mutual labels:  hacktoberfest, devops
Bolt Python
A framework to build Slack apps using Python
Stars: ✭ 190 (-92.71%)
Mutual labels:  chatbot, chatops
Python Scripts
Collection of Various Python Script's.💻
Stars: ✭ 195 (-92.51%)
Mutual labels:  automation, hacktoberfest
Linkedin Skill Assessments Quizzes
Full reference of LinkedIn answers 2021 for skill assessments, LinkedIn test, questions and answers (aws-lambda, rest-api, javascript, react, git, html, jquery, mongodb, java, Go, python, machine-learning, power-point) linkedin excel test lösungen, linkedin machine learning test
Stars: ✭ 7,014 (+169.25%)
Mutual labels:  hacktoberfest, hacktoberfest2020
Venom
Venom is the most complete javascript library for Whatsapp, 100% Open Source.
Stars: ✭ 3,457 (+32.71%)
Mutual labels:  chatbot, chat
Linebot
🤖 SDK for the LINE Messaging API for Node.js
Stars: ✭ 184 (-92.94%)
Mutual labels:  chatbot, hacktoberfest
https://errbot.readthedocs.org/en/latest/_static/errbot.png

Latest Version License Join the chat at https://gitter.im/errbotio/errbot

Errbot

Errbot is a chatbot. It allows you to start scripts interactively from your chatrooms for any reason: random humour, chatops, starting a build, monitoring commits, triggering alerts...

It is written and easily extensible in Python.

Errbot is available as open-source software and released under the GPL v3 license.

Features

Chat servers support

Built-in

With add-ons

Administration

After the initial installation and security setup, Errbot can be administered by just chatting to the bot (chatops).

  • install/uninstall/update/enable/disable private or public plugins hosted on git
  • plugins can be configured from chat
  • direct the bot to join/leave Multi User Chatrooms (MUC)
  • Security: ACL control feature (admin/user rights per command)
  • backup: an integrated command !backup creates a full export of persisted data.
  • logs: can be inspected from chat or streamed to Sentry.

Developer features

  • Very easy to extend in Python! (see below)
  • Presetup storage for every plugin i.e. self['foo'] = 'bar' persists the value.
  • Conversation flows to track conversation states from users.
  • Webhook callbacks support
  • supports markdown extras formatting with tables, embedded images, links etc.
  • configuration helper to allow your plugin to be configured by chat
  • Text development/debug consoles
  • Self-documenting: your docstrings become help automatically
  • subcommands and various arg parsing options are available (re, command line type)
  • polling support: your can setup a plugin to periodically do something
  • end to end test backend
  • card rendering under Slack

Community and support

If you have:

You can also ping us on Twitter with the hashtag #errbot.

Installation

Prerequisites

Errbot runs under Python 3.6+ on Linux, Windows and Mac. For some chatting systems you'll need a key or a login for your bot to access it.

Quickstart

We recommend to setup a virtualenv.

  1. Install errbot from pip
  2. Make a directory somewhere (here called errbot) to host Errbot's data files
  3. Initialize the directory
  4. Try out Errbot in text mode
$ pip install errbot
$ mkdir errbot; cd errbot
$ errbot --init
$ errbot

It will show you a prompt >>> so you can talk to your bot directly! Try !help to get started.

Adding support for a chat system

For the built-ins, just use one of those options slack, telegram, IRC, XMPP with pip, you can still do it after the initial installation to add the missing support for example

$ pip install "errbot[slack]"

For the external ones (Skype, Gitter, Discord etc ...), please follow their respective github pages for instructions.

Configuration

In order to configure Errbot to connect to one of those chat systems you'll need to tweak the config.py file generated by errbot --init.

To help you, we have a documented template available here: config-template.py.

Note: even if you changed the BACKEND from the configuration, you can still use errbot -T to test out your instance locally in text mode.

Starting Errbot as a daemon

If all that worked, you can now use the -d (or --daemon) parameter to run it in a detached mode:

errbot --daemon

Interacting with the Bot

After starting Errbot, you should add the bot to your buddy list if you haven't already. You'll need to invite the bot explicitly to chatrooms on some chat systems too. You can now send commands directly to the bot!

To get a list of all available commands, you can issue:

!help

If you just wish to know more about a specific command you can issue:

!help command

Managing plugins

You can administer the bot in a one-on-one chat if your handle is in the BOT_ADMINS list in config.py.

For example to keyword search in the public plugin repos you can issue:

!repos search jira

To install a plugin from this list, issue:

!repos install <name of repo>

For example !repos install errbotio/err-imagebot.

Writing plugins

Writing your own plugins is extremely simple. errbot --init will have installed in the plugins subdirectory a plugin called err-example you can use as a base.

As an example, this is all it takes to create a "Hello, world!" plugin for Errbot:

from errbot import BotPlugin, botcmd

class Hello(BotPlugin):
    """Example 'Hello, world!' plugin for Errbot"""

    @botcmd
    def hello(self, msg, args):
        """Return the phrase "Hello, world!" to you"""
        return "Hello, world!"

This plugin will create the command "!hello" which, when issued, returns "Hello, world!" to you. For more info on everything you can do with plugins, see the plugin development guide.

Contribution to Errbot itself

Feel free to fork and propose changes on github

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].