from telegram import InlineKeyboardButton, InlineKeyboardMarkup
from telegram.ext import Updater, CommandHandler
def command2(update, context):
# Ваше сообщение
message = "Ваше сообщение здесь"
# Создание двух URL-кнопок
keyboard = [
[InlineKeyboardButton("Название кнопки 1", url="url1"),
InlineKeyboardButton("Название кнопки 2", url="url2")]
]
reply_markup = InlineKeyboardMarkup(keyboard)
# Отправка сообщения с кнопками
update.message.reply_text(message, reply_markup=reply_markup)
def main():
updater = Updater(token='YOUR TOKEN HERE', use_context=True)
dp = updater.dispatcher
dp.add_handler(CommandHandler('command2', command2))
updater.start_polling()
updater.idle()
if __name__ == '__main__':
main()
Выручайте