Giter VIP home page Giter VIP logo

deltabot-cli-py's People

Contributors

adbenitez avatar link2xt avatar simon-laux avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Forkers

nelson9608

deltabot-cli-py's Issues

Depend on stable version of deltachat-rpc-client

Currently default branch is installed:

"deltachat-rpc-client @ git+https://github.com/deltachat/deltachat-core-rust.git#subdirectory=deltachat-rpc-client",

This results in errors when looking up event type attribute which got renamed into kind on the default master branch.

This can be worked around by doing
pip install --force-reinstall git+https://github.com/deltachat/deltachat-core-rust.git@stable#subdirectory=deltachat-rpc-client
but ideally pyproject.toml should link to this URL.

bug when run example echo.py

#!/usr/bin/env python3
"""Minimal echo-bot example."""
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()

run python3 echo.py email password

then:

python3.12/site-packages/deltachat2/events.py", line 96, in filter
assert isinstance(event, CoreEvent), "event must be an instance of CoreEvent"
AssertionError: event must be an instance of CoreEvent

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.