The core component of Jinja is the Environment
. It contains
important shared variables like configuration, filters, tests,
globals and others. Instances of this class may be modified if
they are not shared and if no template was loaded so far.
Modifications on environments after the first template was loaded
will lead to surprising effects and undefined behavior.
Here are the possible initialization parameters:
block_start_string
- The string marking the beginning of a block. Defaults to '{%'.
block_end_string
- The string marking the end of a block. Defaults to '%}'.
variable_start_string
- The string marking the beginning of a print statement. Defaults to '{{'.
variable_end_string
- The string marking the end of a print statement. Defaults to '}}'.
comment_start_string
- The string marking the beginning of a comment. Defaults to '{#'.
comment_end_string
- The string marking the end of a comment. Defaults to '#}'.
line_statement_prefix
- If given and a string, this will be used as prefix for line based statements. See also :ref:`line-statements`.
line_comment_prefix
If given and a string, this will be used as prefix for line based comments. See also :ref:`line-statements`.
New in version 2.2.trim_blocks
- If this is set to True the first newline after a block is removed (block, not variable tag!). Defaults to
False
.lstrip_blocks
- If this is set to True leading spaces and tabs are stripped from the start of a line to a block. Defaults to
False
.newline_sequence
- The sequence that starts a newline. Must be one of '\r', '\n' or '\r\n'. The default is '\n' which is a useful default for Linux and OS X systems as well as web applications.
keep_trailing_newline
Preserve the trailing newline when rendering templates. The default is False, which causes a single newline, if present, to be stripped from the end of the template.
New in version 2.7.extensions
- List of Jinja extensions to use. This can either be import paths as strings or extension classes. For more information have a look at :ref:`the extensions documentation <jinja-extensions>`.
optimized
- should the optimizer be enabled? Default is True.
undefined
Undefined
or a subclass of it that is used to represent undefined values in the template.finalize
- A callable that can be used to process the result of a variable expression before it is output. For example one can convert None implicitly into an empty string here.
autoescape
If set to True the XML/HTML autoescaping feature is enabled by default. For more details about autoescaping see
~markupsafe.Markup
. As of Jinja 2.4 this can also be a callable that is passed the template name and has to return True or False depending on autoescape should be enabled by default.Changed in version 2.4:autoescape
can now be a functionloader
- The template loader for this environment.
cache_size
The size of the cache. Per default this is 400 which means that if more than 400 templates are loaded the loader will clean out the least recently used template. If the cache size is set to 0 templates are recompiled all the time, if the cache size is -1 the cache will not be cleaned.
Changed in version 2.8: The cache size was increased to 400 from a low 50.auto_reload
- Some loaders load templates from locations where the template sources may change (ie: file system or database). If auto_reload is set to True (default) every time a template is requested the loader checks if the source changed and if yes, it will reload the template. For higher performance it's possible to disable that.
bytecode_cache
If set to a bytecode cache object, this object will provide a cache for the internal Jinja bytecode so that templates don't have to be parsed if they were not changed.
See :ref:`bytecode-cache` for more information.
enable_async
- If set to true this enables async template execution which allows using async functions and generators.
Method | __init__ |
Undocumented |
Method | _compile |
Internal hook that can be overridden to hook a different compile method in. |
Method | _filter_test_common |
Undocumented |
Method | _generate |
Internal hook that can be overridden to hook a different generate method in. |
Method | _load_template |
Undocumented |
Method | _parse |
Internal parsing function used by parse and compile . |
Method | _tokenize |
Called by the parser to do the preprocessing and filtering for all the extensions. Returns a ~jinja2.lexer.TokenStream . |
Method | add_extension |
Adds an extension after the environment was created. |
Method | call_filter |
Invoke a filter on a value the same way the compiler does. |
Method | call_test |
Invoke a test on a value the same way the compiler does. |
Method | compile |
No summary |
Method | compile_expression |
A handy helper method that returns a callable that accepts keyword arguments that appear as variables in the expression. If called it returns the result of the expression. |
Method | compile_templates |
No summary |
Method | extend |
Add the items to the instance of the environment if they do not exist yet. This is used by :ref:`extensions <writing-extensions>` to register callbacks and configuration values without breaking inheritance. |
Method | from_string |
Load a template from a source string without using loader . |
Method | get_or_select_template |
Use select_template if an iterable of template names is given, or get_template if one name is given. |
Method | get_template |
Load a template by name with loader and return a Template . If the template does not exist a TemplateNotFound exception is raised. |
Method | getattr |
Get an item or attribute of an object but prefer the attribute. Unlike getitem the attribute must be a string. |
Method | getitem |
Get an item or attribute of an object but prefer the item. |
Method | handle_exception |
Exception handling helper. This is used internally to either raise rewritten exceptions or return a rendered traceback for the template. |
Method | iter_extensions |
Iterates over the extensions by priority. |
Method | join_path |
No summary |
Method | lex |
No summary |
Method | list_templates |
Returns a list of templates for this environment. This requires that the loader supports the loader's ~BaseLoader.list_templates method. |
Method | make_globals |
Make the globals map for a template. Any given template globals overlay the environment globals . |
Method | overlay |
No summary |
Method | parse |
No summary |
Method | preprocess |
Preprocesses the source with all extensions. This is automatically called for all parsing and compiling methods but not for lex because there you usually only want the actual source tokenized. |
Method | select_template |
Like get_template , but tries loading multiple names. If none of the names can be loaded a TemplatesNotFound exception is raised. |
Class Variable | linked_to |
Undocumented |
Class Variable | overlayed |
Undocumented |
Class Variable | sandboxed |
Undocumented |
Class Variable | shared |
Undocumented |
Class Variable | template_class |
Undocumented |
Instance Variable | auto_reload |
Undocumented |
Instance Variable | autoescape |
Undocumented |
Instance Variable | block_end_string |
Undocumented |
Instance Variable | block_start_string |
Undocumented |
Instance Variable | bytecode_cache |
Undocumented |
Instance Variable | cache |
Undocumented |
Instance Variable | comment_end_string |
Undocumented |
Instance Variable | comment_start_string |
Undocumented |
Instance Variable | extensions |
Undocumented |
Instance Variable | filters |
Undocumented |
Instance Variable | finalize |
Undocumented |
Instance Variable | globals |
Undocumented |
Instance Variable | is_async |
Undocumented |
Instance Variable | keep_trailing_newline |
Undocumented |
Instance Variable | line_comment_prefix |
Undocumented |
Instance Variable | line_statement_prefix |
Undocumented |
Instance Variable | loader |
Undocumented |
Instance Variable | lstrip_blocks |
Undocumented |
Instance Variable | newline_sequence |
Undocumented |
Instance Variable | optimized |
Undocumented |
Instance Variable | policies |
Undocumented |
Instance Variable | tests |
Undocumented |
Instance Variable | trim_blocks |
Undocumented |
Instance Variable | undefined |
Undocumented |
Instance Variable | variable_end_string |
Undocumented |
Instance Variable | variable_start_string |
Undocumented |
Property | lexer |
The lexer for this environment. |
Undocumented
Parameters | |
block_start_string:str | Undocumented |
block_end_string:str | Undocumented |
variable_start_string:str | Undocumented |
variable_end_string:str | Undocumented |
comment_start_string:str | Undocumented |
comment_end_string:str | Undocumented |
line_statement_prefix:t.Optional[ | Undocumented |
line_comment_prefix:t.Optional[ | Undocumented |
trim_blocks:bool | Undocumented |
lstrip_blocks:bool | Undocumented |
newline_sequence:te.Literal[ | Undocumented |
keep_trailing_newline:bool | Undocumented |
extensions:t.Sequence[ | Undocumented |
optimized:bool | Undocumented |
undefined:t.Type[ | Undocumented |
finalize:t.Optional[ | Undocumented |
autoescape:t.Union[ | Undocumented |
loader:t.Optional[ | Undocumented |
cache_size:int | Undocumented |
auto_reload:bool | Undocumented |
bytecode_cache:t.Optional[ | Undocumented |
enable_async:bool | Undocumented |
Internal hook that can be overridden to hook a different compile method in.
Parameters | |
source:str | Undocumented |
filename:str | Undocumented |
Returns | |
CodeType | Undocumented |
Undocumented
Parameters | |
name:t.Union[ | Undocumented |
value:t.Any | Undocumented |
args:t.Optional[ | Undocumented |
kwargs:t.Optional[ | Undocumented |
context:t.Optional[ | Undocumented |
eval_ctx:t.Optional[ | Undocumented |
is_filter:bool | Undocumented |
Returns | |
t.Any | Undocumented |
Internal hook that can be overridden to hook a different generate method in.
Parameters | |
source:nodes.Template | Undocumented |
name:t.Optional[ | Undocumented |
filename:t.Optional[ | Undocumented |
defer_init:bool | Undocumented |
Returns | |
str | Undocumented |
Undocumented
Parameters | |
name:str | Undocumented |
globals:t.Optional[ | Undocumented |
Returns | |
Template | Undocumented |
parse
and compile
.Parameters | |
source:str | Undocumented |
name:t.Optional[ | Undocumented |
filename:t.Optional[ | Undocumented |
Returns | |
nodes.Template | Undocumented |
~jinja2.lexer.TokenStream
.Parameters | |
source:str | Undocumented |
name:t.Optional[ | Undocumented |
filename:t.Optional[ | Undocumented |
state:t.Optional[ | Undocumented |
Returns | |
TokenStream | Undocumented |
Adds an extension after the environment was created.
Parameters | |
extension:t.Union[ | Undocumented |
Invoke a filter on a value the same way the compiler does.
This might return a coroutine if the filter is running from an environment in async mode and the filter supports async execution. It's your responsibility to await this if needed.
Parameters | |
name:str | Undocumented |
value:t.Any | Undocumented |
args:t.Optional[ | Undocumented |
kwargs:t.Optional[ | Undocumented |
context:t.Optional[ | Undocumented |
eval_ctx:t.Optional[ | Undocumented |
Returns | |
t.Any | Undocumented |
Invoke a test on a value the same way the compiler does.
This might return a coroutine if the test is running from an environment in async mode and the test supports async execution. It's your responsibility to await this if needed.
Parameters | |
name:str | Undocumented |
value:t.Any | Undocumented |
args:t.Optional[ | Undocumented |
kwargs:t.Optional[ | Undocumented |
context:t.Optional[ | Undocumented |
eval_ctx:t.Optional[ | Undocumented |
Returns | |
t.Any | Undocumented |
Compile a node or template source code. The name
parameter is
the load name of the template after it was joined using
join_path
if necessary, not the filename on the file system.
the filename
parameter is the estimated filename of the template on
the file system. If the template came from a database or memory this
can be omitted.
The return value of this method is a python code object. If the raw
parameter is True
the return value will be a string with python
code equivalent to the bytecode returned otherwise. This method is
mainly used internally.
defer_init
is use internally to aid the module code generator. This
causes the generated code to be able to import without the global
environment variable to be set.
defer_init
parameter added.Parameters | |
source:t.Union[ | Undocumented |
name:t.Optional[ | Undocumented |
filename:t.Optional[ | Undocumented |
raw:bool | Undocumented |
defer_init:bool | Undocumented |
Returns | |
t.Union[ | Undocumented |
A handy helper method that returns a callable that accepts keyword arguments that appear as variables in the expression. If called it returns the result of the expression.
This is useful if applications want to use the same rules as Jinja in template "configuration files" or similar situations.
Example usage:
>>> env = Environment() >>> expr = env.compile_expression('foo == 42') >>> expr(foo=23) False >>> expr(foo=42) True
Per default the return value is converted to None
if the
expression returns an undefined value. This can be changed
by setting undefined_to_none
to False
.
>>> env.compile_expression('var')() is None True >>> env.compile_expression('var', undefined_to_none=False)() Undefined
Parameters | |
source:str | Undocumented |
undefined_to_none:bool | Undocumented |
Returns | |
TemplateExpression | Undocumented |
Finds all the templates the loader can find, compiles them
and stores them in target
. If zip
is None
, instead of in a
zipfile, the templates will be stored in a directory.
By default a deflate zip algorithm is used. To switch to
the stored algorithm, zip
can be set to 'stored'.
extensions
and filter_func
are passed to list_templates
.
Each template returned will be compiled to the target folder or
zipfile.
By default template compilation errors are ignored. In case a
log function is provided, errors are logged. If you want template
syntax errors to abort the compilation you can set ignore_errors
to False
and you will get an exception on syntax errors.
Parameters | |
target:t.Union[ | Undocumented |
extensions:t.Optional[ | Undocumented |
filter_func:t.Optional[ | Undocumented |
zip:t.Optional[ | Undocumented |
log_function:t.Optional[ | Undocumented |
ignore_errors:bool | Undocumented |
Parameters | |
**attributes:t.Any | Undocumented |
loader
.Parameters | |
source:t.Union[ | Jinja source to compile into a template. |
globals:t.Optional[ | Extend the environment globals with
these extra variables available for all renders of this
template. If the template has already been loaded and
cached, its globals are updated with any new items. |
template_class:t.Optional[ | Return an instance of this
Template class. |
Returns | |
Template | Undocumented |
Use select_template
if an iterable of template names
is given, or get_template
if one name is given.
Parameters | |
template_name_or_list:t.Union[ | Undocumented |
parent:t.Optional[ | Undocumented |
globals:t.Optional[ | Undocumented |
Returns | |
Template | Undocumented |
Load a template by name with loader
and return a
Template
. If the template does not exist a
TemplateNotFound
exception is raised.
Template
object it is returned
unchanged.Parameters | |
name:t.Union[ | Name of the template to load. |
parent:t.Optional[ | The name of the parent template importing this
template. join_path can be used to implement name
transformations with this. |
globals:t.Optional[ | Extend the environment globals with
these extra variables available for all renders of this
template. If the template has already been loaded and
cached, its globals are updated with any new items. |
Returns | |
Template | Undocumented |
getitem
the attribute must be a string.Parameters | |
obj:t.Any | Undocumented |
attribute:str | Undocumented |
Returns | |
t.Any | Undocumented |
Parameters | |
obj:t.Any | Undocumented |
argument:t.Union[ | Undocumented |
Returns | |
t.Union[ | Undocumented |
Parameters | |
source:t.Optional[ | Undocumented |
Returns | |
te.NoReturn | Undocumented |
Returns | |
t.Iterator[ | Undocumented |
Join a template with the parent. By default all the lookups are
relative to the loader root so this method returns the template
parameter unchanged, but if the paths should be relative to the
parent template, this function can be used to calculate the real
template name.
Subclasses may override this method and implement template path joining here.
Parameters | |
template:str | Undocumented |
parent:str | Undocumented |
Returns | |
str | Undocumented |
Lex the given sourcecode and return a generator that yields tokens as tuples in the form (lineno, token_type, value). This can be useful for :ref:`extension development <writing-extensions>` and debugging templates.
This does not perform preprocessing. If you want the preprocessing
of the extensions to be applied you have to filter source through
the preprocess
method.
Parameters | |
source:str | Undocumented |
name:t.Optional[ | Undocumented |
filename:t.Optional[ | Undocumented |
Returns | |
t.Iterator[ | Undocumented |
Returns a list of templates for this environment. This requires
that the loader supports the loader's
~BaseLoader.list_templates
method.
If there are other files in the template folder besides the
actual templates, the returned list can be filtered. There are two
ways: either extensions
is set to a list of file extensions for
templates, or a filter_func
can be provided which is a callable that
is passed a template name and should return True
if it should end up
in the result list.
If the loader does not support that, a TypeError
is raised.
Parameters | |
extensions:t.Optional[ | Undocumented |
filter_func:t.Optional[ | Undocumented |
Returns | |
t.List[ | Undocumented |
Make the globals map for a template. Any given template
globals overlay the environment globals
.
Returns a collections.ChainMap
. This allows any changes
to a template's globals to only affect that template, while
changes to the environment's globals are still reflected.
However, avoid modifying any globals after a template is loaded.
collections.ChainMap
to always prevent mutating
environment globals.Parameters | |
d:t.Optional[ | Dict of template-specific globals. |
Returns | |
t.MutableMapping[ | Undocumented |
Create a new overlay environment that shares all the data with the current environment except for cache and the overridden attributes. Extensions cannot be removed for an overlayed environment. An overlayed environment automatically gets all the extensions of the environment it is linked to plus optional extra extensions.
Creating overlays should happen after the initial environment was set up completely. Not all attributes are truly linked, some are just copied over so modifications on the original environment may not shine through.
Parameters | |
block_start_string:str | Undocumented |
block_end_string:str | Undocumented |
variable_start_string:str | Undocumented |
variable_end_string:str | Undocumented |
comment_start_string:str | Undocumented |
comment_end_string:str | Undocumented |
line_statement_prefix:t.Optional[ | Undocumented |
line_comment_prefix:t.Optional[ | Undocumented |
trim_blocks:bool | Undocumented |
lstrip_blocks:bool | Undocumented |
extensions:t.Sequence[ | Undocumented |
optimized:bool | Undocumented |
undefined:t.Type[ | Undocumented |
finalize:t.Optional[ | Undocumented |
autoescape:t.Union[ | Undocumented |
loader:t.Optional[ | Undocumented |
cache_size:int | Undocumented |
auto_reload:bool | Undocumented |
bytecode_cache:t.Optional[ | Undocumented |
Returns | |
Environment | Undocumented |
Parse the sourcecode and return the abstract syntax tree. This tree of nodes is used by the compiler to convert the template into executable source- or bytecode. This is useful for debugging or to extract information from templates.
If you are :ref:`developing Jinja extensions <writing-extensions>` this gives you a good overview of the node tree generated.
Parameters | |
source:str | Undocumented |
name:t.Optional[ | Undocumented |
filename:t.Optional[ | Undocumented |
Returns | |
nodes.Template | Undocumented |
lex
because there you usually only want the actual source tokenized.Parameters | |
source:str | Undocumented |
name:t.Optional[ | Undocumented |
filename:t.Optional[ | Undocumented |
Returns | |
str | Undocumented |
Like get_template
, but tries loading multiple names.
If none of the names can be loaded a TemplatesNotFound
exception is raised.
Undefined
, an UndefinedError
is raised instead. If no templates were found and names
contains Undefined
, the message is more helpful.Template
object it is
returned unchanged.Parameters | |
names:t.Iterable[ | List of template names to try loading in order. |
parent:t.Optional[ | The name of the parent template importing this
template. join_path can be used to implement name
transformations with this. |
globals:t.Optional[ | Extend the environment globals with
these extra variables available for all renders of this
template. If the template has already been loaded and
cached, its globals are updated with any new items. |
Returns | |
Template | Undocumented |