Skip to content

Instantly share code, notes, and snippets.

@Shellbye
Created February 8, 2017 13:50
Show Gist options
  • Select an option

  • Save Shellbye/4cc77288971cbb5fba708cd2de4acbea to your computer and use it in GitHub Desktop.

Select an option

Save Shellbye/4cc77288971cbb5fba708cd2de4acbea to your computer and use it in GitHub Desktop.
convert django restful serializers data to json list
# -*- coding: utf-8 -*-
import json
def serializers_data_2_json_list(data):
return json.loads(json.dumps(data))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment