8 lines
141 B
Python
8 lines
141 B
Python
#!/usr/bin/env python3
|
|
import json
|
|
|
|
|
|
def load_json(file_path):
|
|
with open(file_path, 'r') as filejson:
|
|
return json.load(filejson)
|