# Python virtual environment
.venv/
venv/
env/

# Python cache files
__pycache__/
*.py[cod]
*$py.class
*.so

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/

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

# OS
.DS_Store
Thumbs.db

# Git
.git/
.gitignore

# Build artifacts
build/
dist/
*.egg-info/

# Logs
*.log

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

# Documentation build
docs/_build/

# Web build artifacts (if any)
web/node_modules/
web/dist/
web/.next/
web/build/ 