Skip to content

Instantly share code, notes, and snippets.

@vskrachkov
Created April 27, 2017 09:25
Show Gist options
  • Save vskrachkov/9c343f8ba1ca08361355110fef2ac30d to your computer and use it in GitHub Desktop.
Save vskrachkov/9c343f8ba1ca08361355110fef2ac30d to your computer and use it in GitHub Desktop.
from django.core import serializers
f = open('dic_user_status.json', b'w')
json = serializers.serialize("json", DicUserStatus.objects.all())
f.write(json)
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment