Files
MyPythonProject/.gitignore
2025-11-20 17:17:15 +08:00

35 lines
490 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# --------------- 代码 ---------------
# 如果想把某目录下所有.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