gitignore

This commit is contained in:
2025-11-24 13:38:14 +08:00
parent 68b32e3ef3
commit 5a0406b672
2 changed files with 74 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
.idea
build_output

72
schoolNewsCrawler/.gitignore vendored Normal file
View File

@@ -0,0 +1,72 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual Environment
venv/
env/
ENV/
env.bak/
venv.bak/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Environment variables
.env
.env.local
# Logs
logs/
*.log
# Output
output/
*.json
*.csv
# Test
.pytest_cache/
.coverage
htmlcov/
.tox/
# MyPy
.mypy_cache/
.dmypy.json
dmypy.json
# Jupyter
.ipynb_checkpoints
# Database
*.db
*.sqlite
*.sqlite3