- Author:
- chriswedgwood
- Posted:
- February 18, 2021
- Language:
- Python
- Version:
- 2.1
- Score:
- 3 (after 3 ratings)
Sometimes you need to see the json representation of an object, here is how I do it :)
1 2 3 4 5 6 | from django.core import serializers
from .models import YourAwesomeModel
obj = YourAwesomeModel.objects.first()
serialized_obj = serializers.serialize('json', [ obj, ])
print(serialized_obj)
|
More like this
- Generate and render HTML Table by LLyaudet 4 days, 18 hours ago
- My firs Snippets by GutemaG 1 week, 1 day ago
- FileField having auto upload_to path by junaidmgithub 1 month, 2 weeks ago
- LazyPrimaryKeyRelatedField by LLyaudet 1 month, 3 weeks ago
- CacheInDictManager by LLyaudet 1 month, 3 weeks ago
Comments
test
#
Please login first before commenting.