D
Size: a a a
D
D
ヽ
D
D
П
D
ヽ
D
ヽ
D
D
П
@bot.message_handler(commands=['start'])
def start(m):
gif = 'ABCD62.....'
kb = types.InlineKeyboardMarkup()
kb.add(types.InlineKeyboardButton(text = 'Текст', callback_data = 'text1'))
bot.send_document(m.chat.id, gif, reply_markup = kb)
D
@bot.message_handler(commands=['start'])
def start(m):
gif = 'ABCD62.....'
kb = types.InlineKeyboardMarkup()
kb.add(types.InlineKeyboardButton(text = 'Текст', callback_data = 'text1'))
bot.send_document(m.chat.id, gif, reply_markup = kb)
П
@bot.message_handler(content_types = ['document'])
def docs(m):
bot.send_message(m.chat.id, m.document.file_id)
П
П
D
П