Skip to content

Instantly share code, notes, and snippets.

@cccntu
Created July 22, 2020 11:44
Show Gist options
  • Save cccntu/f03ba1c3450e148fe3731a3203e30c2f to your computer and use it in GitHub Desktop.
Save cccntu/f03ba1c3450e148fe3731a3203e30c2f to your computer and use it in GitHub Desktop.
python utils
import json
def read_json(path, encoding = 'utf-8'):
with open(path, encoding = encoding) as f:
return json.load(f)
def write_json(data, path, encoding = 'utf-8'):
with open(path, 'w', encoding = encoding) as f:
return json.dump(data, f)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment