bcmd 0.5.7__tar.gz → 0.5.8__tar.gz
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.
Potentially problematic release.
This version of bcmd might be problematic. Click here for more details.
- {bcmd-0.5.7 → bcmd-0.5.8}/PKG-INFO +1 -1
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/main.py +1 -1
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/image.py +9 -2
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd.egg-info/PKG-INFO +1 -1
- {bcmd-0.5.7 → bcmd-0.5.8}/pyproject.toml +1 -1
- {bcmd-0.5.7 → bcmd-0.5.8}/MANIFEST.in +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/README.md +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/__init__.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/common/__init__.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/common/func.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/common/password.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/resources/project/.gitignore +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/resources/project/.vscode/launch.json +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/resources/project/.vscode/settings.json +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/resources/project/.vscode/tasks.json +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/resources/project/main.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/__init__.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/bin.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/code.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/crypto.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/debian.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/download.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/json.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/lib.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/math.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/mirror.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/project.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/proxy.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/time.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/upgrade.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd/tasks/venv.py +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd.egg-info/SOURCES.txt +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd.egg-info/dependency_links.txt +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd.egg-info/entry_points.txt +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd.egg-info/requires.txt +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/bcmd.egg-info/top_level.txt +0 -0
- {bcmd-0.5.7 → bcmd-0.5.8}/setup.cfg +0 -0
|
@@ -65,7 +65,7 @@ async def convert(
|
|
|
65
65
|
@syncCall
|
|
66
66
|
async def tiny(
|
|
67
67
|
path: Path = typer.Option(None, '--path', help='指定目录或具体图片文件,默认当前目录'),
|
|
68
|
-
|
|
68
|
+
optimization: int = typer.Option(25, '--optimization', help='指定优化大小,如果没有达到优化效果就不处理,单位:%,默认25'),
|
|
69
69
|
isKeepOriginal: bool = typer.Option(False, '--keep-original', help='保留原始图片'),
|
|
70
70
|
):
|
|
71
71
|
|
|
@@ -75,6 +75,9 @@ async def tiny(
|
|
|
75
75
|
'q8YLcvrXVW2NYcr5mMyzQhsSHF4j7gny',
|
|
76
76
|
]
|
|
77
77
|
random.shuffle(keyList)
|
|
78
|
+
|
|
79
|
+
btask.assertTrue(0 < optimization < 100, '优化大小必须在0-100之间')
|
|
80
|
+
compression = 100 - optimization
|
|
78
81
|
await block.setLimit(_TinyFile.runTiny, len(keyList))
|
|
79
82
|
|
|
80
83
|
# 整理文件列表
|
|
@@ -103,7 +106,11 @@ async def tiny(
|
|
|
103
106
|
pass
|
|
104
107
|
else:
|
|
105
108
|
# 要忽略掉的文件
|
|
106
|
-
|
|
109
|
+
if file.isTiny:
|
|
110
|
+
bcolor.printYellow(f'{file.file}({file.compression - 100:.2f}% / 已压缩 / {file.getSizeDisplay()})')
|
|
111
|
+
else:
|
|
112
|
+
bcolor.printMagenta(f'{file.file}({file.compression - 100:.2f}% / 不处理 / {file.getSizeDisplay()})')
|
|
113
|
+
|
|
107
114
|
fileList[i] = Null
|
|
108
115
|
fileList = [x for x in fileList if x]
|
|
109
116
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|