Skip to content

Instantly share code, notes, and snippets.

@amacneil
amacneil / json.py
Last active March 18, 2021 03:24
Safely JSON-encode objects in your Django template
from django.core.serializers.json import DjangoJSONEncoder
from django.template import Library
from json import dumps as json_dumps
register = Library()
@register.filter
def json(data):
"""
@nateklaiber
nateklaiber / design.md
Last active July 27, 2025 04:17
API Client Design