SPB Git forge

spb/api-ka

Public

API-KA — plateforme centrale : collecte quotidienne des 8 services KA, historisation append-only et API publique sur www.api-ka.com

48commits 1branches 0releases
5.9 MBsize
maindefault branch
19 days agolast push
Python 60.9% HTML 21% TypeScript 7.3% JavaScript 5.2% CSS 4.8% Shell 0.8%
691 B · 23 lines python
Raw Blame History
1# ============================================2# Projet   : API-KA3# Fichier  : src/collectors/foodka_collector.py4# Node     : m3u96b5# Author   : Simon-Pierre Boucher6# Contact  : contact@spboucher.ai7# Date     : 2026-08-168# ============================================9"""Collecteur quotidien du service food-ka (table foodka_data)."""1011from __future__ import annotations1213from src.collectors.base_collector import BaseCollector141516class FoodkaCollector(BaseCollector):17    """Collecte les données quotidiennes de food-ka depuis FOODKA_SOURCE_URL."""1819    service = "foodka"20    items_key = "products"21    pagination = "offset"22    page_size = 500  # maximum accepté par l'API food-ka23