SPB Git forge

spb/job-ka

Public
229commits 1branches 0releases
38.1 MBsize
maindefault branch
4 h agolast push
HTML 82.1% Python 14.6% TypeScript 1.9% CSS 1% JavaScript 0.5%
695 B · 19 lines python
Raw Blame History
1# =============================================================================2# Job·Ka — Groupe KA3# Auteur  : Simon-Pierre Boucher4# Contact : contact@spboucher.ai5# Fichier : jobka/connectors/autodesk.py6# Rôle    : Connecteur Autodesk — workday (tenant autodesk.wd1, site Ext)7#           [généré par scripts/gen_connectors.py, flux vérifié le 2026-08-17]8# Créé    : 2026-08-17   Modifié : 2026-08-179# =============================================================================10from .workday import WorkdayConnector111213class AutodeskConnector(WorkdayConnector):14    source_id = 'autodesk'15    EMPLOYER = 'Autodesk'16    TENANT = 'autodesk'17    HOST = 'wd1'18    SITE = 'Ext'19