Skip to content

Instantly share code, notes, and snippets.

@jeakwon
Created February 1, 2019 13:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeakwon/201284754ff206a80ebedbdd70b5afca to your computer and use it in GitHub Desktop.
Save jeakwon/201284754ff206a80ebedbdd70b5afca to your computer and use it in GitHub Desktop.
python save dict as json file
import json
def to_json(dictionary, filename):
with open(filename,'w') as fp:
json.dump(dictionary, fp,sort_keys=True, indent=4,ensure_ascii=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment