Skip to main content

No project description provided

Project description

starlette-async-jinja

Code style: crackerjack

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


Download files

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

Source Distribution

starlette_async_jinja-1.3.2.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

starlette_async_jinja-1.3.2-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file starlette_async_jinja-1.3.2.tar.gz.

File metadata

  • Download URL: starlette_async_jinja-1.3.2.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.9.3 CPython/3.11.5

File hashes

Hashes for starlette_async_jinja-1.3.2.tar.gz
Algorithm Hash digest
SHA256 a37efe042fd565a1fcb0b4475267915673b75f5d70bca08e61032836df788162
MD5 5553b9eed8739d4a9e2053f36e0b62a3
BLAKE2b-256 4f390bfd1c65e61bf4ace3fdb2aa6de83802df37f1d7e244eab49204d66be498

See more details on using hashes here.

File details

Details for the file starlette_async_jinja-1.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for starlette_async_jinja-1.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c9dfc4f31d90e36acbb8bc45749c454ac23c30561b095cc9072b115ba2fe2cf3
MD5 e58d9aded31c834ab23926e51c296490
BLAKE2b-256 00e1e7558ecdb76ba95dba3cc2cb225cb9db15f1eb6ff54e232673b753c6147d

See more details on using hashes here.

Supported by

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