Esempio n. 1
0
def run() -> None:
    logging.basicConfig(level=logging.DEBUG)
    reader = ExcelReader()
    raw_candidates = reader.read_candidates_from_excel()
    candidates = create_candidates(raw_candidates)
    attachments = Attachment()
    attachments.add_attachment(candidates)

    client = HuntFlowClient()
    upload_resumes(candidates, client)
    add_candidates_to_db(candidates, client)
    add_candidates_to_vacancy(candidates, client)
    return