Skip to main content

Library to speedup Delta Chat bot development

Project description

deltabot-cli for Python

Latest Release CI Code style: black

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


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.1.0.tar.gz (28.4 kB view details)

Uploaded Source

Built Distribution

deltabot_cli-3.1.0-py3-none-any.whl (26.9 kB view details)

Uploaded Python 3

File details

Details for the file deltabot-cli-3.1.0.tar.gz.

File metadata

  • Download URL: deltabot-cli-3.1.0.tar.gz
  • Upload date:
  • Size: 28.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for deltabot-cli-3.1.0.tar.gz
Algorithm Hash digest
SHA256 f4f50ef6c4a02dc2efdd46a4aaf5b68cdab9bbeda84c6c645e03a46f8408eb63
MD5 7a4b5b86d22b887ee0b7846b1ca9616e
BLAKE2b-256 a0a7366b086d0957b4ea79fb463592cbeb2cc9d5206352f4c7a1870667c8b873

See more details on using hashes here.

Provenance

File details

Details for the file deltabot_cli-3.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for deltabot_cli-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 af66fa60299c655c99908cd05cf442299b23d4789eaaff36e785ad17cf241e0f
MD5 7e4133868c5fd936a5d9a7d1eb61f891
BLAKE2b-256 22f66d12f82a2de867eab9b4ba4963fa7b891b84f27a4d2c317dbfb493bd4992

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page