Created
January 24, 2020 15:59
-
-
Save letam/c2c0d5f4f93311e1e8325b698693b6db to your computer and use it in GitHub Desktop.
django model instance to json string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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