SimpleBot
An extensible Delta Chat bot.
Install
To install the latest stable version of SimpleBot run the following command (preferably in a virtual environment):
pip install simplebot
To test unreleased version:
pip install --pre -U -i https://m.devpi.net/dc/master deltachat
pip install https://github.com/simplebot-org/simplebot/archive/dev.zip
⚠️ NOTE: If Delta Chat Python bindings package is not available for your platform you will need to compile and install the bindings manually, check deltachat documentation for more info.
Quick Start: Running a bot+plugins
(Replace variables $ADDR and $PASSWORD with the email and password for the account the bot will use)
-
Add an account to the bot:
simplebot init "$ADDR" "$PASSWORD"
-
Install some plugins:
pip install simplebot-echo
-
Start the bot:
simplebot serve
Plugins
SimpleBot is a base bot that relies on plugins to add functionality, for official plugins check simplebot_plugins
Everyone can publish they own plugins, search in PyPI to discover cool SimpleBot plugins
⚠️ NOTE: Plugins installed as Python packages (for example with
pip) are global to all accounts you register in the bot, to separate plugins per account you need to run each account in its own virtual environment.
Creating per account plugins
If you know how to code in Python, you can quickly create plugins and install them to tweak your bot.
Lets create an "echo bot", create a file named echo.py and write inside:
import simplebot
@simplebot.filter
def echo(message, replies):
""" Echoes back received message."""
replies.add(text=message.text)
That is it! you have created a plugin that will transform simplebot in an "echo bot" that will echo back any text message you send to it. Now tell simplebot to register your plugin:
simplebot plugin --add ./echo.py
Now you can start the bot and write to it from Delta Chat app to see your new bot in action.
Check the examples folder to see some examples about how to create plugins.
Note for users
SimpleBot uses Autocrypt end-to-end encryption but note that the operator of the bot service can look into messages that are sent to it.
Credits
SimpleBot is based on deltabot
SimpleBot logo was created by Cuban designer "Dann".
Release files for simplebot 1.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| simplebot-1.0.1.tar.gz | 135.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| simplebot-1.0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 273.3 kB
Release files / simplebot-1.0.1.tar.gz
| Download URL | simplebot-1.0.1.tar.gz |
|---|---|
| Size | 135.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f0f73dac58092bf9b44adaffb181d50e391f01c612894939a6ab22ddf74a2224
|
|
BLAKE2b-256 checksum How to use checksums |
8b6e6c3db1f05f03624bcebe41e4cdba03675dad5339f68bb3ef52804446ef9b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
|
Release files / simplebot-1.0.1-py3-none-any.whl
| Download URL | simplebot-1.0.1-py3-none-any.whl |
|---|---|
| Size | 138.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3f3d7ba6d6973f15665a01002540e66320629e47aae2c71ae2fd21446bbdfd4d
|
|
BLAKE2b-256 checksum How to use checksums |
f88b224d9bf3852a3bc28138b1bf291d62f83008dbfee06347b3b9c7b14ee268
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
|