| 123456789101112131415161718192021222324252627282930 |
- # Python bytecode
- __pycache__/
- *.pyc
- *.pyo
- *.pyd
- # Distribution / build outputs
- build/
- dist/
- *.egg-info/
- .eggs/
- # IDE-specific files (e.g., VS Code)
- .vscode/
- # Environment variables
- .env
- venv/
- env/
- # Logs and temporary files
- logs/
- *.log
- tmp/
- # Instance specific data (if it's not meant to be committed)
- instance/
- # PyInstaller / cx_Freeze / other packaging tools
- *.spec # This will ignore run.spec as seen in your image
|