spb/qwhpi Public
QHPI — Quebec Housing Price Index: quality-adjusted, hierarchically pooled housing price indexes.
Python 63.9%
TypeScript 25.4%
CSS 5.5%
TeX 3.5%
SQL 0.8%
Makefile 0.5%
Dockerfile 0.5%
1# =============================================================================2# QWHPI — Quebec Weekly Housing Price Index3# Author : Simon-Pierre Boucher4# Contact : contact@spboucher.ai5# File : .gitignore6# Purpose : Keep transaction-level data, build artifacts and caches out of git.7# =============================================================================89# ---------------------------------------------------------------------------10# DATA POLICY — individual transaction data NEVER enters the repository.11# Only aggregated, published series (indexes, liquidity, coverage, vintages)12# are versioned. See README § Data policy.13# ---------------------------------------------------------------------------14data/raw/15data/interim/16data/processed/transactions_clean.parquet17data/processed/geo_join.parquet1819# Large external boundary files (documented in data/external/SDA_SOURCE.md)20data/external/*.gpkg21data/external/*.gpkg.zip2223# Python24__pycache__/25*.py[cod]26*.egg-info/27.venv/28venv/29.pytest_cache/30.mypy_cache/31.ruff_cache/3233# Node / Next.js34node_modules/35web/.next/36web/out/37*.tsbuildinfo38web/next-env.d.ts3940# LaTeX build artifacts (keep qwhpi.tex, references.bib, qwhpi.pdf)41paper/*.aux42paper/*.log43paper/*.out44paper/*.fls45paper/*.fdb_latexmk46paper/*.blg47paper/*.bbl48paper/*.toc4950# OS / editor / local51.DS_Store52.claude/53.env54.env.*55*.local.json56