# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
.Python

# Virtual environments
.venv/
venv/
env/
ENV/

# Build artifacts
dist/
build/
*.whl
*.tar.gz

# Scan output (NEVER commit — these are vulnerability findings against real targets)
reports/
zap-report.*

# Secrets / local config
.env
.env.*
!.env.example
*.pem
*.key
config.local.*

# IDE
.vscode/
.idea/
*.swp
*.swo
.DS_Store

# Logs
*.log
logs/

# Test artifacts
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.ruff_cache/
