| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| ENV/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Model checkpoints (will be downloaded) | |
| checkpoints/ | |
| *.pt | |
| *.pth | |
| *.safetensors | |
| *.bin | |
| # Outputs | |
| outputs/ | |
| output_*.mp4 | |
| masks_*.mp4 | |
| greenscreen_*.mp4 | |
| # Temporary files | |
| *.tmp | |
| tmp/ | |
| temp/ | |
| # Logs | |
| *.log | |
| logs/ | |