添加读取excel文件功能

This commit is contained in:
2025-11-20 17:17:15 +08:00
parent d5d92832a8
commit 6de40a4c8a
7 changed files with 194 additions and 5 deletions

35
.gitignore vendored Normal file
View File

@@ -0,0 +1,35 @@
# --------------- 代码 ---------------
# 如果想把某目录下所有.py都放进去就写 *.py 或 src/
# --------------- Python 环境 --------
__pycache__/
*.pyc
*.pyo
*.pyd
*.so
*.egg
*.egg-info/
venv/
env/
.venv/
Pipfile.lock
poetry.lock
# --------------- IDE / 编辑器 --------
.vscode/
.idea/
*.swp
*.swo
*~
# --------------- Jupyter / 数据 -------
.ipynb_checkpoints/
*.ipynb
data/
*.csv
*.xlsx
*.json
# --------------- 系统文件 -------------
.DS_Store
Thumbs.db