From 9fdbfd63ffdcbd0b8b279453441813a0f3de5be8 Mon Sep 17 00:00:00 2001 From: Guillermo Serrahima Date: Sat, 31 Jan 2026 18:16:37 +0000 Subject: [PATCH] Added question to README --- README.md | 6 ++++++ 1 file(s) changed, 6 insertion(s)(+), 0 deletion(s)(-) diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -23,3 +23,9 @@ python -m pip install poetry poetry install poetry run python main.py ``` + +## Questions + +**Why use asyncio? The telegram library already handles signals by default.** + +I wrote a private discord-telegram bridge bot in the past, and the way the discord library was made, I had to use `asyncio` to avoid one bot holding the other forever. Since this is intended as a skeleton for other bot projects, I wanted to have this scenario covered already. -- tangled.sh