pythontelegrambotgroup | Unsorted

Telegram-канал pythontelegrambotgroup - >>> telegram.Bot()

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

Subscribe to a channel

>>> telegram.Bot()

Yeah its a question of rate limits and if you want the fancy animation

Читать полностью…

>>> telegram.Bot()

Yes exactly that is what it is for

Читать полностью…

>>> telegram.Bot()

You are like the fifth person asking for that, what is up with this feature and people needing a demo? :D

Читать полностью…

>>> telegram.Bot()

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

Читать полностью…

>>> telegram.Bot()

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

Читать полностью…

>>> telegram.Bot()

Anyone got any recommendations on methods to send a reply to a per_chat conversation as the bot via an external website?

Читать полностью…

>>> telegram.Bot()

https://docs.python-telegram-bot.org/en/stable/telegram.bot.html#telegram.Bot.send_message_draft

Читать полностью…

>>> telegram.Bot()

Where can we read ab this in PTB?

Читать полностью…

>>> telegram.Bot()

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

Читать полностью…

>>> telegram.Bot()

ok will try thank you!❤️

edit: works perfectly, you're the best bro

Читать полностью…

>>> telegram.Bot()

oh yeah, sorry. custom/premium emojis

Читать полностью…

>>> telegram.Bot()

guys where do you find an emoji ID? for use with new api feature

Читать полностью…

>>> telegram.Bot()

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?

Читать полностью…

>>> telegram.Bot()

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 ;)

Читать полностью…

>>> telegram.Bot()

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 =)

Читать полностью…

>>> telegram.Bot()

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)

Читать полностью…

>>> telegram.Bot()

It sounds interesting
But I am unsure of any real use case except having some kind of LLM for answering which is slowly generating

Читать полностью…

>>> telegram.Bot()

Is There an example on how it looks?

Читать полностью…

>>> telegram.Bot()

It's basically to manage queries people have about donations they make or get support with issues they're having

Читать полностью…

>>> telegram.Bot()

Huh? What does the external website show, the previous conversation?

Читать полностью…

>>> telegram.Bot()

I did the PR for it 🎉 so we will release it together with the 9.4 update

Читать полностью…

>>> telegram.Bot()

Its not really new now just for all bots

Читать полностью…

>>> telegram.Bot()

Did u guys see telegram released message streaming?

Читать полностью…

>>> telegram.Bot()

Refer to this article to learn more about Userbots.

Читать полностью…

>>> telegram.Bot()

@GetEmojiIdBot

Try this , I couldn't test it before sending as idh premium

Читать полностью…

>>> telegram.Bot()

Custom emojis right !?

Читать полностью…

>>> telegram.Bot()

Yes, change your bot's privacy in BotFather and then add a message handler.

Читать полностью…

>>> telegram.Bot()

Telethon and PTB connect to a different API/server

Читать полностью…

>>> telegram.Bot()

Friends, please send the Telegram bot document file 🙏🏻

Читать полностью…

>>> telegram.Bot()

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?

Читать полностью…
Subscribe to a channel