# Python cache
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg

# Virtual environment
.venv/
venv/
ENV/

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

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

# Git
.git/
.gitignore
.github/

# Documentation - exclude most but keep README.md for package build
API.md

# Frontend - only exclude node_modules and build artifacts
frontend/node_modules/
frontend/dist/

# Example files
example.py
test_api_manual.py
WeatherWidget.jsx
WeatherWidget.tsx

# GitHub
.github/
