diff --git a/Api/tools.py b/Api/tools.py new file mode 100644 index 0000000..df7289e --- /dev/null +++ b/Api/tools.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python3 +import json + + +def load_json(file_path): + with open(file_path, 'r') as filejson: + return json.load(filejson)