Skip to content

Instantly share code, notes, and snippets.

@coltenkrauter
Last active November 15, 2019 23:46
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 coltenkrauter/dfea5376bef8b8b77f3d4db91eb3e06e to your computer and use it in GitHub Desktop.
Save coltenkrauter/dfea5376bef8b8b77f3d4db91eb3e06e to your computer and use it in GitHub Desktop.
A simple helper function for formatting/indenting a Python object as JSON.
import json
# Example usage: print(pretty_json(some_dict))
def pretty_json(object):
try:
return json.dumps(object, indent=4)
except Exception as exception:
print("---> Unable to parse object as JSON")
return str(object)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment