SPB Git forge

spb/job-ka

Public
229commits 1branches 0releases
38.1 MBsize
maindefault branch
5 h agolast push
HTML 82.1% Python 14.6% TypeScript 1.9% CSS 1% JavaScript 0.5%
988 B · 24 lines python
Raw Blame History
1# =============================================================================2# Job·Ka — Groupe KA3# Auteur  : Simon-Pierre Boucher4# Contact : contact@spboucher.ai5# Fichier : jobka/connectors/cgi.py6# Rôle    : Connecteur CGI (services-conseils TI — siège mondial à Montréal)7#           — Njoyn corporatif (domaine *.njoyn.com derrière Radware →8#           Scrapfly, comme les autres babillards Njoyn hébergés)9# Créé    : 2026-08-19   Modifié : 2026-08-1910# =============================================================================11from .njoyn import NjoynConnector121314class CGIConnector(NjoynConnector):15    source_id = "cgi"16    EMPLOYER = "CGI"17    BASE = "https://cgi.njoyn.com"18    CL = "CORP"19    CLID = "21001"20    USE_SCRAPFLY = True21    quebec_only = True     # babillard mondial (~3 000 postes) : garder le QC22    max_pages = 6          # 6 × 500 = tout le babillard23    max_details = 12       # chaque détail passe par Scrapfly — rester frugal24