python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Repeat action on button click in telebot module
I'm implementing a simple function in Python, but it doesn't work
Function:
# Рандомное число с кнопкой
@bot.message_handler(content_types=['text'], commands=['get_number'])
def get_number(message):
...
Artem Shevlyakov
Votes: 0
Answers: 1
how to get channelname from channels using telethon
I want to get the username of a telegram channel. I have given the channel_id. I tried to get it via get_entity like:
channelData = await client.get_entity(channelId)
print(channelData.username)
and...
CampingCow
Votes: 0
Answers: 1
Avoid FloodWait in python
I am new to Pyrogram and I try to make subsctiption bot
I want to send messages as soon as any satisfy my filters, but every time I send more than 3 messages in a row I get FloodWait error. There is n...
ThePigeonKing
Votes: 0
Answers: 1
Telegram API swift (or objective-c) client, to read channel messages
I'm wondering if it's possible the read messages from telegram channel from the iOS app.
I want to parse public channel to implement an application which will show a map with latest Air-Raid sirens in...
nrudnyk
Votes: 0
Answers: 0