# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

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

# Testing
.coverage
.pytest_cache/
.tox/
htmlcov/
.coverage.*
coverage.xml
*.cover
.hypothesis/

# IDEs
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store

# Git
.git/
.gitignore
.gitattributes

# Documentation
docs/
*.md
!README.md

# CI/CD
.github/
.gitlab-ci.yml
.travis.yml

# Development files
docker-compose.yml
docker-compose.override.yml
Makefile
tox.ini
.pre-commit-config.yaml

# Logs
*.log
logs/

# Secrets and configs
.env.*
*.pem
*.key
*.cert
secrets/

# Temporary files
tmp/
temp/
*.tmp
*.bak

# Database
*.db
*.sqlite
*.sqlite3

# Node.js (if any frontend)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
