deltachat-bot / bot-pages

Source of bots.delta.chat
https://bots.delta.chat
GNU General Public License v3.0
3 stars 0 forks source link

a quickstart guide on bot development #45

Closed missytake closed 1 year ago

missytake commented 1 year ago

related: #44

missytake commented 1 year ago

The page can be previewed here: https://staging.bots.delta.chat/45/quickstart.html

link2xt commented 1 year ago

@missytake This does not have to wait for https://github.com/deltachat/deltachat-core-rust/pull/3734. Except for the need to know about async, I like the approach in https://github.com/deltachat/deltachat-core-rust/pull/3734 better because there is a single loop that processes all the events and messages. But it is not applicable to CFFI python bindings because they already implement their own event loop (_inner_run), and the only thing you can do is hooking into it.