Notice
Recent Posts
Recent Comments
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

아직도 텔레그램 안쓰니?

텔레그램 봇 ReplyKeyboardMarkup 버튼 코드 본문

텔레그램 팁

텔레그램 봇 ReplyKeyboardMarkup 버튼 코드

텔레그램사랑 2024. 1. 4. 16:30
async def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
    custom_keyboard = [["top-left", "top-right"], ["bottom-left", "bottom-right"]]
    reply_markup = ReplyKeyboardMarkup(custom_keyboard)
    await context.bot.send_message(
        chat_id=update.effective_chat.id,
        text="Custom Keyboard Test",
        reply_markup=reply_markup,
    )