Created
February 8, 2017 13:50
-
-
Save Shellbye/4cc77288971cbb5fba708cd2de4acbea to your computer and use it in GitHub Desktop.
convert django restful serializers data to json list
This file contains hidden or 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
| # -*- 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