-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path__init__.py
29 lines (22 loc) · 1.06 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import functools
from typing import Mapping, Type, Sequence, Any, Callable
from pyrsistent import v
from .lexer import compile_plim_source
from . import syntax as available_syntax
def preprocessor_factory(custom_parsers: Sequence[Any] = v(), syntax: str = 'mako') -> Callable[[str, bool], str]:
"""
:param custom_parsers: a list of 2-tuples of (parser_regex, parser_callable) or None
:type custom_parsers: list or None
:param syntax: name of the target template engine ('mako' by default)
:return: preprocessor instance
"""
syntax_choices: Mapping[str, Type[available_syntax.BaseSyntax]] = {
'mako': available_syntax.Mako,
'django': available_syntax.Django,
}
selected_syntax = syntax_choices[syntax](custom_parsers or v())
return functools.partial(compile_plim_source, syntax=selected_syntax)
# ``preprocessor`` is a public object that always follows Mako's preprocessor API.
# Do not use ``compile_plim_source`` in your projects, because its signature
# may be changed in the future.
preprocessor = preprocessor_factory()