pythontelegrambotgroup | Unsorted

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

10327

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

Question was not about that

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

>>> telegram.Bot()

Is it necessary to disable privacy mode? All staff worked fine before. . .

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

>>> telegram.Bot()

Did you disable privacy mode between adding the bot to chat1 and chat 2?

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

>>> telegram.Bot()

i see, apscheduler it is then, thanks anyway

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

>>> telegram.Bot()

We sadly start the job queue and the update_queue in the same application start call. So no easy way unless you hack into the library.

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

>>> telegram.Bot()

You can just use APScheduler

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

>>> telegram.Bot()

You can't parse a link with the bot API.

You can parse the website though

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

>>> telegram.Bot()

As the Debian maintainers say, "it's ready when it's ready"

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

>>> telegram.Bot()

wdym with telegram link?

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

>>> telegram.Bot()

nice way to write only 5 words long messages

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

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

Wiki of python-telegram-bot - Category FAQ
What messages can my Bot see?

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

>>> telegram.Bot()

Bot worked, but after restart stopped. In this only chat

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

>>> telegram.Bot()

Hi! Why my bot does not see commands from specific chat (simple echo command)? In private chat works nice, but from chat1 no events. From another chat2 command events working

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

>>> telegram.Bot()

that just added an extra newline to prettify the message

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

>>> telegram.Bot()

That's how they introduced the third paragraph indeed

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

>>> telegram.Bot()

is there a way to run the application's job_queue and nothing else?

I made a bot that just posts in a channel every day and I don't want to process updates (+ it's a bit of a pain running two instances with the same token..), so is there a way to start the job_queue without running the updater/polling/whatever?

I know I could probably just use apscheduler directly with a Bot instance, but I figured a simple substitution to application.run_polling(allowed_updates=Update.ALL_TYPES) would be faster and easier

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

>>> telegram.Bot()

When will Full Support for Bot API 9.4 be available on python-telegram-bot?

Please add another day😁

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

>>> telegram.Bot()

everytime someone asks, we will wait one day more, just out of spite

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

>>> telegram.Bot()

When will Full Support for Bot API 9.4 be available on python-telegram-bot? 😞

I checked the logs here https://docs.python-telegram-bot.org, but it still supports 9.3 only

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

>>> telegram.Bot()

Hello, how can I know from the link whether it contains a file or not?
Telegram link

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

>>> 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?

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