# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
.pytest_cache/
.coverage
htmlcov/
.tox/
.venv/
venv/
ENV/

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

# OS
.DS_Store
Thumbs.db

# Git
.git/
.gitignore
.gitattributes

# Documentation
README.md
*.md
docs/

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

# Logs
*.log
logs/

# Environment
.env
.env.*
!.env.example

# Tests
tests/
test_*.py
*_test.py
pytest.ini
.pytest_cache/

# Data (runtime generated)
data/
*.db
*.sqlite
