No project description provided
Project description
starlette-async-jinja
Jinja2 is_async template support for Starlette +
About
- Provides AsyncJinja2Templates class which enables use of the is_async Jinja environment flag with Startlette and Starlette based applications like FastAPI
- Integrated Jinja Partials and Jinja Fragments
- Supports asynchronous template loaders (examples here) (not yet tested but should work)
Issues
-
Only asynchronous template loaders (not yet tested but should work) are currently supported
-
The Jinja bytecodecache requires an asynchronous Redis backend
Usage
Import AsyncJinja2 Templates:
from starlette_async_jinja import AsyncJinja2Templates
Replace Jinja2Templates with AsyncJinja2Templates:
templates = Jinja2Templates(directory='templates')
Render the async template in the response:
async def homepage(request: Request):
return await templates.AsyncTemplateResponse('index.html', {'request': request})
Even simpler:
async def homepage(request: Request):
return await templates.render_template('index.html', {'request': request})
To render Jinja Fragments or 'blocks':
async def only_block(request: Request):
return await templates.render_block(
"page.html.jinja2",
{"request": request, "magic_number": 42},
block_name="content"
)
To render Jinja Partials:
in a template
{% for v in row %}
<div class="col-md-3 video">
{{ render_partial('shared/partials/video_square.html', video=v) }}
</div>
{% endfor %}
or programmatically
async def render_partial(template: str, **kwargs):
return await templates.render_partial(template, **kwargs)
Acknowledgements
License
BSD-3-Clause
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for starlette_async_jinja-1.6.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c960574472838cef077969ddc17da321a0e6bdb3ccfdaa6feee156a2e62b007d |
|
MD5 | 14dadbff4d629c6bbed371fd7e575b3f |
|
BLAKE2b-256 | 6f8a3f9123408dd5d35f0c723f1fe0479b1c9b8b3211a5cf68e8e7b290cb220b |
Close
Hashes for starlette_async_jinja-1.6.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1b0bb4cb1826064405ddda6c154efbd8898c4c3784acf5fb11aacc8753cc54d |
|
MD5 | 9630be9320e665e9f293d6bf08e8a1d7 |
|
BLAKE2b-256 | c2c9ed64c76f3b1452eb96598ff56c2db54f8fd65193257d14b26d195d1030a0 |