HTML 82.1%
Python 14.6%
TypeScript 1.9%
CSS 1%
JavaScript 0.5%
1# =============================================================================2# Job·Ka — Groupe KA3# Auteur : Simon-Pierre Boucher4# Contact : contact@spboucher.ai5# Fichier : jobka/connectors/x4th_day_trucking.py6# Rôle : Connecteur 4th Day Trucking — breezy (org « 4th-day-trucking »)7# [généré par scripts/gen_connectors.py, flux vérifié le 2026-08-23]8# Créé : 2026-08-23 Modifié : 2026-08-279# =============================================================================10# NOTE ka6 (2026-08-27) : employeur de camionnage AMÉRICAIN — les 182 postings11# du board sont tous aux É.-U. (VA, OH, TX…), zéro Québec. L'unique offre12# historique (« CDL A LOCAL TRUCK DRIVING… », East Granby) était un faux13# positif : East Granby, CONNECTICUT — « Granby » matchait dans le libellé et14# le nom d'État complet « Connecticut » échappait à _NON_QC_REGION_RE (codes15# seulement). Corrigé par le garde pays de BreezyConnector._keep16# (location.country.id != CA → rejet). Volume 0 = comportement correct.17from .breezy import BreezyConnector181920class X4thDayTruckingConnector(BreezyConnector):21 source_id = 'x4th_day_trucking'22 EMPLOYER = '4th Day Trucking'23 ORG = '4th-day-trucking'24