初次提交

This commit is contained in:
2025-01-22 13:12:33 +08:00
commit 70f8ad025a
18 changed files with 1275 additions and 0 deletions

8
Python/Ups-Smtp/build.py Normal file
View File

@@ -0,0 +1,8 @@
# build.py
import PyInstaller.__main__
PyInstaller.__main__.run([
'ups-test.py', # Python脚本文件名
'--onefile', # 生成单个可执行文件
])