class documentation

class Environment:

Known subclasses: jinja2.nativetypes.NativeEnvironment

View In Hierarchy

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 function
loader
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.
def __init__(self, block_start_string=BLOCK_START_STRING, block_end_string=BLOCK_END_STRING, variable_start_string=VARIABLE_START_STRING, variable_end_string=VARIABLE_END_STRING, comment_start_string=COMMENT_START_STRING, comment_end_string=COMMENT_END_STRING, line_statement_prefix=LINE_STATEMENT_PREFIX, line_comment_prefix=LINE_COMMENT_PREFIX, trim_blocks=TRIM_BLOCKS, lstrip_blocks=LSTRIP_BLOCKS, newline_sequence=NEWLINE_SEQUENCE, keep_trailing_newline=KEEP_TRAILING_NEWLINE, extensions=(), optimized=True, undefined=Undefined, finalize=None, autoescape=False, loader=None, cache_size=400, auto_reload=True, bytecode_cache=None, enable_async=False):

Undocumented

Parameters
block​_start​_string:strUndocumented
block​_end​_string:strUndocumented
variable​_start​_string:strUndocumented
variable​_end​_string:strUndocumented
comment​_start​_string:strUndocumented
comment​_end​_string:strUndocumented
line​_statement​_prefix:t.Optional[str]Undocumented
line​_comment​_prefix:t.Optional[str]Undocumented
trim​_blocks:boolUndocumented
lstrip​_blocks:boolUndocumented
newline​_sequence:te.Literal['\n', '\r\n', '\r']Undocumented
keep​_trailing​_newline:boolUndocumented
extensions:t.Sequence[t.Union[str, t.Type[Extension]]]Undocumented
optimized:boolUndocumented
undefined:t.Type[Undefined]Undocumented
finalize:t.Optional[t.Callable[..., t.Any]]Undocumented
autoescape:t.Union[bool, t.Callable[[t.Optional[str]], bool]]Undocumented
loader:t.Optional[BaseLoader]Undocumented
cache​_size:intUndocumented
auto​_reload:boolUndocumented
bytecode​_cache:t.Optional[BytecodeCache]Undocumented
enable​_async:boolUndocumented
def _compile(self, source, filename):

Internal hook that can be overridden to hook a different compile method in.

New in version 2.5.
Parameters
source:strUndocumented
filename:strUndocumented
Returns
CodeTypeUndocumented
def _filter_test_common(self, name, value, args, kwargs, context, eval_ctx, is_filter):

Undocumented

Parameters
name:t.Union[str, Undefined]Undocumented
value:t.AnyUndocumented
args:t.Optional[t.Sequence[t.Any]]Undocumented
kwargs:t.Optional[t.Mapping[str, t.Any]]Undocumented
context:t.Optional[Context]Undocumented
eval​_ctx:t.Optional[EvalContext]Undocumented
is​_filter:boolUndocumented
Returns
t.AnyUndocumented
def _generate(self, source, name, filename, defer_init=False):

Internal hook that can be overridden to hook a different generate method in.

New in version 2.5.
Parameters
source:nodes.TemplateUndocumented
name:t.Optional[str]Undocumented
filename:t.Optional[str]Undocumented
defer​_init:boolUndocumented
Returns
strUndocumented
@internalcode
def _load_template(self, name, globals):

Undocumented

Parameters
name:strUndocumented
globals:t.Optional[t.Mapping[str, t.Any]]Undocumented
Returns
TemplateUndocumented
def _parse(self, source, name, filename):
Internal parsing function used by parse and compile.
Parameters
source:strUndocumented
name:t.Optional[str]Undocumented
filename:t.Optional[str]Undocumented
Returns
nodes.TemplateUndocumented
def _tokenize(self, source, name, filename=None, state=None):
Called by the parser to do the preprocessing and filtering for all the extensions. Returns a ~jinja2.lexer.TokenStream.
Parameters
source:strUndocumented
name:t.Optional[str]Undocumented
filename:t.Optional[str]Undocumented
state:t.Optional[str]Undocumented
Returns
TokenStreamUndocumented
def add_extension(self, extension):

Adds an extension after the environment was created.

New in version 2.5.
Parameters
extension:t.Union[str, t.Type[Extension]]Undocumented
def call_filter(self, name, value, args=None, kwargs=None, context=None, eval_ctx=None):

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.

New in version 2.7.
Parameters
name:strUndocumented
value:t.AnyUndocumented
args:t.Optional[t.Sequence[t.Any]]Undocumented
kwargs:t.Optional[t.Mapping[str, t.Any]]Undocumented
context:t.Optional[Context]Undocumented
eval​_ctx:t.Optional[EvalContext]Undocumented
Returns
t.AnyUndocumented
def call_test(self, name, value, args=None, kwargs=None, context=None, eval_ctx=None):

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.

Changed in version 3.0: Tests support @pass_context, etc. decorators. Added the context and eval_ctx parameters.
New in version 2.7.
Parameters
name:strUndocumented
value:t.AnyUndocumented
args:t.Optional[t.Sequence[t.Any]]Undocumented
kwargs:t.Optional[t.Mapping[str, t.Any]]Undocumented
context:t.Optional[Context]Undocumented
eval​_ctx:t.Optional[EvalContext]Undocumented
Returns
t.AnyUndocumented
@internalcode
def compile(self, source, name=None, filename=None, raw=False, defer_init=False):

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.

New in version 2.4: defer_init parameter added.
Parameters
source:t.Union[str, nodes.Template]Undocumented
name:t.Optional[str]Undocumented
filename:t.Optional[str]Undocumented
raw:boolUndocumented
defer​_init:boolUndocumented
Returns
t.Union[str, CodeType]Undocumented
def compile_expression(self, source, undefined_to_none=True):

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
New in version 2.1.
Parameters
source:strUndocumented
undefined​_to​_none:boolUndocumented
Returns
TemplateExpressionUndocumented
def compile_templates(self, target, extensions=None, filter_func=None, zip='deflated', log_function=None, ignore_errors=True):

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.

New in version 2.4.
Parameters
target:t.Union[str, os.PathLike]Undocumented
extensions:t.Optional[t.Collection[str]]Undocumented
filter​_func:t.Optional[t.Callable[[str], bool]]Undocumented
zip:t.Optional[str]Undocumented
log​_function:t.Optional[t.Callable[[str], None]]Undocumented
ignore​_errors:boolUndocumented
def extend(self, **attributes):
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.
Parameters
**attributes:t.AnyUndocumented
def from_string(self, source, globals=None, template_class=None):
Load a template from a source string without using loader.
Parameters
source:t.Union[str, nodes.Template]Jinja source to compile into a template.
globals:t.Optional[t.Mapping[str, t.Any]]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[t.Type[Template]]Return an instance of this Template class.
Returns
TemplateUndocumented
@internalcode
def get_or_select_template(self, template_name_or_list, parent=None, globals=None):

Use select_template if an iterable of template names is given, or get_template if one name is given.

New in version 2.3.
Parameters
template​_name​_or​_list:t.Union[str, Template, t.List[t.Union[str, Template]]]Undocumented
parent:t.Optional[str]Undocumented
globals:t.Optional[t.Mapping[str, t.Any]]Undocumented
Returns
TemplateUndocumented
@internalcode
def get_template(self, name, parent=None, globals=None):

Load a template by name with loader and return a Template. If the template does not exist a TemplateNotFound exception is raised.

Changed in version 3.0: If a template is loaded from cache, globals will update the template's globals instead of ignoring the new values.
Changed in version 2.4: If name is a Template object it is returned unchanged.
Parameters
name:t.Union[str, Template]Name of the template to load.
parent:t.Optional[str]The name of the parent template importing this template. join_path can be used to implement name transformations with this.
globals:t.Optional[t.Mapping[str, t.Any]]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
TemplateUndocumented
def getattr(self, obj, attribute):
Get an item or attribute of an object but prefer the attribute. Unlike getitem the attribute must be a string.
Parameters
obj:t.AnyUndocumented
attribute:strUndocumented
Returns
t.AnyUndocumented
def getitem(self, obj, argument):
Get an item or attribute of an object but prefer the item.
Parameters
obj:t.AnyUndocumented
argument:t.Union[str, t.Any]Undocumented
Returns
t.Union[t.Any, Undefined]Undocumented
def handle_exception(self, source=None):
Exception handling helper. This is used internally to either raise rewritten exceptions or return a rendered traceback for the template.
Parameters
source:t.Optional[str]Undocumented
Returns
te.NoReturnUndocumented
def iter_extensions(self):
Iterates over the extensions by priority.
Returns
t.Iterator[Extension]Undocumented
def join_path(self, template, parent):

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:strUndocumented
parent:strUndocumented
Returns
strUndocumented
def lex(self, source, name=None, filename=None):

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:strUndocumented
name:t.Optional[str]Undocumented
filename:t.Optional[str]Undocumented
Returns
t.Iterator[t.Tuple[int, str, str]]Undocumented
def list_templates(self, extensions=None, filter_func=None):

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.

New in version 2.4.
Parameters
extensions:t.Optional[t.Collection[str]]Undocumented
filter​_func:t.Optional[t.Callable[[str], bool]]Undocumented
Returns
t.List[str]Undocumented
def make_globals(self, d):

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.

Changed in version 3.0: Use collections.ChainMap to always prevent mutating environment globals.
Parameters
d:t.Optional[t.Mapping[str, t.Any]]Dict of template-specific globals.
Returns
t.MutableMapping[str, t.Any]Undocumented
def overlay(self, block_start_string=missing, block_end_string=missing, variable_start_string=missing, variable_end_string=missing, comment_start_string=missing, comment_end_string=missing, line_statement_prefix=missing, line_comment_prefix=missing, trim_blocks=missing, lstrip_blocks=missing, extensions=missing, optimized=missing, undefined=missing, finalize=missing, autoescape=missing, loader=missing, cache_size=missing, auto_reload=missing, bytecode_cache=missing):

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:strUndocumented
block​_end​_string:strUndocumented
variable​_start​_string:strUndocumented
variable​_end​_string:strUndocumented
comment​_start​_string:strUndocumented
comment​_end​_string:strUndocumented
line​_statement​_prefix:t.Optional[str]Undocumented
line​_comment​_prefix:t.Optional[str]Undocumented
trim​_blocks:boolUndocumented
lstrip​_blocks:boolUndocumented
extensions:t.Sequence[t.Union[str, t.Type[Extension]]]Undocumented
optimized:boolUndocumented
undefined:t.Type[Undefined]Undocumented
finalize:t.Optional[t.Callable[..., t.Any]]Undocumented
autoescape:t.Union[bool, t.Callable[[t.Optional[str]], bool]]Undocumented
loader:t.Optional[BaseLoader]Undocumented
cache​_size:intUndocumented
auto​_reload:boolUndocumented
bytecode​_cache:t.Optional[BytecodeCache]Undocumented
Returns
EnvironmentUndocumented
@internalcode
def parse(self, source, name=None, filename=None):

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:strUndocumented
name:t.Optional[str]Undocumented
filename:t.Optional[str]Undocumented
Returns
nodes.TemplateUndocumented
def preprocess(self, source, name=None, filename=None):
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.
Parameters
source:strUndocumented
name:t.Optional[str]Undocumented
filename:t.Optional[str]Undocumented
Returns
strUndocumented
@internalcode
def select_template(self, names, parent=None, globals=None):

Like get_template, but tries loading multiple names. If none of the names can be loaded a TemplatesNotFound exception is raised.

Changed in version 3.0: If a template is loaded from cache, globals will update the template's globals instead of ignoring the new values.
Changed in version 2.11: If names is Undefined, an UndefinedError is raised instead. If no templates were found and names contains Undefined, the message is more helpful.
Changed in version 2.4: If names contains a Template object it is returned unchanged.
New in version 2.3.
Parameters
names:t.Iterable[t.Union[str, Template]]List of template names to try loading in order.
parent:t.Optional[str]The name of the parent template importing this template. join_path can be used to implement name transformations with this.
globals:t.Optional[t.Mapping[str, t.Any]]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
TemplateUndocumented
linked_to: t.Optional[Environment] =

Undocumented

overlayed: bool =

Undocumented

sandboxed: bool =

Undocumented

shared: bool =

Undocumented

template_class: t.Type[Template] =

Undocumented

auto_reload =

Undocumented

autoescape =

Undocumented

block_end_string =

Undocumented

block_start_string =

Undocumented

bytecode_cache =

Undocumented

cache =

Undocumented

comment_end_string =

Undocumented

comment_start_string =

Undocumented

extensions =

Undocumented

filters =

Undocumented

finalize =

Undocumented

globals =

Undocumented

is_async =

Undocumented

keep_trailing_newline =

Undocumented

line_comment_prefix =

Undocumented

line_statement_prefix =

Undocumented

loader =

Undocumented

lstrip_blocks =

Undocumented

newline_sequence =

Undocumented

optimized =

Undocumented

policies =

Undocumented

tests =

Undocumented

trim_blocks =

Undocumented

undefined: t.Type[Undefined] =

Undocumented

variable_end_string =

Undocumented

variable_start_string =

Undocumented

@property
lexer: Lexer =
The lexer for this environment.