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.0.tar.gz
(13.2 kB
view details)
Built Distribution
File details
Details for the file deltabot_cli-6.1.0.tar.gz
.
File metadata
- Download URL: deltabot_cli-6.1.0.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 | a8fbea56d01caff122a1dbc79c37f44dd8b4a530d5020a88c3a33c59a6161a5e |
|
MD5 | b477ef02d6517dfd929db8e445977457 |
|
BLAKE2b-256 | 1bb55e325ba878e32860aa0d95e5372139a0fda590b0fba0a5118801fd48fe89 |
Provenance
File details
Details for the file deltabot_cli-6.1.0-py3-none-any.whl
.
File metadata
- Download URL: deltabot_cli-6.1.0-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 | deb3da916e283b498aa5cc8fe6d2bd791284bb669e34c5bd131ee4c67ae30cfe |
|
MD5 | 85cd270777d819d376406397c0b85d57 |
|
BLAKE2b-256 | dd9e8367b2c22a8a900568d92c69be3db603c6dd34cf451a3d53592a3a7712e8 |