# Python virtual environment
env/
venv/
ENV/
.env

# Python bytecode
__pycache__/
*.py[cod]
*$py.class

# Distribution / packaging
dist/
build/
*.egg-info/
*.egg

# IDE specific files
.idea/
.vscode/
*.swp
*.swo
*.swn
*.bak
*.sublime*

# Python testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/

# Jupyter Notebook
.ipynb_checkpoints
*.ipynb

# Environment variables
.env
.venv
.env.local
.env.*.local

# System files
.DS_Store
Thumbs.db
desktop.ini

# Log files
*.log
logs/
log/

# Temporary files
*.tmp
*.temp
*.bak
*.swp
*~

# Model files and large data
*.model
*.weights
*.h5
*.pkl
*.pth

# Local development files
local_settings.py
db.sqlite3
db.sqlite3-journal

# Gradio specific
flagged/
gradio_queue/

# Ollama specific
.ollama/
models/

# Documentation
docs/_build/
_site/

# Local certificates
*.pem
*.key
*.crt

# Test files
test.py
test_*.py