Async version of Jinja2 environment
Project description
aioja
Async version of Jinja2.
This library contains a modification of the Jinja2 library.
In addition to Jinja's built-in render_async
, i've added:
- async
FileSystemLoader
(via aiofiles) - async bytecode cache (aioredis and aiocache supported)
- async version of the
Environment.compile_templates
method
Install
pip install aioja
Quick Start
from aioja.environment import Environment
from aioja.loaders import FileSystemLoader
from aioja.bccache.aiocache import AioCacheBytecodeCache
env = Environment(
loader=FileSystemLoader('templates'),
# ...
# bytecode_cache=AioCacheBytecodeCache()
# ...
)
template = await env.get_template('index.html')
content = await template.render_async({
'page_id': 123
})
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aioja-0.0.1.tar.gz
(8.8 kB
view hashes)
Built Distribution
aioja-0.0.1-py2.py3-none-any.whl
(12.2 kB
view hashes)
Close
Hashes for aioja-0.0.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67810043cdbe3c324556f0e5d04cc768fb4d71c6a8228cc1061df3a7603861fa |
|
MD5 | 773b7dfdece9654114c2e91d34842b50 |
|
BLAKE2b-256 | cbf83219c22b30c32c9c5be00b907b14ab3ca4994d143911e3404ab17144c548 |