tabedini commited on
Commit
79322b9
1 Parent(s): da2e442

Create utils.py

Browse files
Files changed (1) hide show
  1. utils.py +9 -0
utils.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+
3
+ def load_list_from_json(file_path):
4
+ with open(file_path, 'r', encoding='utf-8') as file:
5
+ return json.load(file)
6
+
7
+
8
+ if __name__ == '__main__':
9
+ pass