Skip to content

Instantly share code, notes, and snippets.

@letam
Created January 24, 2020 15:59
Show Gist options
  • Save letam/c2c0d5f4f93311e1e8325b698693b6db to your computer and use it in GitHub Desktop.
Save letam/c2c0d5f4f93311e1e8325b698693b6db to your computer and use it in GitHub Desktop.
django model instance to json string
import json
from django.core.serializers.json import DjangoJSONEncoder
from django.forms.models import model_to_dict
def json_dump_model(instance) -> str:
"""Return string representation of JSON representation of data in ``instance``.
"""
return json.dumps(model_to_dict(instance), cls=DjangoJSONEncoder)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment