load.py 118 B

1234567
  1. import json
  2. JSON = ""
  3. def load_json(PATH):
  4. with open(PATH) as f:
  5. JSON = json.load(f)
  6. return JSON