- Remove all __pycache__ directories from tracking - Add comprehensive .gitignore for Python projects - Prevent future cache file commits 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
226 B
Plaintext
28 lines
226 B
Plaintext
# Python cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Test files
|
|
test_*.json
|
|
*_test.json |