Skip to content

Instantly share code, notes, and snippets.

@mkckr0
Created February 4, 2023 09:33
Show Gist options
  • Save mkckr0/854fd34c21158ebc1698a374c56e28da to your computer and use it in GitHub Desktop.
Save mkckr0/854fd34c21158ebc1698a374c56e28da to your computer and use it in GitHub Desktop.
serialize an object to json
json.dumps = functools.partial(json.dumps, default=vars, ensure_ascii=False, indent=2)
json.dumps(o)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment