Library to speedup Delta Chat bot development
Project description
deltabot-cli for Python
Library to speedup Delta Chat bot development.
With this library you can focus on writing your event/message processing logic and let us handle the repetitive process of creating the bot CLI.
Install
pip install deltabot-cli
Usage
Example echo-bot written with deltabot-cli:
from deltachat2 import MsgData, events
from deltabot_cli import BotCli
cli = BotCli("echobot")
@cli.on(events.RawEvent)
def log_event(bot, accid, event):
bot.logger.info(event)
@cli.on(events.NewMessage)
def echo(bot, accid, event):
msg = event.msg
bot.rpc.send_msg(accid, msg.chat_id, MsgData(text=msg.text))
if __name__ == "__main__":
cli.start()
If you run the above script you will have a bot CLI, that allows to configure and run a bot. A progress bar is displayed while the bot is configuring, and logs are pretty-printed.
For more examples check the examples folder.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
deltabot_cli-6.1.1.tar.gz
(13.2 kB
view details)
Built Distribution
File details
Details for the file deltabot_cli-6.1.1.tar.gz
.
File metadata
- Download URL: deltabot_cli-6.1.1.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b64951b812523cbd26e0a07166ae89bb134fef7f6ed3633fed8495478e4a693e |
|
MD5 | 185e59e00be202e00d80678a54019101 |
|
BLAKE2b-256 | 72adbbf8ad15c42c0a7a6b5d95a6668401e31fc40947e7bc0b90a689baa4e950 |
Provenance
File details
Details for the file deltabot_cli-6.1.1-py3-none-any.whl
.
File metadata
- Download URL: deltabot_cli-6.1.1-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44b250393ad088f29abc8ccf38cd57f11b9a1a7d6f2bf880127cf5fd34cceed5 |
|
MD5 | 64aae6ab57d67d598417199666ab8fa3 |
|
BLAKE2b-256 | f8bea6c5007f061344f1a42704a144edb1d266506539fe6278e7ab8e57d75d15 |