parsing
The internals of the TIM engine.
ContextDict
Bases: TypedDict
A dictionary to hold context about a markup language's environment.
It has two sub-dicts:
- aliases
- macros
For information about what they do and contain, see the MarkupLanguage docs.
Source code in pytermgui/markup/parsing.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
|
MacroType
Bases: Protocol
A protocol for TIM macros.
Source code in pytermgui/markup/parsing.py
49 50 51 52 53 |
|
__call__(*args)
Applies the macro.
Source code in pytermgui/markup/parsing.py
52 53 |
|
consume_tag(tag)
Consumes a tag text, returns the associated Token.
Source code in pytermgui/markup/parsing.py
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 |
|
create_context_dict()
Creates a new context dictionary, initializing its sub-dicts.
Returns:
Type | Description |
---|---|
ContextDict
|
A dictionary with |
Source code in pytermgui/markup/parsing.py
72 73 74 75 76 77 78 79 |
|
eval_alias(text, context)
Evaluates a space-delimited string of alias tags into their underlying value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text |
str
|
A space-separated string containing the aliases. |
required |
Returns:
Type | Description |
---|---|
str
|
The space-separated string that the input aliases represent. |
Source code in pytermgui/markup/parsing.py
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 |
|
get_markup(text)
Gets the markup representing an ANSI-coded string.
Source code in pytermgui/markup/parsing.py
524 525 526 527 |
|
optimize_markup(markup)
Optimizes markup by tokenizing it, optimizing the tokens and converting it back to markup.
Source code in pytermgui/markup/parsing.py
530 531 532 533 |
|
optimize_tokens(tokens)
Optimizes a stream of tokens, only yielding functionally relevant ones.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tokens |
list[Token]
|
Any list of Token objects. Usually obtained from |
required |
Yields:
Type | Description |
---|---|
Iterator[Token]
|
All those tokens within the input iterator that are functionally relevant, keeping their order. |
Source code in pytermgui/markup/parsing.py
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 |
|
parse(text, optimize=False, context=None, append_reset=True, ignore_unknown_tags=True)
Parses markup into the ANSI-coded string it represents.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text |
str
|
Any valid markup. |
required |
optimize |
bool
|
If set, |
False
|
context |
ContextDict | None
|
The context that aliases and macros found within the markup will be searched in. |
None
|
append_reset |
bool
|
If set, |
True
|
ignore_unknown_tags |
bool
|
If set, the |
True
|
Returns:
Type | Description |
---|---|
str
|
The ANSI-coded string that the markup represents. |
Source code in pytermgui/markup/parsing.py
743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 |
|
parse_alias(token, context, get_full)
Parses an alias token.
Source code in pytermgui/markup/parsing.py
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 |
|
parse_clear(token, _, get_full)
Parses a clearer token.
Source code in pytermgui/markup/parsing.py
377 378 379 380 381 382 383 384 385 386 |
|
parse_color(token, _, __)
Parses a color token.
Source code in pytermgui/markup/parsing.py
324 325 326 327 |
|
parse_cursor(token, _, __)
Parses a cursor token.
Source code in pytermgui/markup/parsing.py
389 390 391 392 393 394 |
|
parse_macro(token, context, get_full)
Parses a macro token.
Returns:
Type | Description |
---|---|
MacroType
|
A tuple containing the callable bound to the name, as well as the arguments |
tuple[str, ...]
|
passed to it. |
Source code in pytermgui/markup/parsing.py
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 |
|
parse_plain(token, _, __)
Parses a plain token.
Source code in pytermgui/markup/parsing.py
318 319 320 321 |
|
parse_style(token, _, __)
Parses a style token.
Source code in pytermgui/markup/parsing.py
330 331 332 333 334 335 |
|
parse_tokens(tokens, *, optimize=False, context=None, append_reset=True, ignore_unknown_tags=True)
Parses a stream of tokens into the ANSI-coded string they represent.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tokens |
list[Token]
|
Any list of Tokens, usually obtained from either |
required |
optimize |
bool
|
If set, |
False
|
context |
ContextDict | None
|
The context that aliases and macros found within the tokens will be searched in. |
None
|
append_reset |
bool
|
If set, |
True
|
ignore_unknown_tags |
bool
|
If set, the |
True
|
Returns:
Type | Description |
---|---|
str
|
The ANSI-coded string that the token stream represents. |
Source code in pytermgui/markup/parsing.py
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 |
|
tokenize_ansi(text)
Converts some ANSI-coded text into a stream of tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text |
str
|
Any valid ANSI-coded text. |
required |
Yields:
Type | Description |
---|---|
Iterator[Token]
|
The generated tokens, in the order they occur within the text. |
Source code in pytermgui/markup/parsing.py
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 |
|
tokenize_markup(text)
Converts some markup text into a stream of tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text |
str
|
Any valid markup. |
required |
Yields:
Type | Description |
---|---|
Iterator[Token]
|
The generated tokens, in the order they occur within the markup. |
Source code in pytermgui/markup/parsing.py
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 |
|
tokens_to_markup(tokens)
Converts a token stream into the markup of its tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tokens |
list[Token]
|
Any list of Token objects. Usually obtained from |
required |
Returns:
Type | Description |
---|---|
str
|
The markup the given tokens represent. |
Source code in pytermgui/markup/parsing.py
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 |
|