11054
This group is for questions, answers and discussions around the python-telegram-bot library. Off-topic group: @pythontelegrambottalk | Website: https://python-telegram-bot.org
Yeah its a question of rate limits and if you want the fancy animation
Читать полностью…
You are like the fifth person asking for that, what is up with this feature and people needing a demo? :D
Читать полностью…
I mean, okay, thats fun. You can probably code most of that in the browser and have a thin bot api interface just getting updates and storing them somewhere and taking send message requests from the website.
But you can also do the heavy rendering serverside, however you want
User starts a chat
Chat is added to message management site
Staff can reply to the conversations that users have initiated to continue providing support as needed
Anyone got any recommendations on methods to send a reply to a per_chat conversation as the bot via an external website?
Читать полностью…
https://docs.python-telegram-bot.org/en/stable/telegram.bot.html#telegram.Bot.send_message_draft
Читать полностью…
The Bot API has been updated to version 9.5. This update adds the iconCustomEmojiId field to the BottomButton class and also adds the ability to send streaming messages.
https://core.telegram.org/bots/api#march-1-2026
ok will try thank you!❤️
edit: works perfectly, you're the best bro
guys where do you find an emoji ID? for use with new api feature
Читать полностью…
Hello!
guys, is it possible to the bot to read messages that are not commands?
i've seen some bots that react to messages that has a key word that the bot recognizes and then reply to the message or something.
is this possible to this api wrapper to do something like this?
Hey. In order for someone to be able to help you, you must ask a good technical question. Please read this short article and try again ;)
Читать полностью…
I don't know. By the way my bot through some timeout errors not while ago , but I just increase timeout time to 15 seconds. Testing now =)
Читать полностью…
import asyncio
from telegram import Update
from telegram.ext import ContextTypes
async def start(update: Update, context: ContextTypes.DEFAULT_TYPE):
words = ["Hii", "How", "Are", "You"]
message = await update.message.reply_text(words[0])
full_text = words[0]
for word in words[1:]:
await asyncio.sleep(0.5)
full_text += " " + word
await message.edit_text(full_text)
It sounds interesting
But I am unsure of any real use case except having some kind of LLM for answering which is slowly generating
It's basically to manage queries people have about donations they make or get support with issues they're having
Читать полностью…
Huh? What does the external website show, the previous conversation?
Читать полностью…
I did the PR for it 🎉 so we will release it together with the 9.4 update
Читать полностью…
Did u guys see telegram released message streaming?
Читать полностью…
Refer to this article to learn more about Userbots.
Читать полностью…
@GetEmojiIdBot
Try this , I couldn't test it before sending as idh premium
Yes, change your bot's privacy in BotFather and then add a message handler.
Читать полностью…
Telethon and PTB connect to a different API/server
Читать полностью…
Friends, please send the Telegram bot document file 🙏🏻
Читать полностью…
My VPS is located in Germany + I tried the bot from my local pc and it worked without problems, so what is the solution? Could it be a DNS problem?
Читать полностью…