template
Generate CQL2 filter expressions via Jinja2 templating.
Template
dataclass
¶
Generate CQL2 filter expressions via Jinja2 templating.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
template_str
|
str
|
|
required |
Attributes:
Name | Type | Description |
---|---|---|
env |
Environment
|
|
Source code in src/stac_auth_proxy/filters/template.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
__call__(context: dict[str, Any]) -> str
async
¶
Render a CQL2 filter expression with the request and auth token.
Source code in src/stac_auth_proxy/filters/template.py
20 21 22 |
|
__post_init__()
¶
Initialize the Jinja2 environment.
Source code in src/stac_auth_proxy/filters/template.py
16 17 18 |
|