environment (4)
evaluate¶
evaluate(self, code: str, context: dict[str, typing.Any] | None = None) -> str
Evaluate python code and return the caught stdout + return value of last line.
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
code
|
str
|
The code to execute |
required |
context
|
dict[str, Any] | None
|
Globals for the execution environment |
None
|
Returns:
Type | Description |
---|---|
str
|
The combined standard output and return value of the last |
str
|
line of code. |
Source code in src/jinjarope/environment.py
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 |
|
render_file¶
render_file(self, file: str | os.PathLike[str], variables: dict[str, typing.Any] | None = None, **kwargs: Any) -> str
Helper to directly render a template from filesystem.
Example
Jinja call:
Result:"""Tests suite for
jinjarope`."""
from pathlib import Path
TESTS_DIR = Path(file).parent TMP_DIR = TESTS_DIR / "tmp" FIXTURES_DIR = TESTS_DIR / "fixtures"`
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file
|
str | PathLike[str]
|
Template file to load |
required |
variables
|
dict[str, Any] | None
|
Extra variables for the rendering |
None
|
kwargs
|
Any
|
Further extra variables for rendering |
{}
|
Returns:
Type | Description |
---|---|
str
|
The rendered string. |
Source code in src/jinjarope/environment.py
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 |
|
render_string¶
render_string(self, string: str, variables: dict[str, typing.Any] | None = None, **kwargs: Any) -> str
Render a template string.
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
string
|
str
|
String to render |
required |
variables
|
dict[str, Any] | None
|
Extra variables for the rendering |
None
|
kwargs
|
Any
|
Further extra variables for rendering |
{}
|
Returns:
Type | Description |
---|---|
str
|
The rendered string. |
Source code in src/jinjarope/environment.py
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 |
|
render_template¶
render_template(self, template_name: str, variables: dict[str, typing.Any] | None = None, block_name: str | None = None, parent_template: str | None = None, **kwargs: Any) -> str
Render a loaded template (or a block of a template).
DocStrings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
template_name
|
str
|
Template name |
required |
variables
|
dict[str, Any] | None
|
Extra variables for rendering |
None
|
block_name
|
str | None
|
Render specific block from the template |
None
|
parent_template
|
str | None
|
The name of the parent template importing this template |
None
|
kwargs
|
Any
|
Further extra variables for rendering |
{}
|
Returns:
Type | Description |
---|---|
str
|
The rendered string. |
Raises:
Type | Description |
---|---|
BlockNotFoundError
|
If the specified block is not found in the |
Source code in src/jinjarope/environment.py
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 |
|