Skip to main content

Django template tag and filter for evaluating Python expressions

Project description

Django Expressions

Django template tag and filter for evaluating Python expressions.

Demo

As a template tag {% expr "<expression>" %}

{% expr "[a for a in range(n)]" %}

Save the result to a variable using as var at the end of the tag:

{% expr "[a for a in range(n)]" as result %}
{{ result }}

As a filter "<expression>" | expr:

{{ "{k: v.name for k, v in employees_dict.values() }" | expr }}

To chain an expression after another filter, define a lambda expression as the filter argument value | expr:"lambda x: <expression>":

{{ employees_list | first | expr:"lambda x: x.first_name + ' ' + x.last_name" }}

Installation

  1. Install dependencies

    pip install django_expr
    
  2. Add django_expr to INSTALLED_APPS in your settings.py

    INSTALLED_APPS = [
        "django_expr",
        ...
    ]
    
  3. Inside templates, load the tags with {% load expr %}:

    {% load expr %}
    {% expr "[{k: not v} for k, v in ({'a': 'b', 'c': 0}).items()]" %}
    
  4. If you want to automatically include the expr tag and filter, add the tags as a 'builtin' in settings.py:

TEMPLATES = [
    {
        ...,
        'OPTIONS': {
            'context_processors': [
                ...
            ],
            'builtins': [
                'django_expr.templatetags.expr',
            ]
        },
    },
]

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

django_expr-0.0.1.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

django_expr-0.0.1-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file django_expr-0.0.1.tar.gz.

File metadata

  • Download URL: django_expr-0.0.1.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.5

File hashes

Hashes for django_expr-0.0.1.tar.gz
Algorithm Hash digest
SHA256 12894f38e76dccc01c6ebb49b74b48ad0f4a168a0fe778e9cb998a72a9380857
MD5 c8e4e2d8743266d67acbfad52ab4575f
BLAKE2b-256 dd30fb30d9b3e759b2d8fc6cf4cfe0c1f0e7c4b55dacff73117f408f6fd1aa23

See more details on using hashes here.

File details

Details for the file django_expr-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: django_expr-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.5

File hashes

Hashes for django_expr-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 141988f894b96e9af56dc9204870070af6212e0cbeb51bec6e2326a0124677e9
MD5 e64c38e50bc2b6fe248f16865b878810
BLAKE2b-256 d8784f07687f5a964019a70490193cfa4c8dd2078d7ab1eada3ceec8c3c33453

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