pycoze 0.1.138__py3-none-any.whl → 0.1.141__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pycoze/utils/__init__.py +1 -1
- pycoze/utils/arg.py +8 -0
- {pycoze-0.1.138.dist-info → pycoze-0.1.141.dist-info}/METADATA +1 -1
- {pycoze-0.1.138.dist-info → pycoze-0.1.141.dist-info}/RECORD +7 -7
- {pycoze-0.1.138.dist-info → pycoze-0.1.141.dist-info}/WHEEL +1 -1
- {pycoze-0.1.138.dist-info → pycoze-0.1.141.dist-info}/LICENSE +0 -0
- {pycoze-0.1.138.dist-info → pycoze-0.1.141.dist-info}/top_level.txt +0 -0
pycoze/utils/__init__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
from .arg import read_arg, read_params_file
|
1
|
+
from .arg import read_arg, read_params_file, read_json_file
|
2
2
|
from .text_or_file import to_text
|
pycoze/utils/arg.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
import sys
|
2
2
|
import json
|
3
|
+
import os
|
3
4
|
|
4
5
|
|
5
6
|
def read_arg(param, is_path=False, posix=True):
|
@@ -28,3 +29,10 @@ def read_params_file():
|
|
28
29
|
except Exception as e:
|
29
30
|
print(e)
|
30
31
|
return params
|
32
|
+
|
33
|
+
def read_json_file(filename):
|
34
|
+
params = read_params_file()
|
35
|
+
json_file = os.path.join(params['appPath'], 'JsonStorage', filename)
|
36
|
+
with open(filename, encoing='utf-8') as f:
|
37
|
+
return json.load(f)
|
38
|
+
|
@@ -20,11 +20,11 @@ pycoze/ui/base.py,sha256=SCXVDK7PpMaBv6ovvabHcfRq_d2AWM0BRyxpNhuJN5A,1285
|
|
20
20
|
pycoze/ui/color.py,sha256=cT9Ib8uNzkOKxyW0IwVj46o4LwdB1xgNCj1_Rou9d_4,854
|
21
21
|
pycoze/ui/typ.py,sha256=NpT0FrbHvByOszBZMFtroRp7I7pN-38tYz_zPOPejF4,1723
|
22
22
|
pycoze/ui/ui_def.py,sha256=UhhU_yB3GV9ISbvTWT48hsHPHI250BhMILh6bu5Uioo,4206
|
23
|
-
pycoze/utils/__init__.py,sha256=
|
24
|
-
pycoze/utils/arg.py,sha256=
|
23
|
+
pycoze/utils/__init__.py,sha256=ET0W5wzq4zlY3dr1wHVbbeRKlKdC_zqHt9b0jZyHohw,94
|
24
|
+
pycoze/utils/arg.py,sha256=F90aMgNB3m00KXXZxD6-Y7qz1qLsFIMyuRItpgtwWDY,982
|
25
25
|
pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
|
26
|
-
pycoze-0.1.
|
27
|
-
pycoze-0.1.
|
28
|
-
pycoze-0.1.
|
29
|
-
pycoze-0.1.
|
30
|
-
pycoze-0.1.
|
26
|
+
pycoze-0.1.141.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
27
|
+
pycoze-0.1.141.dist-info/METADATA,sha256=tWfwabzYf0kTMWfV5lEVnaPbfUMfQ2JPqpzMeF_XeD8,726
|
28
|
+
pycoze-0.1.141.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
29
|
+
pycoze-0.1.141.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
30
|
+
pycoze-0.1.141.dist-info/RECORD,,
|
File without changes
|
File without changes
|