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 deltabot_cli import BotCli, events
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.misc_send_text_message(accid, msg.chat_id, 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-3.2.4.tar.gz
(21.7 kB
view details)
Built Distribution
File details
Details for the file deltabot-cli-3.2.4.tar.gz
.
File metadata
- Download URL: deltabot-cli-3.2.4.tar.gz
- Upload date:
- Size: 21.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d7800c6d802d611f25624c36324b06fb9a986011f0d80b2c037bc4c9f60d78a |
|
MD5 | ff7577915b04833edcc55d01bb393e4c |
|
BLAKE2b-256 | 8133f33908db1bce2c85744973753503387309c40d9424876ace40c1c0aaa85a |
Provenance
File details
Details for the file deltabot_cli-3.2.4-py3-none-any.whl
.
File metadata
- Download URL: deltabot_cli-3.2.4-py3-none-any.whl
- Upload date:
- Size: 21.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e2f62ddace4f3bf7f0f0048cee33262b95cd1ad8c928ec3fd6bfacc69d1559b |
|
MD5 | 0c5d1fb2d6af25372205e3d6e51d60eb |
|
BLAKE2b-256 | 8863a56499aa3935cb71d4edb7ef0d99fc0ad7b83683e39588f761d5d11d42f5 |