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
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 |
|
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
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 |
|
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
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 |
|
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
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 |
|