Clean up Python cache files and add .gitignore

- 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>
This commit is contained in:
2025-05-31 10:56:46 +07:00
parent 5d79edff49
commit 4205a48c73
16 changed files with 28 additions and 0 deletions

28
.gitignore vendored Normal file
View File

@ -0,0 +1,28 @@
# 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

Binary file not shown.

Binary file not shown.