jinjarope
Class info¶
Classes¶
Name | Children | Inherits |
---|---|---|
BlockNotFoundError jinjarope.environment Exception for not-found template blocks. |
||
ChoiceLoader jinjarope.loaders A loader which combines multiple other loaders. |
||
DictLoader jinjarope.loaders A loader to load static content from a path->template-str mapping. |
||
EnvConfig jinjarope.envconfig A class representing the config of an Environment. |
||
Environment jinjarope.environment An enhanced Jinja environment. |
||
FileSystemLoader jinjarope.loaders A loader to load templates from the file system. |
||
FsSpecFileSystemLoader jinjarope.fsspecloaders A jinja loader for fsspec filesystems. |
||
FsSpecProtocolPathLoader jinjarope.fsspecloaders A jinja loader for fsspec filesystems. |
||
FunctionLoader jinjarope.loaders A loader for loading templates from a function. |
||
JinjaFile jinjarope.jinjafile A file defining filters / tests. |
||
JinjaItem jinjarope.jinjafile An item representing a filter / test. |
||
LoaderMixin jinjarope.loaders Loader mixin which allows to OR loaders into a choice loader. |
||
LoaderRegistry jinjarope.loaderregistry Registry which caches and builds jinja loaders. |
||
ModuleLoader jinjarope.loaders This loader loads templates from precompiled templates. |
||
NestedDictLoader jinjarope.configloaders A jinja loader for loading templates from nested dicts. |
||
PackageLoader jinjarope.loaders A loader for loading templates from a package. |
||
PrefixLoader jinjarope.loaders A loader for prefixing other loaders. |
||
RewriteLoader jinjarope.rewriteloader A loader which modifies templates based on a callable. |
||
TemplateFileLoader jinjarope.configloaders A jinja loader for loading templates from config files. |
🛈 DocStrings¶
BlockNotFoundError
¶
Bases: Exception
Exception for not-found template blocks.
Source code in src/jinjarope/environment.py
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 |
|
__init__
¶
Initialize the exception.
Source code in src/jinjarope/environment.py
636 637 638 639 640 641 642 643 644 645 646 647 648 |
|
ChoiceLoader
¶
Bases: LoaderMixin
, ChoiceLoader
A loader which combines multiple other loaders.
Source code in src/jinjarope/loaders.py
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
|
DictLoader
¶
Bases: LoaderMixin
, DictLoader
A loader to load static content from a path->template-str mapping.
Source code in src/jinjarope/loaders.py
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
|
EnvConfig
dataclass
¶
A class representing the config of an Environment.
Does not include loaders, filters, tests, globals.
Source code in src/jinjarope/envconfig.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|
block_end_string
class-attribute
instance-attribute
¶
block_end_string: str = '%}'
The string marking the end of a block. Defaults to '%}'.
block_start_string
class-attribute
instance-attribute
¶
block_start_string: str = '{%'
The string marking the beginning of a block. Defaults to '{%'.
comment_end_string
class-attribute
instance-attribute
¶
comment_end_string: str = '#}'
The string marking the end of a comment. Defaults to '#}'.
comment_start_string
class-attribute
instance-attribute
¶
comment_start_string: str = '{#'
The string marking the beginning of a comment. Defaults to '{#'.
extensions
class-attribute
instance-attribute
¶
A list of jinja2 extentions.
keep_trailing_newline
class-attribute
instance-attribute
¶
keep_trailing_newline: bool = False
Preserve the trailing newline when rendering templates. The default is False.
The default causes a single newline, if present, to be stripped from the end of the template.
line_comment_prefix
class-attribute
instance-attribute
¶
line_comment_prefix: str | None = None
If given and a string, this will be used as prefix for line based comments.
line_statement_prefix
class-attribute
instance-attribute
¶
line_statement_prefix: str | None = None
If given and a string, this will be used as prefix for line based statements.
lstrip_blocks
class-attribute
instance-attribute
¶
lstrip_blocks: bool = False
Strip leading spaces / tabs from start of a line to a block. Defaults to False.
newline_sequence
class-attribute
instance-attribute
¶
newline_sequence: Literal['\n', '\r\n', '\r'] = '\n'
The sequence that starts a newline. ('\r', '\n' or '\r\n'. Defaults to '\n'
trim_blocks
class-attribute
instance-attribute
¶
trim_blocks: bool = True
Remove first newline after a block (not variable tag!). Defaults to False.
undefined
class-attribute
instance-attribute
¶
undefined: type[Undefined] = StrictUndefined
The undefined object determining the "Undefined" behavior.
variable_end_string
class-attribute
instance-attribute
¶
variable_end_string: str = '}}'
The string marking the end of a print statement. Defaults to '}}'.
variable_start_string
class-attribute
instance-attribute
¶
variable_start_string: str = '{{'
The string marking the end of a print statement. Defaults to '}}'.
as_dict
¶
Return dataclass as a dict, filtering all None-values.
Source code in src/jinjarope/envconfig.py
58 59 60 61 62 63 64 |
|
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
41 42 43 44 45 46 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 |
|
__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
126 127 128 129 130 131 132 133 134 135 |
|
__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
137 138 139 140 141 142 143 144 145 146 |
|
__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,
**kwargs: Any
)
Constructor.
This constructor initializes the environment with custom
configuration and loads default filters, tests, functions and
globals. It also registers the custom render_template
,
render_string
, render_file
and evaluate
functions
as filters.
Changes from Jinja2
The trim_blocks
parameter is set to True
by default,
and the cache_size
is set to -1
, which disables
automatic cache cleanup.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
undefined
|
UndefinedStr | type[Undefined]
|
Handling of "Undefined" errors |
'strict'
|
trim_blocks
|
bool
|
Whitespace handling |
True
|
cache_size
|
int
|
Amount of templates to cache |
-1
|
auto_reload
|
bool
|
Whether to check templates for changes on loading |
False
|
loader
|
BaseLoader | list[BaseLoader] | dict | list[dict] | None
|
Loader to use (Also accepts a JSON representation of loaders) |
None
|
kwargs
|
Any
|
Keyword arguments passed to parent |
{}
|
Source code in src/jinjarope/environment.py
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 |
|
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
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 |
|
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
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 |
|
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
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 |
|
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
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 |
|
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
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 |
|
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
297 298 299 300 301 302 303 304 305 306 307 308 309 |
|
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
148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
|
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
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 |
|
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
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 |
|
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
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 |
|
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
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 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
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(
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
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 |
|
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
163 164 165 166 167 168 169 170 |
|
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
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 |
|
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
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
|
FileSystemLoader
¶
Bases: LoaderMixin
, FileSystemLoader
A loader to load templates from the file system.
Source code in src/jinjarope/loaders.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
|
FsSpecFileSystemLoader
¶
Bases: LoaderMixin
, BaseLoader
A jinja loader for fsspec filesystems.
This loader allows to access templates from an fsspec filesystem.
Template paths must be relative to the filesystem root.
In order to access templates via protocol path, see FsSpecProtocolPathLoader
.
Examples:
# protocol path
loader = FsSpecFileSystemLoader("dir::github://phil65:mknodes@main/docs")
env = Environment(loader=loader)
env.get_template("icons.jinja").render()
# protocol and storage options
loader = FsSpecFileSystemLoader("github", org="phil65", repo="mknodes")
env = Environment(loader=loader)
env.get_template("docs/icons.jinja").render()
# fsspec filesystem
fs = fsspec.filesystem("github", org="phil65", repo="mknodes")
loader = FsSpecFileSystemLoader(fs)
env = Environment(loader=loader)
env.get_template("docs/icons.jinja").render()
Source code in src/jinjarope/fsspecloaders.py
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 |
|
__init__
¶
Constructor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fs
|
AbstractFileSystem | str
|
Either a protocol path string or an fsspec filesystem instance. Also supports "::dir" prefix to set the root path. |
required |
kwargs
|
Any
|
Optional storage options for the filesystem. |
{}
|
Source code in src/jinjarope/fsspecloaders.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
|
FsSpecProtocolPathLoader
¶
Bases: LoaderMixin
, BaseLoader
A jinja loader for fsspec filesystems.
This loader allows to access templates from an fsspec protocol path, like "github://phil65:mknodes@main/README.md"
Examples:
loader = FsSpecProtocolPathLoader()
env = Environment(loader=loader)
env.get_template("github://phil65:mknodes@main/docs/icons.jinja").render()
Source code in src/jinjarope/fsspecloaders.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
FunctionLoader
¶
Bases: LoaderMixin
, FunctionLoader
A loader for loading templates from a function.
The function takes a template path as parameter and either returns a (text, None, uptodate_fn) tuple or just the text as str.
Source code in src/jinjarope/loaders.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
JinjaFile
¶
A file defining filters / tests.
Source code in src/jinjarope/jinjafile.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 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 |
|
filters_dict
property
¶
Return a dictionary with all filters.
Can directly get merged into env filters.
functions_dict
property
¶
Return a dictionary with all filters.
Can directly get merged into env filters.
loader
property
¶
loader: BaseLoader | None
Return a (composed Choice-) loader defined in this Jinja file.
tests_dict
property
¶
Return a dictionary with all filters.
Can directly get merged into env filters.
__init__
¶
Instanciate the file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str | PathLike[str]
|
Path to the jinja file |
required |
Source code in src/jinjarope/jinjafile.py
28 29 30 31 32 33 34 35 36 37 |
|
JinjaItem
dataclass
¶
An item representing a filter / test.
Source code in src/jinjarope/jinjafile.py
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 |
|
filter_fn
property
¶
Return the callable to use as filter / test / function.
apply
¶
Apply the filter function using given arguments and keywords.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args
|
Any
|
The arguments for the call |
()
|
kwargs
|
Any
|
They keyword arguments for the call |
{}
|
Source code in src/jinjarope/jinjafile.py
171 172 173 174 175 176 177 178 |
|
for_function
classmethod
¶
for_function(
fn: Callable[..., Any],
typ: Literal["filter", "test", "function"],
group: str = "imported",
**kwargs: Any
) -> Self
Alternative ctor to construct a JinjaItem based on a callable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fn
|
Callable[..., Any]
|
Callable to get a JinjaItem for |
required |
typ
|
Literal['filter', 'test', 'function']
|
The item type |
required |
group
|
str
|
Group for metadata |
'imported'
|
kwargs
|
Any
|
Additional keyword arguments for JinjaItem ctor |
{}
|
Source code in src/jinjarope/jinjafile.py
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
|
resolve_example
¶
Render example with given name and return the result.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
example_name
|
str
|
The example identifier |
required |
Source code in src/jinjarope/jinjafile.py
180 181 182 183 184 185 186 187 188 189 |
|
ModuleLoader
¶
Bases: LoaderMixin
, ModuleLoader
This loader loads templates from precompiled templates.
Templates can be precompiled with :meth:Environment.compile_templates
.
Source code in src/jinjarope/loaders.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
NestedDictLoader
¶
Bases: LoaderMixin
, BaseLoader
A jinja loader for loading templates from nested dicts.
This loader allows to access templates from nested dicts. Can be used to load templates defined with markup like TOML.
Examples:
[example]
template = "{{ something }}"
content = tomllib.load(toml_file)
loader = NestedDictLoader(content)
env = Environment(loader=loader)
env.get_template("example/template")
Source code in src/jinjarope/configloaders.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
__init__
¶
__init__(mapping: NestedMapping)
Constructor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mapping
|
NestedMapping
|
A nested dict containing templates |
required |
Source code in src/jinjarope/configloaders.py
39 40 41 42 43 44 45 46 |
|
PackageLoader
¶
Bases: LoaderMixin
, PackageLoader
A loader for loading templates from a package.
Source code in src/jinjarope/loaders.py
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 |
|
__init__
¶
__init__(
package: str | ModuleType, package_path: str | None = None, encoding: str = "utf-8"
) -> None
Instanciate a PackageLoader.
Compared to the jinja2 equivalent, this loader also supports
ModuleType
s and dotted module paths for the package
argument.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
package
|
str | ModuleType
|
The python package to create a loader for |
required |
package_path
|
str | None
|
If given, use the given path as the root. |
None
|
encoding
|
str
|
The encoding to use for loading templates |
'utf-8'
|
Source code in src/jinjarope/loaders.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
|
PrefixLoader
¶
Bases: LoaderMixin
, PrefixLoader
A loader for prefixing other loaders.
Source code in src/jinjarope/loaders.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
RewriteLoader
¶
Bases: LoaderMixin
, BaseLoader
A loader which modifies templates based on a callable.
Can get chained like a PrefixLoader. The path passed to the callable can be used to check whether given template should be modified.
Source code in src/jinjarope/rewriteloader.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|
__init__
¶
__init__(loader: BaseLoader, rewrite_fn: Callable[[str, str], str])
Instanciate the RewriteLoader.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
loader
|
BaseLoader
|
The loader to rewrite / modify the templates from |
required |
rewrite_fn
|
Callable[[str, str], str]
|
Callable to modify templates. It gets called with two arguments (path and template text) and should return a (possibly modified) template text |
required |
Source code in src/jinjarope/rewriteloader.py
25 26 27 28 29 30 31 32 33 34 35 |
|
TemplateFileLoader
¶
Bases: NestedDictLoader
A jinja loader for loading templates from config files.
This loader allows to access templates from config files. Config files often often resemble nested dicts when getting loaded / deserialized.
The loader will load config file from given path and will make it accessible in the
same way as the NestedDictLoader
. (esp. TOML is well-suited for this)
Config files can be loaded from any fsspec protocol URL.
Examples:
loader = TemplateFileLoader("http://path_to_toml_file.toml")
env = Environment(loader=loader)
env.get_template("example/template")
loader = TemplateFileLoader("path/to/file.json")
env = Environment(loader=loader)
env.get_template("example/template")
Source code in src/jinjarope/configloaders.py
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 |
|
__init__
¶
__init__(
path: str | PathLike[str],
fmt: Literal["toml", "json", "ini", "yaml"] | None = None,
sub_path: tuple[str, ...] | None = None,
)
Constructor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str | PathLike[str]
|
Path / fsspec protocol URL to the file |
required |
fmt
|
Literal['toml', 'json', 'ini', 'yaml'] | None
|
Config file format. If None, try to auto-infer from file extension |
None
|
sub_path
|
tuple[str, ...] | None
|
An optional tuple of keys describing the "dictionary path" inside the file |
None
|
Source code in src/jinjarope/configloaders.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
|
get_loader_from_json
¶
get_loader_from_json(dct_or_list: dict | list | None | BaseLoader) -> BaseLoader | None
Create a loader based on a json representation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dct_or_list
|
dict | list | None | BaseLoader
|
A dictionary or list describing loaders. |
required |
Source code in src/jinjarope/loaders.py
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 |
|