Skip to content

Instantly share code, notes, and snippets.

@psanzay
Last active March 30, 2020 15:29
Show Gist options
  • Save psanzay/33722f37f38cb5346ae284cc4a35852c to your computer and use it in GitHub Desktop.
Save psanzay/33722f37f38cb5346ae284cc4a35852c to your computer and use it in GitHub Desktop.
python serialize
import json
# open file for storing data
f = open("data.json", w)
# create object
person = {"name": "test", ...}
# store in file
f.write(json.dumps(person))
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment