Skip to main content

Support Jinja2 templates for Muffin Framework

Project description

Muffin-Jinja2 – Support Jinja2 templates for Muffin Framework

Tests Status PYPI Version

Requirements

  • python >= 3.8

Installation

Muffin-Jinja2 should be installed using pip:

pip install muffin-jinja2

Usage

from muffin import Application
from muffin_jinja2 import Plugin as Jinja2

# Create Muffin Application
app = Application('example')

# Initialize the plugin
# As alternative: jinja2 = Jinja2(app, **options)
jinja2 = Jinja2()
jinja2.init(app, template_folders=['src/templates'])

# Use it inside your handlers
@app.route('/')
async def index(request):
    context = {'var': 42}
    return await jinja2.render('index.html', **context)

Options

Format: Name – Description (default value)

auto_reload – Auto reload changed templates (False)

cache_size – Cache templates (50)

extensions – Enable Jinja2 Extensions (None)

loader – Template loader (FileSystemLoader)

encoding – Default encoding for file loader (utf-8)

template_folders – List of template folders ([‘templates’])

You are able to provide the options when you are initiliazing the plugin:

jinja2.init(app, template_folders=['src/templates'], auto_reload=True)

Or setup it inside Muffin.Application config using the jinja2_ prefix:

JINJA2_AUTO_RELOAD = True

JINJA2_TEMPLATE_FOLDERS = ['tmpls']

Muffin.Application configuration options are case insensetive

Tunning

# Register custom context processor
# could be a function/coroutine
@jinja2.context_processor
def custom_context():
    return { 'VAR': 'VALUE' }

# Register a function into global context
@jinja2.register
def sum(a, b):
    return a + b

# Register a function with a different name
@jinja2.register('div')
def mod(a, b):
    return a // b

# Register a filter
@jinja2.filter
def test(value, a, b=None):
    return a if value else b

# Register a filter with a different name
@jinja2.filter('bool')
def boolean(value):
    return bool(value)

@app.route('/')
async def index(request):
    """ Check for user is admin. """
    local_context = {'key': 'value'}
    return await 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

muffin-jinja2-0.3.3.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

muffin_jinja2-0.3.3-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file muffin-jinja2-0.3.3.tar.gz.

File metadata

  • Download URL: muffin-jinja2-0.3.3.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for muffin-jinja2-0.3.3.tar.gz
Algorithm Hash digest
SHA256 cc29788626a1de3a2ea8ec8a2c78f0f0a3a4eee01fc09bc3b3014e47283f1481
MD5 4e3adfab78c87fd110d06c9afb2c87bb
BLAKE2b-256 a74d36d60f8750c70980438ee83a901136046357354e1f767bcf3e0dc3fdb331

See more details on using hashes here.

File details

Details for the file muffin_jinja2-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: muffin_jinja2-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 4.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for muffin_jinja2-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d068c80f8e7018d7331837ddbe03000879b3a093496d302d0981fb586a18fe49
MD5 2ccc90e9f8d2c9d5b291eeef8bf91bf9
BLAKE2b-256 739cf7e5aecbdb6308b8bbfa6f05210ee008ec1bc0f855a3b2d98122114ed5ca

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page