environment
Class info¶
Classes¶
Name | Children | Inherits |
---|---|---|
BlockNotFoundError jinjarope.environment Exception for not-found template blocks. |
||
Context jinjarope.environment |
||
Environment jinjarope.environment An enhanced Jinja environment. |
🛈 DocStrings¶
BlockNotFoundError
¶
Bases: Exception
Exception for not-found template blocks.
Source code in src/jinjarope/environment.py
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 |
|
__init__
¶
Initialize the exception.
Source code in src/jinjarope/environment.py
823 824 825 826 827 828 829 830 831 832 833 834 835 |
|
Environment
¶
Bases: Environment
An enhanced Jinja environment.
This class extends the Jinja2 environment with functionality for loading Jinja files, managing undefined variables, and providing helper functions for rendering templates.
Source code in src/jinjarope/environment.py
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 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 741 742 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 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 |
|
__contains__
¶
Check whether given template path exists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
template
|
str | PathLike[str]
|
The template path to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if the template exists, False otherwise. |
Source code in src/jinjarope/environment.py
190 191 192 193 194 195 196 197 198 199 |
|
__getitem__
¶
Return a template by path.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
val
|
str
|
The template path |
required |
Returns:
Type | Description |
---|---|
Template
|
The template object for the given path. |
Source code in src/jinjarope/environment.py
201 202 203 204 205 206 207 208 209 210 |
|
__init__
¶
__init__(
*,
undefined: UndefinedStr | type[Undefined] = "strict",
trim_blocks: bool = True,
cache_size: int = -1,
auto_reload: bool = False,
loader: BaseLoader | list[BaseLoader] | dict | list[dict] | None = None,
block_start_string: str = BLOCK_START_STRING,
block_end_string: str = BLOCK_END_STRING,
variable_start_string: str = VARIABLE_START_STRING,
variable_end_string: str = VARIABLE_END_STRING,
comment_start_string: str = COMMENT_START_STRING,
comment_end_string: str = COMMENT_END_STRING,
line_statement_prefix: str | None = LINE_STATEMENT_PREFIX,
line_comment_prefix: str | None = LINE_COMMENT_PREFIX,
lstrip_blocks: bool = LSTRIP_BLOCKS,
newline_sequence: Literal["\n", "\r\n", "\r"] = NEWLINE_SEQUENCE,
keep_trailing_newline: bool = KEEP_TRAILING_NEWLINE,
extensions: Sequence[str | type[Extension]] = (),
optimized: bool = True,
finalize: Callable[..., Any] | None = None,
autoescape: bool | Callable[[str | None], bool] = False,
bytecode_cache: BytecodeCache | None = None,
enable_async: bool = False
)
Initialize an enhanced Jinja environment with custom settings.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
undefined
|
UndefinedStr | type[Undefined]
|
How undefined variables are handled ("strict", "lenient", etc.) |
'strict'
|
trim_blocks
|
bool
|
Strip first newline after a block |
True
|
cache_size
|
int
|
Size of the template cache (-1 for no limit) |
-1
|
auto_reload
|
bool
|
Automatically reload changed templates |
False
|
loader
|
BaseLoader | list[BaseLoader] | dict | list[dict] | None
|
Template loader or configuration |
None
|
block_start_string
|
str
|
String denoting start of block |
BLOCK_START_STRING
|
block_end_string
|
str
|
String denoting end of block |
BLOCK_END_STRING
|
variable_start_string
|
str
|
String denoting start of variable |
VARIABLE_START_STRING
|
variable_end_string
|
str
|
String denoting end of variable |
VARIABLE_END_STRING
|
comment_start_string
|
str
|
String denoting start of comment |
COMMENT_START_STRING
|
comment_end_string
|
str
|
String denoting end of comment |
COMMENT_END_STRING
|
line_statement_prefix
|
str | None
|
Prefix for line statements |
LINE_STATEMENT_PREFIX
|
line_comment_prefix
|
str | None
|
Prefix for line comments |
LINE_COMMENT_PREFIX
|
lstrip_blocks
|
bool
|
Strip whitespace before blocks |
LSTRIP_BLOCKS
|
newline_sequence
|
Literal['\n', '\r\n', '\r']
|
Sequence to use for newlines |
NEWLINE_SEQUENCE
|
keep_trailing_newline
|
bool
|
Preserve trailing newline when rendering |
KEEP_TRAILING_NEWLINE
|
extensions
|
Sequence[str | type[Extension]]
|
Jinja2 extensions to load |
()
|
optimized
|
bool
|
Enable template optimization |
True
|
finalize
|
Callable[..., Any] | None
|
Function to post-process variables |
None
|
autoescape
|
bool | Callable[[str | None], bool]
|
Auto-escaping behavior |
False
|
bytecode_cache
|
BytecodeCache | None
|
Cache for the bytecode |
None
|
enable_async
|
bool
|
Enable async template execution |
False
|
Note
This environment differs from standard Jinja2 by: - Using strict undefined behavior by default - Setting trim_blocks to True by default - Disabling automatic cache cleanup (cache_size = -1) - Adding additional filters and functions - Enabling loop controls and do extension by default
Source code in src/jinjarope/environment.py
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 |
|
add_template
¶
Add a new template during runtime.
This function adds a new template to the environment during runtime by creating a new DictLoader and injecting it into the existing loaders. This allows rendering templates that were not defined when the environment was initialized.
Use case
This function is particularly useful for situations where a template needs to be rendered dynamically, such as when rendering templates within other templates.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file
|
str | PathLike[str]
|
File to add as a template |
required |
Source code in src/jinjarope/environment.py
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
|
add_template_path
¶
Add a new template path during runtime.
This function adds a new template path to the environment during runtime by appending a new FileSystemLoader to the existing loaders. This allows the environment to find templates in additional locations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str | PathLike[str]
|
Template search path(s) to add |
()
|
Source code in src/jinjarope/environment.py
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
|
compile
¶
compile(
source: str | Template,
name: str | None = None,
filename: str | None = None,
raw: bool = False,
defer_init: bool = False,
) -> CodeType | str
Compile the template.
This function compiles the given template source. If any of the
keyword arguments are set to a non-default value, the compiled code
is not cached. Otherwise, the compilation result is cached using the
source
as key. This behavior can be overwritten by setting
self.cache_code
to False
.
Changes from Jinja2
The default behavior of the compile
method has been modified
to cache the compiled code unless any keyword arguments are
provided.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source
|
str | Template
|
The template source |
required |
name
|
str | None
|
The name of the template |
None
|
filename
|
str | None
|
The filename of the template |
None
|
raw
|
bool
|
Whether to compile the template as raw |
False
|
defer_init
|
bool
|
Whether to defer initialization |
False
|
Returns:
Type | Description |
---|---|
CodeType | str
|
The compiled template code. |
Source code in src/jinjarope/environment.py
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 |
|
evaluate
¶
Evaluate python code and return the caught stdout + return value of last line.
This function executes Python code within the environment's globals. It captures the standard output generated during execution and returns the combined result as a string.
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 |
|
get_config
¶
get_config() -> EnvConfig
All environment settings as a dict (not included: undefined and loaders).
This function returns a dictionary representation of all environment settings, excluding undefined and loaders.
Returns:
Type | Description |
---|---|
EnvConfig
|
A dictionary containing the environment configuration. |
Source code in src/jinjarope/environment.py
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 782 783 784 785 786 787 |
|
inherit_from
¶
inherit_from(env: Environment)
Inherit complete configuration from another environment.
This function copies all settings and configuration from another environment to the current one. This effectively allows inheritance of environment settings.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
env
|
Environment
|
The environment to inherit settings from |
required |
Source code in src/jinjarope/environment.py
361 362 363 364 365 366 367 368 369 370 371 372 373 |
|
install_translations
¶
Install translations for the environment.
This function installs translations for the given locale
using the provided directory paths. It uses the
jinjarope.localization
module to manage translations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
locale
|
str
|
The locale to install translations for |
required |
dirs
|
Sequence[str | PathLike[str]]
|
A sequence of directory paths containing translation files |
required |
Source code in src/jinjarope/environment.py
212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
|
load_jinja_file
¶
load_jinja_file(
path: str | PathLike[str],
scope_prefix: str = "",
load_filters: bool = True,
load_tests: bool = True,
load_functions: bool = True,
load_config: bool = True,
load_loader: bool = True,
)
Load the content of a JinjaFile and add it to the environment.
This function reads a JinjaFile and adds its filters, tests, functions, and configuration to the current environment.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str | PathLike[str]
|
The path to the JinjaFile |
required |
scope_prefix
|
str
|
Optional prefix to add to all tests / filters / functions |
''
|
load_filters
|
bool
|
Whether to load filters from the JinjaFile |
True
|
load_tests
|
bool
|
Whether to load tests from the JinjaFile |
True
|
load_functions
|
bool
|
Whether to load functions from the JinjaFile |
True
|
load_config
|
bool
|
Whether to load the environment config from the JinjaFile |
True
|
load_loader
|
bool
|
Whether to load the Loader from the JinjaFile |
True
|
Source code in src/jinjarope/environment.py
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 |
|
make_globals
¶
make_globals(d: MutableMapping[str, Any] | None) -> MutableMapping[str, Any]
Make the globals map for a template.
This function creates a globals map for a template, where template-specific globals overlay the environment's global variables.
Info
Avoid modifying any globals after a template is loaded.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
d
|
MutableMapping[str, Any] | None
|
Dict of template-specific globals |
required |
Returns:
Type | Description |
---|---|
MutableMapping[str, Any]
|
A ChainMap containing the template globals. |
Source code in src/jinjarope/environment.py
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 |
|
render_condition
¶
Render a template condition.
This function renders a template string and evaluates its result as a boolean. It returns True if the result is truthy (not None, False, or an empty string), otherwise False.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
string
|
str
|
String to evaluate for True-ishness |
required |
variables
|
dict[str, Any] | None
|
Extra variables for the rendering |
None
|
kwargs
|
Any
|
Further extra variables for rendering |
{}
|
Returns:
Type | Description |
---|---|
bool
|
True if the rendered string is truthy, False otherwise. |
Source code in src/jinjarope/environment.py
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 |
|
render_condition_async
async
¶
render_condition_async(
string: str, variables: dict[str, Any] | None = None, **kwargs: Any
) -> bool
Render a template condition.
This function renders a template string and evaluates its result as a boolean. It returns True if the result is truthy (not None, False, or an empty string), otherwise False.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
string
|
str
|
String to evaluate for True-ishness |
required |
variables
|
dict[str, Any] | None
|
Extra variables for the rendering |
None
|
kwargs
|
Any
|
Further extra variables for rendering |
{}
|
Returns:
Type | Description |
---|---|
bool
|
True if the rendered string is truthy, False otherwise. |
Source code in src/jinjarope/environment.py
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 |
|
render_file
¶
render_file(
file: str | PathLike[str], variables: dict[str, Any] | None = None, **kwargs: Any
) -> str
Helper to directly render a template from filesystem.
This function renders a template file directly from the filesystem using the current environment's configuration and globals.
Info
The file content is cached, which is generally acceptable for common use cases.
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_file_async
async
¶
render_file_async(
file: str | PathLike[str], variables: dict[str, Any] | None = None, **kwargs: Any
) -> str
Helper to directly render a template from filesystem.
This function renders a template file directly from the filesystem using the current environment's configuration and globals.
Info
The file content is cached, which is generally acceptable for common use cases.
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
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 |
|
render_string
¶
Render a template string.
This function renders the given template string using the current environment's configuration and globals.
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_string_async
async
¶
Render a template string.
This function renders the given template string using the current environment's configuration and globals.
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
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 |
|
render_template
¶
render_template(
template_name: str,
variables: dict[str, 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).
This function renders a loaded template or a specific block from a template. It allows for the inclusion of parent templates and provides the flexibility to render individual blocks.
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 |
|
render_template_async
async
¶
render_template_async(
template_name: str,
variables: dict[str, 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).
This function renders a loaded template or a specific block from a template. It allows for the inclusion of parent templates and provides the flexibility to render individual blocks.
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
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 |
|
set_undefined
¶
Set the undefined behaviour for the environment.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
UndefinedStr | type[Undefined]
|
The new undefined behaviour |
required |
Source code in src/jinjarope/environment.py
227 228 229 230 231 232 233 234 |
|
setup_loader
¶
setup_loader(
dir_paths: list[str] | None = None,
module_paths: list[str] | None = None,
static: dict[str, str] | None = None,
fsspec_paths: bool = True,
)
Set the loader for the environment.
This function sets the loader for the environment based on
the provided parameters. It uses the jinjarope.get_loader
function to create a suitable loader.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dir_paths
|
list[str] | None
|
List of directory paths to search for templates |
None
|
module_paths
|
list[str] | None
|
List of module paths to search for templates |
None
|
static
|
dict[str, str] | None
|
Dictionary of static files to include in the loader |
None
|
fsspec_paths
|
bool
|
Whether to use fsspec paths for loading |
True
|
Source code in src/jinjarope/environment.py
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 |
|
with_globals
¶
with_globals(**kwargs: Any)
Context manager to temporarily set globals for the environment.
This context manager allows temporarily overriding the environment's globals with the provided values. Any changes made within the context manager are reverted upon exiting the context.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs
|
Any
|
Globals to set |
{}
|
Source code in src/jinjarope/environment.py
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 |
|