Skip to content

Instantly share code, notes, and snippets.

@Vopaaz
Last active December 19, 2019 19:10
Show Gist options
  • Save Vopaaz/948f2f4d393b3a58699f4ded9c0d00ae to your computer and use it in GitHub Desktop.
Save Vopaaz/948f2f4d393b3a58699f4ded9c0d00ae to your computer and use it in GitHub Desktop.
Prettified json dump with proper indent and word wrap.
with open(file, "w", encoding="utf-8") as f:
json.dump(js_obj, f, indent=4, separators=(',', ': '))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment