chapeau/django_kepi/utils.py

13 wiersze
207 B
Python

from django.core.serializers.json import DjangoJSONEncoder
def as_json(d,
indent=2):
encoder = DjangoJSONEncoder(
indent=indent,
sort_keys=True)
return encoder.encode(d)