Files
akaunting-py/tests/helpers.py

7 lines
128 B
Python

import json
def RetrieveJSONFromFile(filename):
with open(filename) as f:
data = json.load(f)
return data