No project description provided
Project description
Muffin-Jinja2 – Jinja2 template engine for Muffin framework.
Requirements
python >= 3.3
Installation
Muffin-Jinja2 should be installed using pip:
pip install muffin-jinja2
Usage
Add muffin_jinja2 to PLUGINS in your Muffin Application configuration.
Options
JINJA2_AUTO_RELOAD – Auto reload changed templates (False)
JINJA2_CACHE_SIZE – Cache templates (50)
JINJA2_EXTENSIONS – Enable Jinja2 Extensions (None)
JINJA2_LOADER – Template loader (FileSystemLoader)
JINJA2_ENCODING – Default encoding for file loader
JINJA2_TEMPLATE_FOLDERS – List of template folders ([‘templates’])
Views
# Register custom context processor # could be a function/coroutine @app.ps.jinja2.context_processor def custom_context(): return { 'VAR': 'VALUE' } # Register a function into global context @app.ps.jinja2.register def sum(a, b): return a + b # Register a function with a different name @app.ps.jinja2.register('div') def mod(a, b): return a // b # Register a filter @app.ps.jinja2.filter def test(value, a, b=None): return a if value else b # Register a filter with a different name @app.ps.jinja2.filter('bool') def boolean(value): return bool(value) @app.register('/') def index(request): """ Check for user is admin. """ local_context = {'key': 'value'} return app.ps.jinja2.render('index.html', **local_context)
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/muffin-jinja2/issues
Contributing
Development of Muffin-Jinja2 happens at: https://github.com/klen/muffin-jinja2
Contributors
klen (Kirill Klenov)
License
Licensed under a MIT license.
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
File details
Details for the file muffin-jinja2-0.0.5.tar.gz
.
File metadata
- Download URL: muffin-jinja2-0.0.5.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89dedd992952b2b8990fadfb582cf084ab12bd57e86a34a15f1847f7e9d7e3f6 |
|
MD5 | cb877f84f2b3026972e2023b9bca8971 |
|
BLAKE2b-256 | f8c3fda66edeeaa9a56a12291ca2bb67f4c0578a98db2a6210480555cfd477cd |
File details
Details for the file muffin_jinja2-0.0.5-py2.py3-none-any.whl
.
File metadata
- Download URL: muffin_jinja2-0.0.5-py2.py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c21dc3eb2a365db483b09a2bbd8e545a58a681e77de1b724d0913fc1434227a3 |
|
MD5 | 026b307f874d5c0d5a948c89ee6fa555 |
|
BLAKE2b-256 | bd98c78e06e5a930eec79ff8f7cd4b8523154d25e05c89856cf5da10565e439b |