Skip to content

Instantly share code, notes, and snippets.

@sht
Created June 24, 2021 11:55
Show Gist options
  • Save sht/512caade4c9fbc70a68005243d38dd9d to your computer and use it in GitHub Desktop.
Save sht/512caade4c9fbc70a68005243d38dd9d to your computer and use it in GitHub Desktop.
to make dict or json beautiful in Python
import json
data = {Data}
d1 = json.dumps(data)
parsed = json.loads(d1)
print(json.dumps(parsed, indent=4, sort_keys=True))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment