Pretending that telegram bot is typing?
问题 How can I make a bot to pretend that it is typing a message? The following text appears in the chat when the bot pretend to type: I use the python aiogram framework but a suggestion for the native Telegram API would be also helpful. 回答1: I seriously suggest using the python-telegram-bot library which has an extensive Wiki. The solution for what you want is described in code snippets. You can manually send the action: bot.send_chat_action(chat_id=chat_id, action=telegram.ChatAction.TYPING) Or