MCPcopy Index your code
hub / github.com/python-telegram-bot/python-telegram-bot / deep_linked_level_3

Function deep_linked_level_3

examples/deeplinking.py:84–91  ·  view source on GitHub ↗

Reached through the USING_ENTITIES payload

(update: Update, context: ContextTypes.DEFAULT_TYPE)

Source from the content-addressed store, hash-verified

82
83
84async def deep_linked_level_3(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
85 """Reached through the USING_ENTITIES payload"""
86 await update.message.reply_text(
87 "It is also possible to make deep-linking using InlineKeyboardButtons.",
88 reply_markup=InlineKeyboardMarkup(
89 [[InlineKeyboardButton(text="Like this!", callback_data=KEYBOARD_CALLBACKDATA)]]
90 ),
91 )
92
93
94async def deep_link_level_3_callback(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:

Callers

nothing calls this directly

Calls 3

reply_textMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…