Skip to content

FunctionLoader

Base classes

Name Children Inherits
LoaderMixin
jinjarope.loaders
Loader mixin which allows to OR loaders into a choice loader.
FunctionLoader
jinja2.loaders
A loader that is passed a function which does the loading. The

⋔ Inheritance diagram

graph TD
  94892546491744["loaders.FunctionLoader"]
  94892548325824["loaders.LoaderMixin"]
  140247609577664["builtins.object"]
  94892544499200["loaders.FunctionLoader"]
  94892544482432["loaders.BaseLoader"]
  94892548325824 --> 94892546491744
  140247609577664 --> 94892548325824
  94892544499200 --> 94892546491744
  94892544482432 --> 94892544499200
  140247609577664 --> 94892544482432

🛈 DocStrings

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
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
class FunctionLoader(LoaderMixin, jinja2.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.
    """

    ID = "function"

    def __repr__(self):
        return utils.get_repr(self, self.load_func)

    def __eq__(self, other):
        return type(self) is type(other) and self.load_func == other.load_func

    def __hash__(self):
        return hash(self.load_func)

Show source on GitHub