初始化项目:添加README和核心Python脚本

This commit is contained in:
2026-03-18 15:19:07 +08:00
commit c3a48fbd8b
5 changed files with 285 additions and 0 deletions

32
.gitignore vendored Normal file
View File

@@ -0,0 +1,32 @@
# 虚拟环境
venv/
env/
*.venv/
# 编译产物
*.pyc
__pycache__/
# IDE相关
.vscode/
.idea/
# 系统文件
.DS_Store
Thumbs.db
# 日志文件
*.log
# 配置文件
.env
.local
# 测试文件
.pytest_cache/
.coverage
# 构建文件
build/
dist/
*.egg-info/