You've already forked akaunting-py
7 lines
128 B
Python
7 lines
128 B
Python
|
|
import json
|
||
|
|
|
||
|
|
def RetrieveJSONFromFile(filename):
|
||
|
|
with open(filename) as f:
|
||
|
|
data = json.load(f)
|
||
|
|
|
||
|
|
return data
|