# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
.venv/
venv/

# Tooling
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
htmlcov/

# Env / secrets
.env
.pypirc

# Local Docker Compose override (personal Traefik routing; see the .example)
docker-compose.override.yml

# OS / editor
.DS_Store
*.swp
.idea/
.vscode/

# Frontend build (node is build-time only; keep it out of the repo root)
node_modules/

# Jupyter notebook checkpoints (created by running examples)
.ipynb_checkpoints/

# Zensical docs-site build output (regenerated by CI; never committed)
website/site/

# osmnx's HTTP response cache (scripts/fetch_map_poster_cache.py); the raw fetch
# output it feeds (examples/data/map_poster/) is also dev-only - the compiled,
# gzip+base64 cache actually shipped lives embedded in examples/map_poster.py.
/cache/
/examples/data/
