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 — accès PostgreSQL (pool asyncpg + dépôts)2# Author: Simon-Pierre Boucher3# Contact: contact@spboucher.ai45"""Couche d'accès PostgreSQL : pool asyncpg, migrations, dépôts frontier/domaines/documents."""67from .db import Database8from .migrate import run_migrations910__all__ = ["Database", "run_migrations"]11