Builder¶
The MenuBuilder provides the fluent API for constructing inline keyboard menus, including nested submenus and navigation buttons.
telegram_menu_builder.builder.MenuBuilder ¶
Fluent builder for creating inline keyboard menus.
This class provides a chainable API for constructing menus with support for: - Unlimited parameters per button - Automatic callback data encoding - Grid layouts with configurable columns - Navigation buttons (back, next, exit) - Nested submenus with breadcrumb tracking
Attributes:
| Name | Type | Description |
|---|---|---|
storage |
StorageBackend
|
Storage backend for callback data |
encoder |
CallbackEncoder
|
Callback data encoder |
items |
CallbackEncoder
|
List of menu items |
layout |
CallbackEncoder
|
Layout configuration |
navigation |
CallbackEncoder
|
Navigation configuration |
Example
builder = MenuBuilder() menu = (builder ... .add_item("Option 1", handler="handle_1", user_id=123) ... .add_item("Option 2", handler="handle_2") ... .columns(2) ... .add_back_button() ... .build())
Source code in src/telegram_menu_builder/builder.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 | |
add_item ¶
Add a menu item with arbitrary parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Button display text |
required |
handler
|
str
|
Handler function name to call |
required |
**params
|
Any
|
Arbitrary parameters to pass to handler |
{}
|
Returns:
| Type | Description |
|---|---|
Self
|
Self for chaining |
Example
builder.add_item( ... "Edit User", ... handler="edit_user", ... user_id=123, ... field="email", ... breadcrumb=["settings", "users"] ... )
Source code in src/telegram_menu_builder/builder.py
add_items ¶
Add multiple menu items at once.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
items
|
Sequence[tuple[str, str, dict[str, Any]]]
|
Sequence of (text, handler, params) tuples |
required |
Returns:
| Type | Description |
|---|---|
Self
|
Self for chaining |
Example
builder.add_items([ ... ("Option 1", "handle_1", {"id": 1}), ... ("Option 2", "handle_2", {"id": 2}), ... ])
Source code in src/telegram_menu_builder/builder.py
add_url_button ¶
Add a URL button (no callback, opens URL).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Button display text |
required |
url
|
str
|
URL to open |
required |
Returns:
| Type | Description |
|---|---|
Self
|
Self for chaining |
Example
builder.add_url_button("Visit Website", "https://example.com")
Source code in src/telegram_menu_builder/builder.py
add_submenu ¶
Add a button that opens a submenu.
The submenu builder will be stored and can be built later.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Button display text |
required |
submenu
|
MenuBuilder
|
MenuBuilder instance for the submenu |
required |
handler
|
str
|
Handler name (default: "_submenu") |
'_submenu'
|
**params
|
Any
|
Additional parameters |
{}
|
Returns:
| Type | Description |
|---|---|
Self
|
Self for chaining |
Example
submenu = MenuBuilder().add_item("Sub option", "handle_sub") builder.add_submenu("Open submenu", submenu)
Source code in src/telegram_menu_builder/builder.py
get_submenu ¶
Return a submenu builder previously registered via :meth:add_submenu.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
submenu_id
|
int
|
The |
required |
Returns:
| Type | Description |
|---|---|
MenuBuilder | None
|
The registered MenuBuilder, or None if no submenu matches. |
Source code in src/telegram_menu_builder/builder.py
columns ¶
Set number of columns in the grid layout.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of columns (1-8) |
required |
Returns:
| Type | Description |
|---|---|
Self
|
Self for chaining |
Raises:
| Type | Description |
|---|---|
ValidationError
|
If n is out of range |
Example
builder.columns(3) # 3 buttons per row
Source code in src/telegram_menu_builder/builder.py
max_rows ¶
Set maximum number of rows.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int | None
|
Maximum rows (None for unlimited) |
required |
Returns:
| Type | Description |
|---|---|
Self
|
Self for chaining |
Example
builder.max_rows(5) # Max 5 rows
Source code in src/telegram_menu_builder/builder.py
add_back_button ¶
Add a back navigation button.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Button text |
'🔙 Back'
|
handler
|
str
|
Handler name |
'go_back'
|
**params
|
Any
|
Additional parameters |
{}
|
Returns:
| Type | Description |
|---|---|
Self
|
Self for chaining |
Example
builder.add_back_button(handler="return_to_menu", page=1)
Source code in src/telegram_menu_builder/builder.py
add_next_button ¶
Add a next navigation button.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Button text |
'➡️ Next'
|
handler
|
str
|
Handler name |
'go_next'
|
**params
|
Any
|
Additional parameters |
{}
|
Returns:
| Type | Description |
|---|---|
Self
|
Self for chaining |
Example
builder.add_next_button(handler="next_page", page=2)
Source code in src/telegram_menu_builder/builder.py
add_exit_button ¶
Add an exit button.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Button text |
'❌ Exit'
|
handler
|
str
|
Handler name |
'exit_menu'
|
**params
|
Any
|
Additional parameters |
{}
|
Returns:
| Type | Description |
|---|---|
Self
|
Self for chaining |
Example
builder.add_exit_button()
Source code in src/telegram_menu_builder/builder.py
add_cancel_button ¶
Add a cancel button.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Button text |
'🚫 Cancel'
|
handler
|
str
|
Handler name |
'cancel'
|
**params
|
Any
|
Additional parameters |
{}
|
Returns:
| Type | Description |
|---|---|
Self
|
Self for chaining |
Example
builder.add_cancel_button(handler="cancel_operation")
Source code in src/telegram_menu_builder/builder.py
build ¶
Build the final InlineKeyboardMarkup.
This is a synchronous convenience wrapper around :meth:build_async that
encodes all callback data and assembles the keyboard.
When called outside an event loop it drives the async build directly. When
called from within a running event loop (e.g. inside an async handler) the
async build is executed on a short-lived worker thread so this synchronous
API keeps working. In async code, prefer await build_async() directly.
Returns:
| Type | Description |
|---|---|
InlineKeyboardMarkup
|
InlineKeyboardMarkup ready to use with python-telegram-bot |
Raises:
| Type | Description |
|---|---|
ValidationError
|
If menu configuration is invalid |
Example
menu = builder.build() await update.message.reply_text("Choose:", reply_markup=menu)
Source code in src/telegram_menu_builder/builder.py
build_async
async
¶
Build the final InlineKeyboardMarkup (async version).
This is the canonical builder. Pending item specs are encoded here (so
encoding always runs inside an async context) and the result is assembled
into a grid via the shared layout helper. Callback data that exceeds the
64-byte inline budget is spilled to storage unless this builder was
created with on_oversize="error", in which case an
:class:EncodingError is raised instead.
Returns:
| Type | Description |
|---|---|
InlineKeyboardMarkup
|
InlineKeyboardMarkup ready to use |
Raises:
| Type | Description |
|---|---|
ValidationError
|
If menu configuration is invalid |
EncodingError
|
If |
Source code in src/telegram_menu_builder/builder.py
to_markup ¶
Build the menu synchronously, without an event loop or storage.
Every callback item is encoded via the inline-only path
(:meth:CallbackEncoder.encode_inline), so this method runs no await,
touches no storage backend, and spawns no worker thread — it is safe to
call from an ordinary synchronous function. Because there is no storage
spill, any item whose callback data does not fit Telegram's 64-byte inline
budget raises :class:EncodingError; use :meth:build_async for menus
that need to spill.
Returns:
| Type | Description |
|---|---|
InlineKeyboardMarkup
|
InlineKeyboardMarkup ready to use with python-telegram-bot. |
Raises:
| Type | Description |
|---|---|
ValidationError
|
If menu configuration is invalid (empty menu). |
EncodingError
|
If any item does not fit within the 64-byte inline budget. |
Source code in src/telegram_menu_builder/builder.py
to_raw ¶
Build the menu as a plain Telegram Bot API dict, without PTB or storage.
Like :meth:to_markup, this is synchronous and storage-free: items are
encoded inline only, and an oversize item raises :class:EncodingError.
The returned value is a plain dict matching the Bot API
reply_markup shape and is built directly from :class:MenuItem, so it
can be consumed without constructing a python-telegram-bot object::
{"inline_keyboard": [[{"text": ..., "callback_data": ...}], ...]}
URL buttons emit {"text": ..., "url": ...} instead of callback_data.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
A JSON-serializable dict with a single |
Raises:
| Type | Description |
|---|---|
ValidationError
|
If menu configuration is invalid (empty menu). |
EncodingError
|
If any item does not fit within the 64-byte inline budget. |
Source code in src/telegram_menu_builder/builder.py
assert_inline ¶
Verify every item fits Telegram's 64-byte inline budget, without building.
This is a cheap pre-flight: it runs the inline-only encoder over every
pending item and navigation button but assembles no keyboard. It is useful
to fail fast (e.g. in a test) before handing a menu to :meth:to_markup.
Raises:
| Type | Description |
|---|---|
EncodingError
|
For the first item (or navigation button) whose callback data would not fit inline and would therefore require storage. |