mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
Updated Code snippets (markdown)
parent
e205d21236
commit
b5245cf4a1
1 changed files with 8 additions and 6 deletions
|
@ -606,15 +606,17 @@ All possible actions are documented [here](https://core.telegram.org/bots/api#se
|
|||
Often times you will find yourself in need for a menu with dynamic content. Use the following `build_menu` method to create a button layout with `n_cols` columns out of a list of `buttons`.
|
||||
|
||||
```python
|
||||
def build_menu(buttons,
|
||||
n_cols,
|
||||
header_buttons=None,
|
||||
footer_buttons=None):
|
||||
def build_menu(
|
||||
buttons: List[InlineKeyboardButton],
|
||||
n_cols: int,
|
||||
header_buttons: Union[InlineKeyboardButton, List[InlineKeyboardButton]]=None,
|
||||
footer_buttons: Union[InlineKeyboardButton, List[InlineKeyboardButton]]=None
|
||||
):
|
||||
menu = [buttons[i:i + n_cols] for i in range(0, len(buttons), n_cols)]
|
||||
if header_buttons:
|
||||
menu.insert(0, [header_buttons])
|
||||
menu.insert(0, header_buttons if isinstance(header_buttons, list) else [header_buttons])
|
||||
if footer_buttons:
|
||||
menu.append([footer_buttons])
|
||||
menu.append(footer_buttons if isinstance(footer_buttons, list) else [footer_buttons])
|
||||
return menu
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue