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.0.1.tar.gz
(13.1 kB
view details)
Built Distribution
File details
Details for the file deltabot-cli-6.0.1.tar.gz
.
File metadata
- Download URL: deltabot-cli-6.0.1.tar.gz
- Upload date:
- Size: 13.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba6510c4c5b198b9755ef597fcbc3ba7c69ea180b606e6c5f1df235aed0817a5 |
|
MD5 | 5fc3bc48fba8df194e34a39cf8babb0a |
|
BLAKE2b-256 | 2ca997b90bdaebb8caa9546b6b206c331621e2e311bcc19b1c0e1809a15217b5 |
Provenance
File details
Details for the file deltabot_cli-6.0.1-py3-none-any.whl
.
File metadata
- Download URL: deltabot_cli-6.0.1-py3-none-any.whl
- Upload date:
- Size: 12.0 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 | f3f840c728add70c42ecda006853e3ca16f322cf3ddf6b3eff29dfece47a62ef |
|
MD5 | d07a68d37425c83650461a0523d05da6 |
|
BLAKE2b-256 | e0af3e0e07ddae3baa053524699db2b11673dffc025ac53ee7575b7a82ac4894 |