# Git files
.git
.gitignore

# Python cache and virtual environments
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/

# Environment files
.env
.env.sample
*.env

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Documentation and images
README.md
*.md
images/
docs/

# Client examples
clients/

# Test files
tests/
test_*.py
*_test.py

# Logs
*.log
logs/

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

# Docker files (don't need these inside the container)
Dockerfile
.dockerignore
docker-compose.yml
