python
20 lines · 6 steps
Building a currency Jinja filter in Flask
A custom template filter that safely formats numbers as localized currency inside Jinja templates.
Explained by
highlit
1from decimal import Decimal, ROUND_HALF_UP
2
3from babel.numbers import format_currency
4from flask import Flask
5
6app = Flask(__name__)
7
8
9@app.template_filter("currency")
10def currency(amount, currency_code="USD", locale="en_US"):
11 if amount is None:
12 return ""
13
14 try:
15 value = Decimal(str(amount))
16 except (TypeError, ValueError):
17 return ""
18
19 value = value.quantize(Decimal("0.01"), rounding=ROUND_HALF_UP)
20 return format_currency(value, currency_code, locale=locale)
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1Registering a template filter lets templates call reusable formatting logic without cluttering view code.
- 2Converting through Decimal(str(amount)) avoids the rounding errors that come from binary floats in money math.
- 3Guarding against None and bad input keeps a formatting filter from breaking template rendering.
Related explainers
python
from flask import Blueprint, jsonify, request, abort v1 = Blueprint("users_v1", __name__) v2 = Blueprint("users_v2", __name__)
Versioning a Flask API with Blueprints
api versioning
blueprints
rest
Intermediate
7 steps
python
import time import threading from enum import Enum from functools import wraps
Building a circuit breaker in Python
circuit-breaker
resilience
decorators
Advanced
7 steps
python
from django.contrib.postgres.search import SearchQuery, SearchRank, SearchVector from django.core.cache import cache from django.db.models import F from django.http import JsonResponse
Ranked full-text search in Django
full-text-search
debouncing
caching
Advanced
9 steps
python
import os from datetime import timedelta
Class-based config in a Flask app factory
configuration
app-factory
inheritance
Intermediate
7 steps
python
import time from flask import Flask, g, request
Timing requests with Flask hooks
middleware
request-lifecycle
instrumentation
Intermediate
5 steps
python
from pathlib import Path from PIL import Image, ImageOps
Batch image resizing with Pillow
image-processing
batch-jobs
error-handling
Intermediate
8 steps
Share this explainer
Here's the card — post it anywhere.
Made with highlit — turn any snippet into a walkthrough like this in about a minute.
Explain your code
Embed this explainer
Drop the interactive walkthrough into a blog or docs. Views never cost a credit.
<iframe src="https://highlit.co/explainers/building-a-currency-jinja-filter-in-flask-explained-python-cf9b/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.