# Git
.git
.gitignore

# Python
__pycache__
*.pyc
*.pyo
*.pyd
.Python
*.so

# Virtual Environment
venv/
env/
ENV/

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

# OS
.DS_Store
Thumbs.db

# Sensitive files
.env
.env.*
!.env.example
*.pem
*.key
credentials/
secrets/

# Test files
test_*
*_test.py
tests/

# Logs
*.log
logs/

# Temporary files
*.tmp
temp/
tmp/

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

# Documentation
*.md
!README.md