byzh-core 0.0.2.1__py3-none-any.whl → 0.0.2.2__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.
- byzh_core/B_os.py +59 -0
- byzh_core/Bos/B_os.py +35 -0
- byzh_core/Bos/__init__.py +1 -3
- byzh_core/Bos/make.py +12 -0
- byzh_core/__init__.py +1 -1
- {byzh_core-0.0.2.1.dist-info → byzh_core-0.0.2.2.dist-info}/METADATA +1 -1
- {byzh_core-0.0.2.1.dist-info → byzh_core-0.0.2.2.dist-info}/RECORD +10 -9
- byzh_core/Bos/path.py +0 -17
- {byzh_core-0.0.2.1.dist-info → byzh_core-0.0.2.2.dist-info}/LICENSE +0 -0
- {byzh_core-0.0.2.1.dist-info → byzh_core-0.0.2.2.dist-info}/WHEEL +0 -0
- {byzh_core-0.0.2.1.dist-info → byzh_core-0.0.2.2.dist-info}/top_level.txt +0 -0
byzh_core/B_os.py
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
import shutil
|
2
|
+
import os
|
3
|
+
from pathlib import Path
|
4
|
+
from typing import Literal
|
5
|
+
|
6
|
+
def get_parent_dir(path: Literal['__file__']) -> Path:
|
7
|
+
'''
|
8
|
+
获取 该py文件 所在的文件夹
|
9
|
+
:param path: __file__
|
10
|
+
'''
|
11
|
+
parent_dir = Path(path).parent
|
12
|
+
return parent_dir
|
13
|
+
|
14
|
+
def get_cwd() -> Path:
|
15
|
+
'''
|
16
|
+
获取 当前工作目录current working directory
|
17
|
+
'''
|
18
|
+
return Path.cwd()
|
19
|
+
|
20
|
+
|
21
|
+
def makedirs(path):
|
22
|
+
def is_dir(path):
|
23
|
+
path = Path(path)
|
24
|
+
|
25
|
+
# 存在
|
26
|
+
if os.path.isdir(path):
|
27
|
+
return True
|
28
|
+
|
29
|
+
# 不存在
|
30
|
+
name = path.name
|
31
|
+
if '.' in name:
|
32
|
+
return False
|
33
|
+
return True
|
34
|
+
|
35
|
+
def is_file(path):
|
36
|
+
path = Path(path)
|
37
|
+
|
38
|
+
# 存在
|
39
|
+
if os.path.isfile(path):
|
40
|
+
return True
|
41
|
+
|
42
|
+
# 不存在
|
43
|
+
name = path.name
|
44
|
+
if '.' in name:
|
45
|
+
return True
|
46
|
+
return False
|
47
|
+
|
48
|
+
path = Path(path)
|
49
|
+
|
50
|
+
if is_dir(path):
|
51
|
+
os.makedirs(path, exist_ok=True)
|
52
|
+
if is_file(path):
|
53
|
+
os.makedirs(path.parent, exist_ok=True)
|
54
|
+
|
55
|
+
def rm(path):
|
56
|
+
if os.path.isdir(path):
|
57
|
+
shutil.rmtree(path)
|
58
|
+
if os.path.isfile(path):
|
59
|
+
os.remove(path)
|
byzh_core/Bos/B_os.py
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
import shutil
|
2
|
+
import os
|
3
|
+
from pathlib import Path
|
4
|
+
from typing import Literal
|
5
|
+
|
6
|
+
def get_parent_dir(path: Literal['__file__']) -> Path:
|
7
|
+
'''
|
8
|
+
获取 该py文件 所在的文件夹
|
9
|
+
:param path: __file__
|
10
|
+
'''
|
11
|
+
parent_dir = Path(path).parent
|
12
|
+
return parent_dir
|
13
|
+
|
14
|
+
def get_cwd() -> Path:
|
15
|
+
'''
|
16
|
+
获取 当前工作目录current working directory
|
17
|
+
'''
|
18
|
+
return Path.cwd()
|
19
|
+
|
20
|
+
|
21
|
+
def makedirs(path):
|
22
|
+
from .make import is_dir, is_file
|
23
|
+
|
24
|
+
path = Path(path)
|
25
|
+
|
26
|
+
if is_dir(path):
|
27
|
+
os.makedirs(path, exist_ok=True)
|
28
|
+
if is_file(path):
|
29
|
+
os.makedirs(path.parent, exist_ok=True)
|
30
|
+
|
31
|
+
def rm(path):
|
32
|
+
if os.path.isdir(path):
|
33
|
+
shutil.rmtree(path)
|
34
|
+
if os.path.isfile(path):
|
35
|
+
os.remove(path)
|
byzh_core/Bos/__init__.py
CHANGED
byzh_core/Bos/make.py
CHANGED
@@ -4,6 +4,12 @@ import shutil
|
|
4
4
|
|
5
5
|
def is_dir(path):
|
6
6
|
path = Path(path)
|
7
|
+
|
8
|
+
# 存在
|
9
|
+
if os.path.isdir(path):
|
10
|
+
return True
|
11
|
+
|
12
|
+
# 不存在
|
7
13
|
name = path.name
|
8
14
|
if '.' in name:
|
9
15
|
return False
|
@@ -11,6 +17,12 @@ def is_dir(path):
|
|
11
17
|
|
12
18
|
def is_file(path):
|
13
19
|
path = Path(path)
|
20
|
+
|
21
|
+
# 存在
|
22
|
+
if os.path.isfile(path):
|
23
|
+
return True
|
24
|
+
|
25
|
+
# 不存在
|
14
26
|
name = path.name
|
15
27
|
if '.' in name:
|
16
28
|
return True
|
byzh_core/__init__.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
byzh_core/
|
1
|
+
byzh_core/B_os.py,sha256=xqEYTiOKkFCpJhPXGyA5Qjiz9NX7qpMPCTHuN_Z-M7Y,1226
|
2
|
+
byzh_core/__init__.py,sha256=9kQtKRLFe5bTTI8z2hHUl96YHEP-kb8pfPNT_WoHglk,110
|
2
3
|
byzh_core/Barchive/__init__.py,sha256=wUdz646VS0Uhq9lwMkd3YQHCvQhLDqgADoDjFGMqIn0,65
|
3
4
|
byzh_core/Barchive/archive.py,sha256=yIQgef1APUcZdHM_7Pa9rCam-P3PA3pbcSJSaySoUj4,2498
|
4
5
|
byzh_core/Bbasic/__init__.py,sha256=wr7Y7YJINhgpV5X6BT5DaGJKcHUOZYNerCGXoi2Egac,116
|
@@ -8,9 +9,9 @@ byzh_core/Bconfig/config.py,sha256=P9C4kAkxKnIFaJCErBXdABfOyWgFgVHpR-i-fiZXCNs,1
|
|
8
9
|
byzh_core/Bmath/__init__.py,sha256=G3AQug6izkEX3UfzO_mqUNJW88ZKlmYb4Q8CAactK4w,105
|
9
10
|
byzh_core/Bmath/divides.py,sha256=dr85IqGSE9NvugQu7az29GLcjRiLjXU_hZTwtNifIXg,1132
|
10
11
|
byzh_core/Bmath/get_norm.py,sha256=y1QsCTo7qhtGTXIxpc6JtamLWloC7ENRuVdNtK5yi58,596
|
11
|
-
byzh_core/Bos/
|
12
|
-
byzh_core/Bos/
|
13
|
-
byzh_core/Bos/
|
12
|
+
byzh_core/Bos/B_os.py,sha256=iGzL9if9Jh5z3U_qWRPIZCrHly2ZCz8MJLWiJwYVefA,763
|
13
|
+
byzh_core/Bos/__init__.py,sha256=mMa6OugZs8gIfZMj7go_wEHZRe0JRffgiyIKTF5I_uc,88
|
14
|
+
byzh_core/Bos/make.py,sha256=uGmHc96lXChihJs2jGiXJRp3tU_U5DPCo8jcc-aW6d4,663
|
14
15
|
byzh_core/Bos/remove.py,sha256=HuGQlEOz7IZB_c6T9MzR3miRx60IeaBYP-3lp-P20-I,156
|
15
16
|
byzh_core/Btable/__init__.py,sha256=wpfHMPD4awPRDJVYlaiGtkkpjq2srWB7d7LrWhoX5R0,161
|
16
17
|
byzh_core/Btable/auto_table.py,sha256=JREmn6KIlZKkv1Vsc23Ow3fDiJAgfMppbGKDUY8rfyk,14002
|
@@ -25,8 +26,8 @@ byzh_core/Btqdm/my_tqdm.py,sha256=3Xrw6qOEidLqKGE2UD3i37_cMzrSWy4QpNpO2_4I88M,28
|
|
25
26
|
byzh_core/Bwriter/__init__.py,sha256=KSsbCJZ-1j5wOr-ZbTg8K3A8Du73d22DQVLdmq-3CBo,116
|
26
27
|
byzh_core/Bwriter/globalwriter.py,sha256=tSjWxzLylAeZep67n5jbRsjQkXkBKRZLvKXUyGSY92Q,1824
|
27
28
|
byzh_core/Bwriter/writer.py,sha256=px0ZNoSuXS_RbwVnYsBx2lYohyhHACfHM8-HBNEflhU,4006
|
28
|
-
byzh_core-0.0.2.
|
29
|
-
byzh_core-0.0.2.
|
30
|
-
byzh_core-0.0.2.
|
31
|
-
byzh_core-0.0.2.
|
32
|
-
byzh_core-0.0.2.
|
29
|
+
byzh_core-0.0.2.2.dist-info/LICENSE,sha256=-nRwf0Xga4AX5bsWBXXflpDpgX_U23X06oAMcdf0dSY,1089
|
30
|
+
byzh_core-0.0.2.2.dist-info/METADATA,sha256=foV-fXyBRcoTlI5x3EVzS5OFMtMmjLeocQZkE0uA23Y,371
|
31
|
+
byzh_core-0.0.2.2.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
32
|
+
byzh_core-0.0.2.2.dist-info/top_level.txt,sha256=Xv-pzvl6kPdIbi5UehQcUdGhLtb8-4WhS5dRK1LINwM,10
|
33
|
+
byzh_core-0.0.2.2.dist-info/RECORD,,
|
byzh_core/Bos/path.py
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
import os
|
2
|
-
from pathlib import Path
|
3
|
-
from typing import Literal
|
4
|
-
|
5
|
-
def b_get_parent_dir(path: Literal['__file__']) -> Path:
|
6
|
-
'''
|
7
|
-
获取 该py文件 所在的文件夹
|
8
|
-
:param path: __file__
|
9
|
-
'''
|
10
|
-
parent_dir = Path(path).parent
|
11
|
-
return parent_dir
|
12
|
-
|
13
|
-
def b_get_cwd() -> Path:
|
14
|
-
'''
|
15
|
-
获取 当前工作目录current working directory
|
16
|
-
'''
|
17
|
-
return Path.cwd()
|
File without changes
|
File without changes
|
File without changes
|