spb/trouve-ka Public
Trouve-KA — moteur de recherche web indépendant, Québec-first. Crawler distribué, index OpenSearch, ranking bilingue, galerie d'images. En prod : www.trouve-ka.com
Python 76.8%
TypeScript 15.7%
SQL 3.9%
Shell 1.4%
CSS 1.3%
Dockerfile 0.7%
1# Trouve-KA — extraction de contenu2# Author: Simon-Pierre Boucher3# Contact: contact@spboucher.ai45"""Extraction de contenu des pages crawlées (CLAUDE.md §6).67Chaque page est traitée comme non fiable : texte extrait puis assaini,8URLs re-canonicalisées, MIME types jamais crus sur parole.9"""1011from .html_parser import parse_html, decode_html, looks_like_garbage1213__all__ = ["parse_html", "decode_html", "looks_like_garbage"]14